Skip to content

Commit adff262

Browse files
committed
- updates unit test files
1 parent 5bb3e40 commit adff262

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

test/Typewriter.Test/TestDataJava/com/microsoft/graph/models/extensions/CloudCommunications.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,16 @@ public class CloudCommunications extends Entity implements IJsonBackedObject {
3636
* The Calls.
3737
*
3838
*/
39+
@SerializedName("calls")
40+
@Expose
3941
public CallCollectionPage calls;
4042

4143
/**
4244
* The Call Records.
4345
*
4446
*/
47+
@SerializedName("callRecords")
48+
@Expose
4549
public CallRecordCollectionPage callRecords;
4650

4751

test/Typewriter.Test/TestDataJava/com/microsoft/graph/models/extensions/Schedule.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,16 @@ public class Schedule extends Entity implements IJsonBackedObject {
4444
* The Times Off.
4545
*
4646
*/
47+
@SerializedName("timesOff")
48+
@Expose
4749
public TimeOffCollectionPage timesOff;
4850

4951
/**
5052
* The Time Off Requests.
5153
*
5254
*/
55+
@SerializedName("timeOffRequests")
56+
@Expose
5357
public TimeOffRequestCollectionPage timeOffRequests;
5458

5559

test/Typewriter.Test/TestDataJava/com/microsoft/graph2/callrecords/models/extensions/CallRecord.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,16 @@ public class CallRecord extends Entity implements IJsonBackedObject {
111111
* The Sessions.
112112
*
113113
*/
114+
@SerializedName("sessions")
115+
@Expose
114116
public SessionCollectionPage sessions;
115117

116118
/**
117119
* The Recipients.
118120
*
119121
*/
122+
@SerializedName("recipients")
123+
@Expose
120124
public EntityType2CollectionPage recipients;
121125

122126

test/Typewriter.Test/TestDataJava/com/microsoft/graph2/callrecords/models/extensions/Session.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ public class Session extends Entity implements IJsonBackedObject {
8484
* The Segments.
8585
*
8686
*/
87+
@SerializedName("segments")
88+
@Expose
8789
public SegmentCollectionPage segments;
8890

8991

0 commit comments

Comments
 (0)