Skip to content

Commit 8c37691

Browse files
author
Caitlin Bales (MSFT)
authored
Merge pull request #32 from microsoftgraph/dev
July Update
2 parents c9a3b40 + 74c4176 commit 8c37691

118 files changed

Lines changed: 6790 additions & 47 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

THIRD PARTY NOTICES

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
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.

src/Core/GraphConstants.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
namespace Microsoft\Graph\Core;
1919

20-
class GraphConstants
20+
final class GraphConstants
2121
{
2222
// These can be overwritten in setters in the Graph object
2323
const API_VERSION = "v1.0";
@@ -44,4 +44,4 @@ class GraphConstants
4444

4545
// Define server error constants
4646
const UNABLE_TO_PARSE_RESPONSE = "The HTTP client sent back an invalid response";
47-
}
47+
}

src/Model/AssignedLicense.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class AssignedLicense extends Entity
2727
{
2828
/**
2929
* Gets the disabledPlans
30+
* A collection of the unique identifiers for plans that have been disabled.
3031
*
3132
* @return string The disabledPlans
3233
*/
@@ -41,6 +42,7 @@ public function getDisabledPlans()
4142

4243
/**
4344
* Sets the disabledPlans
45+
* A collection of the unique identifiers for plans that have been disabled.
4446
*
4547
* @param string $val The value of the disabledPlans
4648
*
@@ -53,6 +55,7 @@ public function setDisabledPlans($val)
5355
}
5456
/**
5557
* Gets the skuId
58+
* The unique identifier for the SKU.
5659
*
5760
* @return string The skuId
5861
*/
@@ -67,6 +70,7 @@ public function getSkuId()
6770

6871
/**
6972
* Sets the skuId
73+
* The unique identifier for the SKU.
7074
*
7175
* @param string $val The value of the skuId
7276
*

src/Model/AssignedPlan.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class AssignedPlan extends Entity
2828

2929
/**
3030
* 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'
3132
*
3233
* @return \DateTime The assignedDateTime
3334
*/
@@ -46,6 +47,7 @@ public function getAssignedDateTime()
4647

4748
/**
4849
* 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'
4951
*
5052
* @param \DateTime $val The value to assign to the assignedDateTime
5153
*
@@ -58,6 +60,7 @@ public function setAssignedDateTime($val)
5860
}
5961
/**
6062
* Gets the capabilityStatus
63+
* For example, “Enabled”.
6164
*
6265
* @return string The capabilityStatus
6366
*/
@@ -72,6 +75,7 @@ public function getCapabilityStatus()
7275

7376
/**
7477
* Sets the capabilityStatus
78+
* For example, “Enabled”.
7579
*
7680
* @param string $val The value of the capabilityStatus
7781
*
@@ -84,6 +88,7 @@ public function setCapabilityStatus($val)
8488
}
8589
/**
8690
* Gets the service
91+
* The name of the service; for example, “Exchange”.
8792
*
8893
* @return string The service
8994
*/
@@ -98,6 +103,7 @@ public function getService()
98103

99104
/**
100105
* Sets the service
106+
* The name of the service; for example, “Exchange”.
101107
*
102108
* @param string $val The value of the service
103109
*
@@ -110,6 +116,7 @@ public function setService($val)
110116
}
111117
/**
112118
* Gets the servicePlanId
119+
* A GUID that identifies the service plan.
113120
*
114121
* @return string The servicePlanId
115122
*/
@@ -124,6 +131,7 @@ public function getServicePlanId()
124131

125132
/**
126133
* Sets the servicePlanId
134+
* A GUID that identifies the service plan.
127135
*
128136
* @param string $val The value of the servicePlanId
129137
*

src/Model/Attachment.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class Attachment extends Entity
2828
{
2929
/**
3030
* 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'
3132
*
3233
* @return \DateTime The lastModifiedDateTime
3334
*/
@@ -46,6 +47,7 @@ public function getLastModifiedDateTime()
4647

4748
/**
4849
* 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'
4951
*
5052
* @param \DateTime $val The lastModifiedDateTime
5153
*
@@ -59,6 +61,7 @@ public function setLastModifiedDateTime($val)
5961

6062
/**
6163
* Gets the name
64+
* The attachment's file name.
6265
*
6366
* @return string The name
6467
*/
@@ -73,6 +76,7 @@ public function getName()
7376

7477
/**
7578
* Sets the name
79+
* The attachment's file name.
7680
*
7781
* @param string $val The name
7882
*
@@ -86,6 +90,7 @@ public function setName($val)
8690

8791
/**
8892
* Gets the contentType
93+
* The MIME type.
8994
*
9095
* @return string The contentType
9196
*/
@@ -100,6 +105,7 @@ public function getContentType()
100105

101106
/**
102107
* Sets the contentType
108+
* The MIME type.
103109
*
104110
* @param string $val The contentType
105111
*
@@ -113,6 +119,7 @@ public function setContentType($val)
113119

114120
/**
115121
* Gets the size
122+
* The length of the attachment in bytes.
116123
*
117124
* @return int The size
118125
*/
@@ -127,6 +134,7 @@ public function getSize()
127134

128135
/**
129136
* Sets the size
137+
* The length of the attachment in bytes.
130138
*
131139
* @param int $val The size
132140
*
@@ -140,6 +148,7 @@ public function setSize($val)
140148

141149
/**
142150
* Gets the isInline
151+
* true if the attachment is an inline attachment; otherwise, false.
143152
*
144153
* @return bool The isInline
145154
*/
@@ -154,6 +163,7 @@ public function getIsInline()
154163

155164
/**
156165
* Sets the isInline
166+
* true if the attachment is an inline attachment; otherwise, false.
157167
*
158168
* @param bool $val The isInline
159169
*

src/Model/Attendee.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class Attendee extends AttendeeBase
2828

2929
/**
3030
* Gets the status
31+
* The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent.
3132
*
3233
* @return ResponseStatus The status
3334
*/
@@ -46,6 +47,7 @@ public function getStatus()
4647

4748
/**
4849
* Sets the status
50+
* The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent.
4951
*
5052
* @param ResponseStatus $val The value to assign to the status
5153
*

src/Model/AttendeeAvailability.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class AttendeeAvailability extends Entity
2828

2929
/**
3030
* Gets the attendee
31+
* The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
3132
*
3233
* @return AttendeeBase The attendee
3334
*/
@@ -46,6 +47,7 @@ public function getAttendee()
4647

4748
/**
4849
* Sets the attendee
50+
* The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
4951
*
5052
* @param AttendeeBase $val The value to assign to the attendee
5153
*
@@ -59,6 +61,7 @@ public function setAttendee($val)
5961

6062
/**
6163
* Gets the availability
64+
* The availability status of the attendee. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
6265
*
6366
* @return FreeBusyStatus The availability
6467
*/
@@ -77,6 +80,7 @@ public function getAvailability()
7780

7881
/**
7982
* Sets the availability
83+
* The availability status of the attendee. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
8084
*
8185
* @param FreeBusyStatus $val The value to assign to the availability
8286
*

src/Model/AttendeeBase.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class AttendeeBase extends Recipient
2828

2929
/**
3030
* 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.
3132
*
3233
* @return AttendeeType The type
3334
*/
@@ -46,6 +47,7 @@ public function getType()
4647

4748
/**
4849
* 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.
4951
*
5052
* @param AttendeeType $val The value to assign to the type
5153
*

0 commit comments

Comments
 (0)