Skip to content

Commit 21ee1c4

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 77879
1 parent 9f58d8a commit 21ee1c4

31 files changed

+436
-89
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.50.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.51.0-SNAPSHOT'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-beta</artifactId>
40-
<version>0.50.0-SNAPSHOT</version>
40+
<version>0.51.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -187,5 +187,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
187187

188188

189189

190+
190191

191192

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph-beta
2828
mavenMajorVersion = 0
29-
mavenMinorVersion = 50
29+
mavenMinorVersion = 51
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -86,5 +86,6 @@ mavenCentralPublishingEnabled=false
8686

8787

8888

89+
8990

9091

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "0.50.0";
21+
public static final String VERSION_NAME = "0.51.0";
2222
}
2323

2424

@@ -61,5 +61,6 @@ private Constants() {
6161

6262

6363

64+
6465

6566

src/main/java/com/microsoft/graph/models/AttachmentSession.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ public class AttachmentSession extends Entity implements IJsonBackedObject {
3636
public java.time.OffsetDateTime expirationDateTime;
3737

3838
/**
39-
* The Next Expected Range.
39+
* The Next Expected Ranges.
4040
*
4141
*/
42-
@SerializedName(value = "nextExpectedRange", alternate = {"NextExpectedRange"})
42+
@SerializedName(value = "nextExpectedRanges", alternate = {"NextExpectedRanges"})
4343
@Expose
4444
@Nullable
45-
public java.util.List<String> nextExpectedRange;
45+
public java.util.List<String> nextExpectedRanges;
4646

4747

4848
/**
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// Template Source: BaseEntity.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
import com.microsoft.graph.http.BaseCollectionPage;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Authorization Info.
24+
*/
25+
public class AuthorizationInfo implements IJsonBackedObject {
26+
27+
/** the OData type of the object as returned by the service */
28+
@SerializedName("@odata.type")
29+
@Expose
30+
@Nullable
31+
public String oDataType;
32+
33+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
34+
35+
@Override
36+
@Nonnull
37+
public final AdditionalDataManager additionalDataManager() {
38+
return additionalDataManager;
39+
}
40+
41+
/**
42+
* The Certificate User Ids.
43+
*
44+
*/
45+
@SerializedName(value = "certificateUserIds", alternate = {"CertificateUserIds"})
46+
@Expose
47+
@Nullable
48+
public java.util.List<String> certificateUserIds;
49+
50+
51+
/**
52+
* Sets the raw JSON object
53+
*
54+
* @param serializer the serializer
55+
* @param json the JSON object to set this object to
56+
*/
57+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
58+
59+
}
60+
}

src/main/java/com/microsoft/graph/models/BookingAppointment.java

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

4444
/**
4545
* The Anonymous Join Web Url.
46-
*
46+
* Url of meeting to join anonymously.
4747
*/
4848
@SerializedName(value = "anonymousJoinWebUrl", alternate = {"AnonymousJoinWebUrl"})
4949
@Expose

src/main/java/com/microsoft/graph/models/BookingBusiness.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public class BookingBusiness extends BookingNamedEntity implements IJsonBackedOb
9595

9696
/**
9797
* The Language Tag.
98-
*
98+
* The language of the self service booking page
9999
*/
100100
@SerializedName(value = "languageTag", alternate = {"LanguageTag"})
101101
@Expose

src/main/java/com/microsoft/graph/models/BookingCustomerInformation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class BookingCustomerInformation extends BookingCustomerInformationBase i
9393

9494
/**
9595
* The Sms Notifications Enabled.
96-
*
96+
* Indicates if the SMS notifications will be sent to the customer for the appointment
9797
*/
9898
@SerializedName(value = "smsNotificationsEnabled", alternate = {"SmsNotificationsEnabled"})
9999
@Expose

src/main/java/com/microsoft/graph/models/BookingService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class BookingService extends BookingNamedEntity implements IJsonBackedObj
105105

106106
/**
107107
* The Is Anonymous Join Enabled.
108-
*
108+
* True if an anonymousJoinWebUrl(webrtcUrl) will be generated for the appointment booked for this service.
109109
*/
110110
@SerializedName(value = "isAnonymousJoinEnabled", alternate = {"IsAnonymousJoinEnabled"})
111111
@Expose
@@ -132,7 +132,7 @@ public class BookingService extends BookingNamedEntity implements IJsonBackedObj
132132

133133
/**
134134
* The Language Tag.
135-
*
135+
* The language of the self service booking page.
136136
*/
137137
@SerializedName(value = "languageTag", alternate = {"LanguageTag"})
138138
@Expose

src/main/java/com/microsoft/graph/models/BookingStaffMember.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class BookingStaffMember extends BookingPerson implements IJsonBackedObje
5757

5858
/**
5959
* The Role.
60-
* The role of the staff member in the business. Possible values are: guest, administrator, viewer, externalGuest and unknownFutureValue. Required.
60+
* The role of the staff member in the business. Possible values are: guest, administrator, viewer, externalGuest, unknownFutureValue, scheduler and member. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: scheduler, member. Required.
6161
*/
6262
@SerializedName(value = "role", alternate = {"Role"})
6363
@Expose

0 commit comments

Comments
 (0)