ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
MessageDto.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\OnScreenChat\DTO
;
5
10
class
MessageDto
11
{
13
private
$id
=
''
;
15
private
$conversation
;
17
private
$authorUsrId
;
19
private
$createdTimestamp
;
21
private
$message
;
22
28
public
function
__construct
(
string
$id
,
ConversationDto
$conversation
)
29
{
30
$this->
id
=
$id
;
31
$this->conversation =
$conversation
;
32
}
33
34
38
public
function
getId
() : string
39
{
40
return
$this->id
;
41
}
42
46
public
function
setId
(
string
$id
) : void
47
{
48
$this->
id
=
$id
;
49
}
50
54
public
function
getConversation
() :
ConversationDto
55
{
56
return
$this->conversation
;
57
}
58
62
public
function
setConversation
(
ConversationDto
$conversation
) : void
63
{
64
$this->conversation =
$conversation
;
65
}
66
70
public
function
getAuthorUsrId
() : int
71
{
72
return
$this->authorUsrId
;
73
}
74
78
public
function
setAuthorUsrId
(
int
$authorUsrId
) : void
79
{
80
$this->authorUsrId =
$authorUsrId
;
81
}
82
86
public
function
getCreatedTimestamp
() : int
87
{
88
return
$this->createdTimestamp
;
89
}
90
94
public
function
setCreatedTimestamp
(
int
$createdTimestamp
) : void
95
{
96
$this->createdTimestamp =
$createdTimestamp
;
97
}
98
102
public
function
getMessage
() : string
103
{
104
return
$this->message
;
105
}
106
110
public
function
setMessage
(
string
$message
) : void
111
{
112
$this->message =
$message
;
113
}
114
}
ILIAS\OnScreenChat\DTO\ConversationDto
Definition:
ConversationDto.php:10
ILIAS\OnScreenChat\DTO\MessageDto\$authorUsrId
$authorUsrId
Definition:
MessageDto.php:17
ILIAS\OnScreenChat\DTO\MessageDto\__construct
__construct(string $id, ConversationDto $conversation)
MessageDtop constructor.
Definition:
MessageDto.php:28
ILIAS\OnScreenChat\DTO\MessageDto\getCreatedTimestamp
getCreatedTimestamp()
Definition:
MessageDto.php:86
ILIAS\OnScreenChat\DTO\MessageDto\getConversation
getConversation()
Definition:
MessageDto.php:54
ILIAS\OnScreenChat\DTO\MessageDto\$message
$message
Definition:
MessageDto.php:21
ILIAS\OnScreenChat\DTO\MessageDto\$id
$id
Definition:
MessageDto.php:13
ILIAS\OnScreenChat\DTO\MessageDto
Definition:
MessageDto.php:10
ILIAS\OnScreenChat\DTO\MessageDto\getMessage
getMessage()
Definition:
MessageDto.php:102
ILIAS\OnScreenChat\DTO
Definition:
ConversationDto.php:4
ILIAS\OnScreenChat\DTO\MessageDto\setMessage
setMessage(string $message)
Definition:
MessageDto.php:110
ILIAS\OnScreenChat\DTO\MessageDto\getId
getId()
Definition:
MessageDto.php:38
ILIAS\OnScreenChat\DTO\MessageDto\setAuthorUsrId
setAuthorUsrId(int $authorUsrId)
Definition:
MessageDto.php:78
ILIAS\OnScreenChat\DTO\MessageDto\setId
setId(string $id)
Definition:
MessageDto.php:46
ILIAS\OnScreenChat\DTO\MessageDto\setConversation
setConversation(ConversationDto $conversation)
Definition:
MessageDto.php:62
ILIAS\OnScreenChat\DTO\MessageDto\getAuthorUsrId
getAuthorUsrId()
Definition:
MessageDto.php:70
ILIAS\OnScreenChat\DTO\MessageDto\$conversation
$conversation
Definition:
MessageDto.php:15
ILIAS\OnScreenChat\DTO\MessageDto\$createdTimestamp
$createdTimestamp
Definition:
MessageDto.php:19
ILIAS\OnScreenChat\DTO\MessageDto\setCreatedTimestamp
setCreatedTimestamp(int $createdTimestamp)
Definition:
MessageDto.php:94
Services
OnScreenChat
classes
DTO
MessageDto.php
Generated on Sat Apr 5 2025 20:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)