Skip to content

Commit f509753

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 112480
1 parent cdd4504 commit f509753

File tree

262 files changed

+5292
-677
lines changed

Some content is hidden

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

262 files changed

+5292
-677
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.67.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.68.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.67.0-SNAPSHOT</version>
40+
<version>0.68.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -203,5 +203,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
203203

204204

205205

206+
206207

207208

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 = 67
29+
mavenMinorVersion = 68
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -102,5 +102,6 @@ mavenCentralPublishingEnabled=false
102102

103103

104104

105+
105106

106107

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
// Template Source: BaseMethodParameterSet.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.callrecords.models;
7+
8+
import com.microsoft.graph.callrecords.models.PstnBlockedUsersLogRow;
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Call Record Get Pstn Blocked Users Log Parameter Set.
21+
*/
22+
public class CallRecordGetPstnBlockedUsersLogParameterSet {
23+
/**
24+
* The from Date Time.
25+
*
26+
*/
27+
@SerializedName(value = "fromDateTime", alternate = {"FromDateTime"})
28+
@Expose
29+
@Nullable
30+
public java.time.OffsetDateTime fromDateTime;
31+
32+
/**
33+
* The to Date Time.
34+
*
35+
*/
36+
@SerializedName(value = "toDateTime", alternate = {"ToDateTime"})
37+
@Expose
38+
@Nullable
39+
public java.time.OffsetDateTime toDateTime;
40+
41+
42+
/**
43+
* Instiaciates a new CallRecordGetPstnBlockedUsersLogParameterSet
44+
*/
45+
public CallRecordGetPstnBlockedUsersLogParameterSet() {}
46+
/**
47+
* Instiaciates a new CallRecordGetPstnBlockedUsersLogParameterSet
48+
* @param builder builder bearing the parameters to initialize from
49+
*/
50+
protected CallRecordGetPstnBlockedUsersLogParameterSet(@Nonnull final CallRecordGetPstnBlockedUsersLogParameterSetBuilder builder) {
51+
this.fromDateTime = builder.fromDateTime;
52+
this.toDateTime = builder.toDateTime;
53+
}
54+
/**
55+
* Gets a new builder for the body
56+
* @return a new builder
57+
*/
58+
@Nonnull
59+
public static CallRecordGetPstnBlockedUsersLogParameterSetBuilder newBuilder() {
60+
return new CallRecordGetPstnBlockedUsersLogParameterSetBuilder();
61+
}
62+
/**
63+
* Fluent builder for the CallRecordGetPstnBlockedUsersLogParameterSet
64+
*/
65+
public static final class CallRecordGetPstnBlockedUsersLogParameterSetBuilder {
66+
/**
67+
* The fromDateTime parameter value
68+
*/
69+
@Nullable
70+
protected java.time.OffsetDateTime fromDateTime;
71+
/**
72+
* Sets the FromDateTime
73+
* @param val the value to set it to
74+
* @return the current builder object
75+
*/
76+
@Nonnull
77+
public CallRecordGetPstnBlockedUsersLogParameterSetBuilder withFromDateTime(@Nullable final java.time.OffsetDateTime val) {
78+
this.fromDateTime = val;
79+
return this;
80+
}
81+
/**
82+
* The toDateTime parameter value
83+
*/
84+
@Nullable
85+
protected java.time.OffsetDateTime toDateTime;
86+
/**
87+
* Sets the ToDateTime
88+
* @param val the value to set it to
89+
* @return the current builder object
90+
*/
91+
@Nonnull
92+
public CallRecordGetPstnBlockedUsersLogParameterSetBuilder withToDateTime(@Nullable final java.time.OffsetDateTime val) {
93+
this.toDateTime = val;
94+
return this;
95+
}
96+
/**
97+
* Instanciates a new CallRecordGetPstnBlockedUsersLogParameterSetBuilder
98+
*/
99+
@Nullable
100+
protected CallRecordGetPstnBlockedUsersLogParameterSetBuilder(){}
101+
/**
102+
* Buils the resulting body object to be passed to the request
103+
* @return the body object to pass to the request
104+
*/
105+
@Nonnull
106+
public CallRecordGetPstnBlockedUsersLogParameterSet build() {
107+
return new CallRecordGetPstnBlockedUsersLogParameterSet(this);
108+
}
109+
}
110+
/**
111+
* Gets the functions options from the properties that have been set
112+
* @return a list of function options for the request
113+
*/
114+
@Nonnull
115+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
116+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
117+
if(this.fromDateTime != null) {
118+
result.add(new com.microsoft.graph.options.FunctionOption("fromDateTime", fromDateTime));
119+
}
120+
if(this.toDateTime != null) {
121+
result.add(new com.microsoft.graph.options.FunctionOption("toDateTime", toDateTime));
122+
}
123+
return result;
124+
}
125+
}
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
// Template Source: BaseMethodParameterSet.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.callrecords.models;
7+
8+
import com.microsoft.graph.callrecords.models.PstnOnlineMeetingDialoutReport;
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Call Record Get Pstn Online Meeting Dialout Report Parameter Set.
21+
*/
22+
public class CallRecordGetPstnOnlineMeetingDialoutReportParameterSet {
23+
/**
24+
* The from Date Time.
25+
*
26+
*/
27+
@SerializedName(value = "fromDateTime", alternate = {"FromDateTime"})
28+
@Expose
29+
@Nullable
30+
public java.time.OffsetDateTime fromDateTime;
31+
32+
/**
33+
* The to Date Time.
34+
*
35+
*/
36+
@SerializedName(value = "toDateTime", alternate = {"ToDateTime"})
37+
@Expose
38+
@Nullable
39+
public java.time.OffsetDateTime toDateTime;
40+
41+
42+
/**
43+
* Instiaciates a new CallRecordGetPstnOnlineMeetingDialoutReportParameterSet
44+
*/
45+
public CallRecordGetPstnOnlineMeetingDialoutReportParameterSet() {}
46+
/**
47+
* Instiaciates a new CallRecordGetPstnOnlineMeetingDialoutReportParameterSet
48+
* @param builder builder bearing the parameters to initialize from
49+
*/
50+
protected CallRecordGetPstnOnlineMeetingDialoutReportParameterSet(@Nonnull final CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder builder) {
51+
this.fromDateTime = builder.fromDateTime;
52+
this.toDateTime = builder.toDateTime;
53+
}
54+
/**
55+
* Gets a new builder for the body
56+
* @return a new builder
57+
*/
58+
@Nonnull
59+
public static CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder newBuilder() {
60+
return new CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder();
61+
}
62+
/**
63+
* Fluent builder for the CallRecordGetPstnOnlineMeetingDialoutReportParameterSet
64+
*/
65+
public static final class CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder {
66+
/**
67+
* The fromDateTime parameter value
68+
*/
69+
@Nullable
70+
protected java.time.OffsetDateTime fromDateTime;
71+
/**
72+
* Sets the FromDateTime
73+
* @param val the value to set it to
74+
* @return the current builder object
75+
*/
76+
@Nonnull
77+
public CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder withFromDateTime(@Nullable final java.time.OffsetDateTime val) {
78+
this.fromDateTime = val;
79+
return this;
80+
}
81+
/**
82+
* The toDateTime parameter value
83+
*/
84+
@Nullable
85+
protected java.time.OffsetDateTime toDateTime;
86+
/**
87+
* Sets the ToDateTime
88+
* @param val the value to set it to
89+
* @return the current builder object
90+
*/
91+
@Nonnull
92+
public CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder withToDateTime(@Nullable final java.time.OffsetDateTime val) {
93+
this.toDateTime = val;
94+
return this;
95+
}
96+
/**
97+
* Instanciates a new CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder
98+
*/
99+
@Nullable
100+
protected CallRecordGetPstnOnlineMeetingDialoutReportParameterSetBuilder(){}
101+
/**
102+
* Buils the resulting body object to be passed to the request
103+
* @return the body object to pass to the request
104+
*/
105+
@Nonnull
106+
public CallRecordGetPstnOnlineMeetingDialoutReportParameterSet build() {
107+
return new CallRecordGetPstnOnlineMeetingDialoutReportParameterSet(this);
108+
}
109+
}
110+
/**
111+
* Gets the functions options from the properties that have been set
112+
* @return a list of function options for the request
113+
*/
114+
@Nonnull
115+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
116+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
117+
if(this.fromDateTime != null) {
118+
result.add(new com.microsoft.graph.options.FunctionOption("fromDateTime", fromDateTime));
119+
}
120+
if(this.toDateTime != null) {
121+
result.add(new com.microsoft.graph.options.FunctionOption("toDateTime", toDateTime));
122+
}
123+
return result;
124+
}
125+
}

0 commit comments

Comments
 (0)