Skip to content

Commit 62cd61b

Browse files
Microsoft Graph DevX Toolingbaywet
authored andcommitted
Update generated files with build 53138
1 parent 17c4cc5 commit 62cd61b

File tree

99 files changed

+5877
-148
lines changed

Some content is hidden

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

99 files changed

+5877
-148
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:4.0.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:4.1.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>4.0.0</version>
39+
<version>4.1.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -145,3 +145,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
145145

146146

147147

148+

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
2828
mavenMajorVersion = 4
29-
mavenMinorVersion = 0
29+
mavenMinorVersion = 1
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -54,3 +54,4 @@ mavenCentralPublishingEnabled=false
5454

5555

5656

57+
Lines changed: 239 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,239 @@
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.callrecords.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+
12+
13+
import com.google.gson.JsonObject;
14+
import com.google.gson.annotations.SerializedName;
15+
import com.google.gson.annotations.Expose;
16+
import javax.annotation.Nullable;
17+
import javax.annotation.Nonnull;
18+
19+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
20+
21+
/**
22+
* The class for the Direct Routing Log Row.
23+
*/
24+
public class DirectRoutingLogRow implements IJsonBackedObject {
25+
26+
/** the OData type of the object as returned by the service */
27+
@SerializedName("@odata.type")
28+
@Expose
29+
@Nullable
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
@Nonnull
36+
public final AdditionalDataManager additionalDataManager() {
37+
return additionalDataManager;
38+
}
39+
40+
/**
41+
* The Callee Number.
42+
*
43+
*/
44+
@SerializedName(value = "calleeNumber", alternate = {"CalleeNumber"})
45+
@Expose
46+
@Nullable
47+
public String calleeNumber;
48+
49+
/**
50+
* The Call End Sub Reason.
51+
*
52+
*/
53+
@SerializedName(value = "callEndSubReason", alternate = {"CallEndSubReason"})
54+
@Expose
55+
@Nullable
56+
public Integer callEndSubReason;
57+
58+
/**
59+
* The Caller Number.
60+
*
61+
*/
62+
@SerializedName(value = "callerNumber", alternate = {"CallerNumber"})
63+
@Expose
64+
@Nullable
65+
public String callerNumber;
66+
67+
/**
68+
* The Call Type.
69+
*
70+
*/
71+
@SerializedName(value = "callType", alternate = {"CallType"})
72+
@Expose
73+
@Nullable
74+
public String callType;
75+
76+
/**
77+
* The Correlation Id.
78+
*
79+
*/
80+
@SerializedName(value = "correlationId", alternate = {"CorrelationId"})
81+
@Expose
82+
@Nullable
83+
public String correlationId;
84+
85+
/**
86+
* The Duration.
87+
*
88+
*/
89+
@SerializedName(value = "duration", alternate = {"Duration"})
90+
@Expose
91+
@Nullable
92+
public Integer duration;
93+
94+
/**
95+
* The End Date Time.
96+
*
97+
*/
98+
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
99+
@Expose
100+
@Nullable
101+
public java.time.OffsetDateTime endDateTime;
102+
103+
/**
104+
* The Failure Date Time.
105+
*
106+
*/
107+
@SerializedName(value = "failureDateTime", alternate = {"FailureDateTime"})
108+
@Expose
109+
@Nullable
110+
public java.time.OffsetDateTime failureDateTime;
111+
112+
/**
113+
* The Final Sip Code.
114+
*
115+
*/
116+
@SerializedName(value = "finalSipCode", alternate = {"FinalSipCode"})
117+
@Expose
118+
@Nullable
119+
public Integer finalSipCode;
120+
121+
/**
122+
* The Final Sip Code Phrase.
123+
*
124+
*/
125+
@SerializedName(value = "finalSipCodePhrase", alternate = {"FinalSipCodePhrase"})
126+
@Expose
127+
@Nullable
128+
public String finalSipCodePhrase;
129+
130+
/**
131+
* The Id.
132+
*
133+
*/
134+
@SerializedName(value = "id", alternate = {"Id"})
135+
@Expose
136+
@Nullable
137+
public String id;
138+
139+
/**
140+
* The Invite Date Time.
141+
*
142+
*/
143+
@SerializedName(value = "inviteDateTime", alternate = {"InviteDateTime"})
144+
@Expose
145+
@Nullable
146+
public java.time.OffsetDateTime inviteDateTime;
147+
148+
/**
149+
* The Media Bypass Enabled.
150+
*
151+
*/
152+
@SerializedName(value = "mediaBypassEnabled", alternate = {"MediaBypassEnabled"})
153+
@Expose
154+
@Nullable
155+
public Boolean mediaBypassEnabled;
156+
157+
/**
158+
* The Media Path Location.
159+
*
160+
*/
161+
@SerializedName(value = "mediaPathLocation", alternate = {"MediaPathLocation"})
162+
@Expose
163+
@Nullable
164+
public String mediaPathLocation;
165+
166+
/**
167+
* The Signaling Location.
168+
*
169+
*/
170+
@SerializedName(value = "signalingLocation", alternate = {"SignalingLocation"})
171+
@Expose
172+
@Nullable
173+
public String signalingLocation;
174+
175+
/**
176+
* The Start Date Time.
177+
*
178+
*/
179+
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
180+
@Expose
181+
@Nullable
182+
public java.time.OffsetDateTime startDateTime;
183+
184+
/**
185+
* The Successful Call.
186+
*
187+
*/
188+
@SerializedName(value = "successfulCall", alternate = {"SuccessfulCall"})
189+
@Expose
190+
@Nullable
191+
public Boolean successfulCall;
192+
193+
/**
194+
* The Trunk Fully Qualified Domain Name.
195+
*
196+
*/
197+
@SerializedName(value = "trunkFullyQualifiedDomainName", alternate = {"TrunkFullyQualifiedDomainName"})
198+
@Expose
199+
@Nullable
200+
public String trunkFullyQualifiedDomainName;
201+
202+
/**
203+
* The User Display Name.
204+
*
205+
*/
206+
@SerializedName(value = "userDisplayName", alternate = {"UserDisplayName"})
207+
@Expose
208+
@Nullable
209+
public String userDisplayName;
210+
211+
/**
212+
* The User Id.
213+
*
214+
*/
215+
@SerializedName(value = "userId", alternate = {"UserId"})
216+
@Expose
217+
@Nullable
218+
public String userId;
219+
220+
/**
221+
* The User Principal Name.
222+
*
223+
*/
224+
@SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"})
225+
@Expose
226+
@Nullable
227+
public String userPrincipalName;
228+
229+
230+
/**
231+
* Sets the raw JSON object
232+
*
233+
* @param serializer the serializer
234+
* @param json the JSON object to set this object to
235+
*/
236+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
237+
238+
}
239+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Template Source: Enum.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+
9+
/**
10+
* The Enum Pstn Call Duration Source.
11+
*/
12+
public enum PstnCallDurationSource
13+
{
14+
/**
15+
* microsoft
16+
*/
17+
MICROSOFT,
18+
/**
19+
* operator
20+
*/
21+
OPERATOR,
22+
/**
23+
* For PstnCallDurationSource values that were not expected from the service
24+
*/
25+
UNEXPECTED_VALUE
26+
}

0 commit comments

Comments
 (0)