Skip to content

Commit 3fe181f

Browse files
author
Client Tooling Big Giant Robot
committed
Update generated files with build 1555941
1 parent c8d67a0 commit 3fe181f

30 files changed

+685
-22
lines changed

src/main/java/com/microsoft/graph/models/extensions/DateTimeTimeZone.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final AdditionalDataManager additionalDataManager() {
4646

4747
/**
4848
* The Time Zone.
49-
* One of the following time zone names.
49+
* Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values.
5050
*/
5151
@SerializedName("timeZone")
5252
@Expose
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.models.generated.*;
8+
import com.google.gson.annotations.Expose;
9+
import com.google.gson.annotations.SerializedName;
10+
import com.google.gson.JsonObject;
11+
import com.microsoft.graph.serializer.ISerializer;
12+
import java.util.EnumSet;
13+
14+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
15+
16+
/**
17+
* The class for the Directory Object Validate Properties Body.
18+
*/
19+
public class DirectoryObjectValidatePropertiesBody {
20+
21+
/**
22+
* The entity Type.
23+
*
24+
*/
25+
@SerializedName("entityType")
26+
@Expose
27+
public String entityType;
28+
29+
/**
30+
* The display Name.
31+
*
32+
*/
33+
@SerializedName("displayName")
34+
@Expose
35+
public String displayName;
36+
37+
/**
38+
* The mail Nickname.
39+
*
40+
*/
41+
@SerializedName("mailNickname")
42+
@Expose
43+
public String mailNickname;
44+
45+
/**
46+
* The on Behalf Of User Id.
47+
*
48+
*/
49+
@SerializedName("onBehalfOfUserId")
50+
@Expose
51+
public java.util.UUID onBehalfOfUserId;
52+
53+
54+
/**
55+
* The raw representation of this class
56+
*/
57+
private JsonObject rawObject;
58+
59+
/**
60+
* The serializer
61+
*/
62+
private ISerializer serializer;
63+
64+
/**
65+
* Gets the raw representation of this class
66+
*
67+
* @return the raw representation of this class
68+
*/
69+
public JsonObject getRawObject() {
70+
return rawObject;
71+
}
72+
73+
/**
74+
* Gets serializer
75+
*
76+
* @return the serializer
77+
*/
78+
protected ISerializer getSerializer() {
79+
return serializer;
80+
}
81+
82+
/**
83+
* Sets the raw JSON object
84+
*
85+
* @param serializer the serializer
86+
* @param json the JSON object to set this object to
87+
*/
88+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
89+
this.serializer = serializer;
90+
rawObject = json;
91+
92+
}
93+
}

src/main/java/com/microsoft/graph/models/extensions/EducationUser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class EducationUser extends Entity implements IJsonBackedObject {
9494

9595
/**
9696
* The Teacher.
97-
* If the primary role is teacher, this block will conatin teacher specific data.
97+
* If the primary role is teacher, this block will contain teacher specific data.
9898
*/
9999
@SerializedName("teacher")
100100
@Expose

src/main/java/com/microsoft/graph/models/extensions/Event.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public class Event extends OutlookItem implements IJsonBackedObject {
152152

153153
/**
154154
* The Start.
155-
* The date, time, and time zone that the event starts.
155+
* The date, time, and time zone that the event starts. By default, the start time is in UTC.
156156
*/
157157
@SerializedName("start")
158158
@Expose
@@ -168,7 +168,7 @@ public class Event extends OutlookItem implements IJsonBackedObject {
168168

169169
/**
170170
* The End.
171-
* The date, time, and time zone that the event ends.
171+
* The date, time, and time zone that the event ends. By default, the end time is in UTC.
172172
*/
173173
@SerializedName("end")
174174
@Expose

src/main/java/com/microsoft/graph/models/extensions/FileEncryptionInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public final AdditionalDataManager additionalDataManager() {
7070

7171
/**
7272
* The Profile Identifier.
73-
* The the profile identifier.
73+
* The profile identifier.
7474
*/
7575
@SerializedName("profileIdentifier")
7676
@Expose
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.models.generated.*;
8+
import com.google.gson.annotations.Expose;
9+
import com.google.gson.annotations.SerializedName;
10+
import com.google.gson.JsonObject;
11+
import com.microsoft.graph.serializer.ISerializer;
12+
import java.util.EnumSet;
13+
14+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
15+
16+
/**
17+
* The class for the Group Validate Properties Body.
18+
*/
19+
public class GroupValidatePropertiesBody {
20+
21+
/**
22+
* The display Name.
23+
*
24+
*/
25+
@SerializedName("displayName")
26+
@Expose
27+
public String displayName;
28+
29+
/**
30+
* The mail Nickname.
31+
*
32+
*/
33+
@SerializedName("mailNickname")
34+
@Expose
35+
public String mailNickname;
36+
37+
/**
38+
* The on Behalf Of User Id.
39+
*
40+
*/
41+
@SerializedName("onBehalfOfUserId")
42+
@Expose
43+
public java.util.UUID onBehalfOfUserId;
44+
45+
46+
/**
47+
* The raw representation of this class
48+
*/
49+
private JsonObject rawObject;
50+
51+
/**
52+
* The serializer
53+
*/
54+
private ISerializer serializer;
55+
56+
/**
57+
* Gets the raw representation of this class
58+
*
59+
* @return the raw representation of this class
60+
*/
61+
public JsonObject getRawObject() {
62+
return rawObject;
63+
}
64+
65+
/**
66+
* Gets serializer
67+
*
68+
* @return the serializer
69+
*/
70+
protected ISerializer getSerializer() {
71+
return serializer;
72+
}
73+
74+
/**
75+
* Sets the raw JSON object
76+
*
77+
* @param serializer the serializer
78+
* @param json the JSON object to set this object to
79+
*/
80+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
81+
this.serializer = serializer;
82+
rawObject = json;
83+
84+
}
85+
}

src/main/java/com/microsoft/graph/models/extensions/IosGeneralDeviceConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement
428428

429429
/**
430430
* The ICloud Block Activity Continuation.
431-
* Indicates whether or not to block the the user from continuing work they started on iOS device to another iOS or macOS device.
431+
* Indicates whether or not to block the user from continuing work they started on iOS device to another iOS or macOS device.
432432
*/
433433
@SerializedName("iCloudBlockActivityContinuation")
434434
@Expose

src/main/java/com/microsoft/graph/models/extensions/Notebook.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class Notebook extends OnenoteEntityHierarchyModel implements IJsonBacked
7777

7878
/**
7979
* The Links.
80-
* Links for opening the notebook. The oneNoteClientURL link opens the notebook in the OneNote native client if it's installed. The oneNoteWebURL link opens the notebook in OneNote Online.
80+
* Links for opening the notebook. The oneNoteClientURL link opens the notebook in the OneNote native client if it's installed. The oneNoteWebURL link opens the notebook in OneNote on the web.
8181
*/
8282
@SerializedName("links")
8383
@Expose

src/main/java/com/microsoft/graph/models/extensions/NotebookLinks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public final AdditionalDataManager additionalDataManager() {
4747

4848
/**
4949
* The One Note Web Url.
50-
* Opens the notebook in OneNote Online.
50+
* Opens the notebook in OneNote on the web.
5151
*/
5252
@SerializedName("oneNoteWebUrl")
5353
@Expose

src/main/java/com/microsoft/graph/models/extensions/OnenotePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class OnenotePage extends OnenoteEntitySchemaObjectModel implements IJson
4848

4949
/**
5050
* The Links.
51-
* Links for opening the page. The oneNoteClientURL link opens the page in the OneNote native client if it 's installed. The oneNoteWebUrl link opens the page in OneNote Online. Read-only.
51+
* Links for opening the page. The oneNoteClientURL link opens the page in the OneNote native client if it 's installed. The oneNoteWebUrl link opens the page in OneNote on the web. Read-only.
5252
*/
5353
@SerializedName("links")
5454
@Expose

0 commit comments

Comments
 (0)