-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathOnlineMeeting.php
117 lines (114 loc) · 2.58 KB
/
OnlineMeeting.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* Modified: 2020-05-26T22:12:31+00:00
*/
namespace Office365\Teams;
use Office365\Entity;
/**
* Contains information about the meeting, including the URL used to join a meeting, the attendees list, and the description.
*/
class OnlineMeeting extends Entity
{
/**
* @return string
*/
public function getJoinWebUrl()
{
if (!$this->isPropertyAvailable("JoinWebUrl")) {
return null;
}
return $this->getProperty("JoinWebUrl");
}
/**
* @var string
*/
public function setJoinWebUrl($value)
{
$this->setProperty("JoinWebUrl", $value, true);
}
/**
* @return string
*/
public function getSubject()
{
if (!$this->isPropertyAvailable("Subject")) {
return null;
}
return $this->getProperty("Subject");
}
/**
* @var string
*/
public function setSubject($value)
{
$this->setProperty("Subject", $value, true);
}
/**
* @return string
*/
public function getVideoTeleconferenceId()
{
if (!$this->isPropertyAvailable("VideoTeleconferenceId")) {
return null;
}
return $this->getProperty("VideoTeleconferenceId");
}
/**
* @var string
*/
public function setVideoTeleconferenceId($value)
{
$this->setProperty("VideoTeleconferenceId", $value, true);
}
/**
* @return MeetingParticipants
*/
public function getParticipants()
{
if (!$this->isPropertyAvailable("Participants")) {
return null;
}
return $this->getProperty("Participants");
}
/**
* @var MeetingParticipants
*/
public function setParticipants($value)
{
$this->setProperty("Participants", $value, true);
}
/**
* @return AudioConferencing
*/
public function getAudioConferencing()
{
if (!$this->isPropertyAvailable("AudioConferencing")) {
return null;
}
return $this->getProperty("AudioConferencing");
}
/**
* @var AudioConferencing
*/
public function setAudioConferencing($value)
{
$this->setProperty("AudioConferencing", $value, true);
}
/**
* @return ChatInfo
*/
public function getChatInfo()
{
if (!$this->isPropertyAvailable("ChatInfo")) {
return null;
}
return $this->getProperty("ChatInfo");
}
/**
* @var ChatInfo
*/
public function setChatInfo($value)
{
$this->setProperty("ChatInfo", $value, true);
}
}