You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file is based on or incorporates material from the projects listed below (Third Party OSS). The original copyright notice and the license under which Microsoft received such Third Party OSS, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party OSS to you under the licensing terms for the Microsoft product or service. Microsoft
2
+
reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.
3
+
4
+
guzzlehttp guzzle - 6.3.0
5
+
Copyright (c) 2011-2016 Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
6
+
7
+
phpdocumentor - 2.9.0
8
+
Copyright (c) 2010 Mike van Riel
9
+
10
+
Provided for Informational Purposes Only
11
+
12
+
MIT License
13
+
14
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
15
+
16
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
17
+
18
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copy file name to clipboardExpand all lines: src/Model/AssignedPlan.php
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ class AssignedPlan extends Entity
28
28
29
29
/**
30
30
* Gets the assignedDateTime
31
+
* The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
31
32
*
32
33
* @return \DateTime The assignedDateTime
33
34
*/
@@ -46,6 +47,7 @@ public function getAssignedDateTime()
46
47
47
48
/**
48
49
* Sets the assignedDateTime
50
+
* The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
49
51
*
50
52
* @param \DateTime $val The value to assign to the assignedDateTime
51
53
*
@@ -58,6 +60,7 @@ public function setAssignedDateTime($val)
58
60
}
59
61
/**
60
62
* Gets the capabilityStatus
63
+
* For example, “Enabled”.
61
64
*
62
65
* @return string The capabilityStatus
63
66
*/
@@ -72,6 +75,7 @@ public function getCapabilityStatus()
72
75
73
76
/**
74
77
* Sets the capabilityStatus
78
+
* For example, “Enabled”.
75
79
*
76
80
* @param string $val The value of the capabilityStatus
77
81
*
@@ -84,6 +88,7 @@ public function setCapabilityStatus($val)
84
88
}
85
89
/**
86
90
* Gets the service
91
+
* The name of the service; for example, “Exchange”.
87
92
*
88
93
* @return string The service
89
94
*/
@@ -98,6 +103,7 @@ public function getService()
98
103
99
104
/**
100
105
* Sets the service
106
+
* The name of the service; for example, “Exchange”.
101
107
*
102
108
* @param string $val The value of the service
103
109
*
@@ -110,6 +116,7 @@ public function setService($val)
110
116
}
111
117
/**
112
118
* Gets the servicePlanId
119
+
* A GUID that identifies the service plan.
113
120
*
114
121
* @return string The servicePlanId
115
122
*/
@@ -124,6 +131,7 @@ public function getServicePlanId()
124
131
125
132
/**
126
133
* Sets the servicePlanId
134
+
* A GUID that identifies the service plan.
127
135
*
128
136
* @param string $val The value of the servicePlanId
Copy file name to clipboardExpand all lines: src/Model/Attachment.php
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ class Attachment extends Entity
28
28
{
29
29
/**
30
30
* Gets the lastModifiedDateTime
31
+
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
31
32
*
32
33
* @return \DateTime The lastModifiedDateTime
33
34
*/
@@ -46,6 +47,7 @@ public function getLastModifiedDateTime()
46
47
47
48
/**
48
49
* Sets the lastModifiedDateTime
50
+
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
49
51
*
50
52
* @param \DateTime $val The lastModifiedDateTime
51
53
*
@@ -59,6 +61,7 @@ public function setLastModifiedDateTime($val)
59
61
60
62
/**
61
63
* Gets the name
64
+
* The attachment's file name.
62
65
*
63
66
* @return string The name
64
67
*/
@@ -73,6 +76,7 @@ public function getName()
73
76
74
77
/**
75
78
* Sets the name
79
+
* The attachment's file name.
76
80
*
77
81
* @param string $val The name
78
82
*
@@ -86,6 +90,7 @@ public function setName($val)
86
90
87
91
/**
88
92
* Gets the contentType
93
+
* The MIME type.
89
94
*
90
95
* @return string The contentType
91
96
*/
@@ -100,6 +105,7 @@ public function getContentType()
100
105
101
106
/**
102
107
* Sets the contentType
108
+
* The MIME type.
103
109
*
104
110
* @param string $val The contentType
105
111
*
@@ -113,6 +119,7 @@ public function setContentType($val)
113
119
114
120
/**
115
121
* Gets the size
122
+
* The length of the attachment in bytes.
116
123
*
117
124
* @return int The size
118
125
*/
@@ -127,6 +134,7 @@ public function getSize()
127
134
128
135
/**
129
136
* Sets the size
137
+
* The length of the attachment in bytes.
130
138
*
131
139
* @param int $val The size
132
140
*
@@ -140,6 +148,7 @@ public function setSize($val)
140
148
141
149
/**
142
150
* Gets the isInline
151
+
* true if the attachment is an inline attachment; otherwise, false.
143
152
*
144
153
* @return bool The isInline
145
154
*/
@@ -154,6 +163,7 @@ public function getIsInline()
154
163
155
164
/**
156
165
* Sets the isInline
166
+
* true if the attachment is an inline attachment; otherwise, false.
Copy file name to clipboardExpand all lines: src/Model/AttendeeBase.php
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ class AttendeeBase extends Recipient
28
28
29
29
/**
30
30
* Gets the type
31
+
* The type of attendee. Possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type.
31
32
*
32
33
* @return AttendeeType The type
33
34
*/
@@ -46,6 +47,7 @@ public function getType()
46
47
47
48
/**
48
49
* Sets the type
50
+
* The type of attendee. Possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type.
49
51
*
50
52
* @param AttendeeType $val The value to assign to the type
0 commit comments