Skip to content

Commit c509e0c

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated beta Java models and requests with build 3857743
1 parent e56f16e commit c509e0c

File tree

127 files changed

+5214
-43
lines changed

Some content is hidden

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

127 files changed

+5214
-43
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
199199

200200
/**
201201
* The Sign In Audience.
202-
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant)AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.
202+
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.
203203
*/
204204
@SerializedName(value = "signInAudience", alternate = {"SignInAudience"})
205205
@Expose

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import com.microsoft.graph.serializer.IJsonBackedObject;
88
import com.microsoft.graph.serializer.AdditionalDataManager;
99
import java.util.EnumSet;
10+
import com.microsoft.graph.models.extensions.IdentitySet;
1011
import com.microsoft.graph.models.generated.CaseStatus;
1112
import com.microsoft.graph.models.extensions.ReviewSet;
1213
import com.microsoft.graph.models.extensions.Entity;
@@ -31,7 +32,7 @@ public class EdiscoveryCase extends Entity implements IJsonBackedObject {
3132
*/
3233
@SerializedName(value = "closedBy", alternate = {"ClosedBy"})
3334
@Expose
34-
public String closedBy;
35+
public IdentitySet closedBy;
3536

3637
/**
3738
* The Closed Date Time.
@@ -79,7 +80,7 @@ public class EdiscoveryCase extends Entity implements IJsonBackedObject {
7980
*/
8081
@SerializedName(value = "lastModifiedBy", alternate = {"LastModifiedBy"})
8182
@Expose
82-
public String lastModifiedBy;
83+
public IdentitySet lastModifiedBy;
8384

8485
/**
8586
* The Last Modified Date Time.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ public class Event extends OutlookItem implements IJsonBackedObject {
102102
@Expose
103103
public Boolean hasAttachments;
104104

105+
/**
106+
* The Hide Attendees.
107+
*
108+
*/
109+
@SerializedName(value = "hideAttendees", alternate = {"HideAttendees"})
110+
@Expose
111+
public Boolean hideAttendees;
112+
105113
/**
106114
* The Importance.
107115
* The importance of the event. The possible values are: low, normal, high.
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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.extensions.DriveRecipient;
8+
import com.microsoft.graph.models.extensions.Permission;
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import com.google.gson.JsonObject;
12+
import com.microsoft.graph.serializer.ISerializer;
13+
import java.util.EnumSet;
14+
15+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
16+
17+
/**
18+
* The class for the List Item Create Link Body.
19+
*/
20+
public class ListItemCreateLinkBody {
21+
22+
/**
23+
* The type.
24+
*
25+
*/
26+
@SerializedName(value = "type", alternate = {"Type"})
27+
@Expose
28+
public String type;
29+
30+
/**
31+
* The scope.
32+
*
33+
*/
34+
@SerializedName(value = "scope", alternate = {"Scope"})
35+
@Expose
36+
public String scope;
37+
38+
/**
39+
* The expiration Date Time.
40+
*
41+
*/
42+
@SerializedName(value = "expirationDateTime", alternate = {"ExpirationDateTime"})
43+
@Expose
44+
public java.util.Calendar expirationDateTime;
45+
46+
/**
47+
* The password.
48+
*
49+
*/
50+
@SerializedName(value = "password", alternate = {"Password"})
51+
@Expose
52+
public String password;
53+
54+
/**
55+
* The recipients.
56+
*
57+
*/
58+
@SerializedName(value = "recipients", alternate = {"Recipients"})
59+
@Expose
60+
public java.util.List<DriveRecipient> recipients;
61+
62+
63+
/**
64+
* The raw representation of this class
65+
*/
66+
private JsonObject rawObject;
67+
68+
/**
69+
* The serializer
70+
*/
71+
private ISerializer serializer;
72+
73+
/**
74+
* Gets the raw representation of this class
75+
*
76+
* @return the raw representation of this class
77+
*/
78+
public JsonObject getRawObject() {
79+
return rawObject;
80+
}
81+
82+
/**
83+
* Gets serializer
84+
*
85+
* @return the serializer
86+
*/
87+
protected ISerializer getSerializer() {
88+
return serializer;
89+
}
90+
91+
/**
92+
* Sets the raw JSON object
93+
*
94+
* @param serializer the serializer
95+
* @param json the JSON object to set this object to
96+
*/
97+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
98+
this.serializer = serializer;
99+
rawObject = json;
100+
101+
}
102+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.extensions.DriveRecipient;
8+
import com.microsoft.graph.models.extensions.Permission;
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import com.google.gson.JsonObject;
12+
import com.microsoft.graph.serializer.ISerializer;
13+
import java.util.EnumSet;
14+
15+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
16+
17+
/**
18+
* The class for the Permission Revoke Grants Body.
19+
*/
20+
public class PermissionRevokeGrantsBody {
21+
22+
/**
23+
* The grantees.
24+
*
25+
*/
26+
@SerializedName(value = "grantees", alternate = {"Grantees"})
27+
@Expose
28+
public java.util.List<DriveRecipient> grantees;
29+
30+
31+
/**
32+
* The raw representation of this class
33+
*/
34+
private JsonObject rawObject;
35+
36+
/**
37+
* The serializer
38+
*/
39+
private ISerializer serializer;
40+
41+
/**
42+
* Gets the raw representation of this class
43+
*
44+
* @return the raw representation of this class
45+
*/
46+
public JsonObject getRawObject() {
47+
return rawObject;
48+
}
49+
50+
/**
51+
* Gets serializer
52+
*
53+
* @return the serializer
54+
*/
55+
protected ISerializer getSerializer() {
56+
return serializer;
57+
}
58+
59+
/**
60+
* Sets the raw JSON object
61+
*
62+
* @param serializer the serializer
63+
* @param json the JSON object to set this object to
64+
*/
65+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
66+
this.serializer = serializer;
67+
rawObject = json;
68+
69+
}
70+
}

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ public class PrintConnector extends Entity implements IJsonBackedObject {
4040
@Expose
4141
public DeviceHealth deviceHealth;
4242

43+
/**
44+
* The Display Name.
45+
*
46+
*/
47+
@SerializedName(value = "displayName", alternate = {"DisplayName"})
48+
@Expose
49+
public String displayName;
50+
4351
/**
4452
* The Fully Qualified Domain Name.
4553
*
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.extensions.PrintDocumentUploadProperties;
8+
import com.microsoft.graph.models.extensions.UploadSession;
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import com.google.gson.JsonObject;
12+
import com.microsoft.graph.serializer.ISerializer;
13+
import java.util.EnumSet;
14+
15+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
16+
17+
/**
18+
* The class for the Print Document Create Upload Session Body.
19+
*/
20+
public class PrintDocumentCreateUploadSessionBody {
21+
22+
/**
23+
* The properties.
24+
*
25+
*/
26+
@SerializedName(value = "properties", alternate = {"Properties"})
27+
@Expose
28+
public PrintDocumentUploadProperties properties;
29+
30+
31+
/**
32+
* The raw representation of this class
33+
*/
34+
private JsonObject rawObject;
35+
36+
/**
37+
* The serializer
38+
*/
39+
private ISerializer serializer;
40+
41+
/**
42+
* Gets the raw representation of this class
43+
*
44+
* @return the raw representation of this class
45+
*/
46+
public JsonObject getRawObject() {
47+
return rawObject;
48+
}
49+
50+
/**
51+
* Gets serializer
52+
*
53+
* @return the serializer
54+
*/
55+
protected ISerializer getSerializer() {
56+
return serializer;
57+
}
58+
59+
/**
60+
* Sets the raw JSON object
61+
*
62+
* @param serializer the serializer
63+
* @param json the JSON object to set this object to
64+
*/
65+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
66+
this.serializer = serializer;
67+
rawObject = json;
68+
69+
}
70+
}

0 commit comments

Comments
 (0)