Skip to content

Commit af2f106

Browse files
committed
- updates codegen failes for casing issue
1 parent 81646d8 commit af2f106

File tree

1,236 files changed

+5629
-5629
lines changed

Some content is hidden

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

1,236 files changed

+5629
-5629
lines changed

src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,79 +31,79 @@ public class CallRecord extends Entity implements IJsonBackedObject {
3131
* The End Date Time.
3232
* UTC time when the last user left the call. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
3333
*/
34-
@SerializedName("endDateTime")
34+
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
3535
@Expose
3636
public java.util.Calendar endDateTime;
3737

3838
/**
3939
* The Join Web Url.
4040
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
4141
*/
42-
@SerializedName("joinWebUrl")
42+
@SerializedName(value = "joinWebUrl", alternate = {"JoinWebUrl"})
4343
@Expose
4444
public String joinWebUrl;
4545

4646
/**
4747
* The Last Modified Date Time.
4848
* UTC time when the call record was created. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
4949
*/
50-
@SerializedName("lastModifiedDateTime")
50+
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
5151
@Expose
5252
public java.util.Calendar lastModifiedDateTime;
5353

5454
/**
5555
* The Modalities.
5656
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
5757
*/
58-
@SerializedName("modalities")
58+
@SerializedName(value = "modalities", alternate = {"Modalities"})
5959
@Expose
6060
public java.util.List<Modality> modalities;
6161

6262
/**
6363
* The Organizer.
6464
* The organizing party's identity.
6565
*/
66-
@SerializedName("organizer")
66+
@SerializedName(value = "organizer", alternate = {"Organizer"})
6767
@Expose
6868
public IdentitySet organizer;
6969

7070
/**
7171
* The Participants.
7272
* List of distinct identities involved in the call.
7373
*/
74-
@SerializedName("participants")
74+
@SerializedName(value = "participants", alternate = {"Participants"})
7575
@Expose
7676
public java.util.List<IdentitySet> participants;
7777

7878
/**
7979
* The Start Date Time.
8080
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
8181
*/
82-
@SerializedName("startDateTime")
82+
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
8383
@Expose
8484
public java.util.Calendar startDateTime;
8585

8686
/**
8787
* The Type.
8888
* Indicates the type of the call. Possible values are: unknown, groupCall, peerToPeer, unknownFutureValue.
8989
*/
90-
@SerializedName("type")
90+
@SerializedName(value = "type", alternate = {"Type"})
9191
@Expose
9292
public CallType type;
9393

9494
/**
9595
* The Version.
9696
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
9797
*/
98-
@SerializedName("version")
98+
@SerializedName(value = "version", alternate = {"Version"})
9999
@Expose
100100
public Long version;
101101

102102
/**
103103
* The Sessions.
104104
* List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
105105
*/
106-
@SerializedName("sessions")
106+
@SerializedName(value = "sessions", alternate = {"Sessions"})
107107
@Expose
108108
public SessionCollectionPage sessions;
109109

src/main/java/com/microsoft/graph/callrecords/models/extensions/ClientUserAgent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
2828
* The Platform.
2929
* Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
3030
*/
31-
@SerializedName("platform")
31+
@SerializedName(value = "platform", alternate = {"Platform"})
3232
@Expose
3333
public ClientPlatform platform;
3434

3535
/**
3636
* The Product Family.
3737
* Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue.
3838
*/
39-
@SerializedName("productFamily")
39+
@SerializedName(value = "productFamily", alternate = {"ProductFamily"})
4040
@Expose
4141
public ProductFamily productFamily;
4242

src/main/java/com/microsoft/graph/callrecords/models/extensions/DeviceInfo.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,167 +35,167 @@ public final AdditionalDataManager additionalDataManager() {
3535
* The Capture Device Driver.
3636
* Name of the capture device driver used by the media endpoint.
3737
*/
38-
@SerializedName("captureDeviceDriver")
38+
@SerializedName(value = "captureDeviceDriver", alternate = {"CaptureDeviceDriver"})
3939
@Expose
4040
public String captureDeviceDriver;
4141

4242
/**
4343
* The Capture Device Name.
4444
* Name of the capture device used by the media endpoint.
4545
*/
46-
@SerializedName("captureDeviceName")
46+
@SerializedName(value = "captureDeviceName", alternate = {"CaptureDeviceName"})
4747
@Expose
4848
public String captureDeviceName;
4949

5050
/**
5151
* The Capture Not Functioning Event Ratio.
5252
* Fraction of the call that the media endpoint detected the capture device was not working properly.
5353
*/
54-
@SerializedName("captureNotFunctioningEventRatio")
54+
@SerializedName(value = "captureNotFunctioningEventRatio", alternate = {"CaptureNotFunctioningEventRatio"})
5555
@Expose
5656
public float captureNotFunctioningEventRatio;
5757

5858
/**
5959
* The Cpu Insufficent Event Ratio.
6060
* Fraction of the call that the media endpoint detected the CPU resources available were insufficient and caused poor quality of the audio sent and received.
6161
*/
62-
@SerializedName("cpuInsufficentEventRatio")
62+
@SerializedName(value = "cpuInsufficentEventRatio", alternate = {"CpuInsufficentEventRatio"})
6363
@Expose
6464
public float cpuInsufficentEventRatio;
6565

6666
/**
6767
* The Device Clipping Event Ratio.
6868
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
6969
*/
70-
@SerializedName("deviceClippingEventRatio")
70+
@SerializedName(value = "deviceClippingEventRatio", alternate = {"DeviceClippingEventRatio"})
7171
@Expose
7272
public float deviceClippingEventRatio;
7373

7474
/**
7575
* The Device Glitch Event Ratio.
7676
* Fraction of the call that the media endpoint detected glitches or gaps in the audio played or captured that caused poor quality of the audio being sent or received.
7777
*/
78-
@SerializedName("deviceGlitchEventRatio")
78+
@SerializedName(value = "deviceGlitchEventRatio", alternate = {"DeviceGlitchEventRatio"})
7979
@Expose
8080
public float deviceGlitchEventRatio;
8181

8282
/**
8383
* The Howling Event Count.
8484
* Number of times during the call that the media endpoint detected howling or screeching audio.
8585
*/
86-
@SerializedName("howlingEventCount")
86+
@SerializedName(value = "howlingEventCount", alternate = {"HowlingEventCount"})
8787
@Expose
8888
public Integer howlingEventCount;
8989

9090
/**
9191
* The Initial Signal Level Root Mean Square.
9292
* The root mean square (RMS) of the incoming signal of up to the first 30 seconds of the call.
9393
*/
94-
@SerializedName("initialSignalLevelRootMeanSquare")
94+
@SerializedName(value = "initialSignalLevelRootMeanSquare", alternate = {"InitialSignalLevelRootMeanSquare"})
9595
@Expose
9696
public float initialSignalLevelRootMeanSquare;
9797

9898
/**
9999
* The Low Speech Level Event Ratio.
100100
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
101101
*/
102-
@SerializedName("lowSpeechLevelEventRatio")
102+
@SerializedName(value = "lowSpeechLevelEventRatio", alternate = {"LowSpeechLevelEventRatio"})
103103
@Expose
104104
public float lowSpeechLevelEventRatio;
105105

106106
/**
107107
* The Low Speech To Noise Event Ratio.
108108
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
109109
*/
110-
@SerializedName("lowSpeechToNoiseEventRatio")
110+
@SerializedName(value = "lowSpeechToNoiseEventRatio", alternate = {"LowSpeechToNoiseEventRatio"})
111111
@Expose
112112
public float lowSpeechToNoiseEventRatio;
113113

114114
/**
115115
* The Mic Glitch Rate.
116116
* Glitches per 5 minute interval for the media endpoint's microphone.
117117
*/
118-
@SerializedName("micGlitchRate")
118+
@SerializedName(value = "micGlitchRate", alternate = {"MicGlitchRate"})
119119
@Expose
120120
public float micGlitchRate;
121121

122122
/**
123123
* The Received Noise Level.
124124
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
125125
*/
126-
@SerializedName("receivedNoiseLevel")
126+
@SerializedName(value = "receivedNoiseLevel", alternate = {"ReceivedNoiseLevel"})
127127
@Expose
128128
public Integer receivedNoiseLevel;
129129

130130
/**
131131
* The Received Signal Level.
132132
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
133133
*/
134-
@SerializedName("receivedSignalLevel")
134+
@SerializedName(value = "receivedSignalLevel", alternate = {"ReceivedSignalLevel"})
135135
@Expose
136136
public Integer receivedSignalLevel;
137137

138138
/**
139139
* The Render Device Driver.
140140
* Name of the render device driver used by the media endpoint.
141141
*/
142-
@SerializedName("renderDeviceDriver")
142+
@SerializedName(value = "renderDeviceDriver", alternate = {"RenderDeviceDriver"})
143143
@Expose
144144
public String renderDeviceDriver;
145145

146146
/**
147147
* The Render Device Name.
148148
* Name of the render device used by the media endpoint.
149149
*/
150-
@SerializedName("renderDeviceName")
150+
@SerializedName(value = "renderDeviceName", alternate = {"RenderDeviceName"})
151151
@Expose
152152
public String renderDeviceName;
153153

154154
/**
155155
* The Render Mute Event Ratio.
156156
* Fraction of the call that media endpoint detected device render is muted.
157157
*/
158-
@SerializedName("renderMuteEventRatio")
158+
@SerializedName(value = "renderMuteEventRatio", alternate = {"RenderMuteEventRatio"})
159159
@Expose
160160
public float renderMuteEventRatio;
161161

162162
/**
163163
* The Render Not Functioning Event Ratio.
164164
* Fraction of the call that the media endpoint detected the render device was not working properly.
165165
*/
166-
@SerializedName("renderNotFunctioningEventRatio")
166+
@SerializedName(value = "renderNotFunctioningEventRatio", alternate = {"RenderNotFunctioningEventRatio"})
167167
@Expose
168168
public float renderNotFunctioningEventRatio;
169169

170170
/**
171171
* The Render Zero Volume Event Ratio.
172172
* Fraction of the call that media endpoint detected device render volume is set to 0.
173173
*/
174-
@SerializedName("renderZeroVolumeEventRatio")
174+
@SerializedName(value = "renderZeroVolumeEventRatio", alternate = {"RenderZeroVolumeEventRatio"})
175175
@Expose
176176
public float renderZeroVolumeEventRatio;
177177

178178
/**
179179
* The Sent Noise Level.
180180
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
181181
*/
182-
@SerializedName("sentNoiseLevel")
182+
@SerializedName(value = "sentNoiseLevel", alternate = {"SentNoiseLevel"})
183183
@Expose
184184
public Integer sentNoiseLevel;
185185

186186
/**
187187
* The Sent Signal Level.
188188
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
189189
*/
190-
@SerializedName("sentSignalLevel")
190+
@SerializedName(value = "sentSignalLevel", alternate = {"SentSignalLevel"})
191191
@Expose
192192
public Integer sentSignalLevel;
193193

194194
/**
195195
* The Speaker Glitch Rate.
196196
* Glitches per 5 minute internal for the media endpoint's loudspeaker.
197197
*/
198-
@SerializedName("speakerGlitchRate")
198+
@SerializedName(value = "speakerGlitchRate", alternate = {"SpeakerGlitchRate"})
199199
@Expose
200200
public float speakerGlitchRate;
201201

src/main/java/com/microsoft/graph/callrecords/models/extensions/Endpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() {
3636
* The User Agent.
3737
* User-agent reported by this endpoint.
3838
*/
39-
@SerializedName("userAgent")
39+
@SerializedName(value = "userAgent", alternate = {"UserAgent"})
4040
@Expose
4141
public UserAgent userAgent;
4242

src/main/java/com/microsoft/graph/callrecords/models/extensions/FailureInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ public final AdditionalDataManager additionalDataManager() {
3636
* The Reason.
3737
* Classification of why a call or portion of a call failed.
3838
*/
39-
@SerializedName("reason")
39+
@SerializedName(value = "reason", alternate = {"Reason"})
4040
@Expose
4141
public String reason;
4242

4343
/**
4444
* The Stage.
4545
* The stage when the failure occurred. Possible values are: unknown, callSetup, midcall, unknownFutureValue.
4646
*/
47-
@SerializedName("stage")
47+
@SerializedName(value = "stage", alternate = {"Stage"})
4848
@Expose
4949
public FailureStage stage;
5050

src/main/java/com/microsoft/graph/callrecords/models/extensions/Media.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,47 +38,47 @@ public final AdditionalDataManager additionalDataManager() {
3838
* The Callee Device.
3939
* Device information associated with the callee endpoint of this media.
4040
*/
41-
@SerializedName("calleeDevice")
41+
@SerializedName(value = "calleeDevice", alternate = {"CalleeDevice"})
4242
@Expose
4343
public DeviceInfo calleeDevice;
4444

4545
/**
4646
* The Callee Network.
4747
* Network information associated with the callee endpoint of this media.
4848
*/
49-
@SerializedName("calleeNetwork")
49+
@SerializedName(value = "calleeNetwork", alternate = {"CalleeNetwork"})
5050
@Expose
5151
public NetworkInfo calleeNetwork;
5252

5353
/**
5454
* The Caller Device.
5555
* Device information associated with the caller endpoint of this media.
5656
*/
57-
@SerializedName("callerDevice")
57+
@SerializedName(value = "callerDevice", alternate = {"CallerDevice"})
5858
@Expose
5959
public DeviceInfo callerDevice;
6060

6161
/**
6262
* The Caller Network.
6363
* Network information associated with the caller endpoint of this media.
6464
*/
65-
@SerializedName("callerNetwork")
65+
@SerializedName(value = "callerNetwork", alternate = {"CallerNetwork"})
6666
@Expose
6767
public NetworkInfo callerNetwork;
6868

6969
/**
7070
* The Label.
7171
* How the media was identified during media negotiation stage.
7272
*/
73-
@SerializedName("label")
73+
@SerializedName(value = "label", alternate = {"Label"})
7474
@Expose
7575
public String label;
7676

7777
/**
7878
* The Streams.
7979
* Network streams associated with this media.
8080
*/
81-
@SerializedName("streams")
81+
@SerializedName(value = "streams", alternate = {"Streams"})
8282
@Expose
8383
public java.util.List<MediaStream> streams;
8484

0 commit comments

Comments
 (0)