Skip to content

Commit f31e26b

Browse files
author
Client Tooling Big Giant Robot
committed
Update generated files with build 1337707
1 parent b3683d8 commit f31e26b

26 files changed

+978
-25
lines changed

src/main/java/com/microsoft/graph/models/extensions/DriveItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public class DriveItem extends BaseItem implements IJsonBackedObject {
223223

224224
/**
225225
* The Analytics.
226-
*
226+
* Analytics about the view activities that took place on this item.
227227
*/
228228
@SerializedName("analytics")
229229
@Expose
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.models.generated.*;
8+
import com.google.gson.annotations.Expose;
9+
import com.google.gson.annotations.SerializedName;
10+
import com.google.gson.JsonObject;
11+
import com.microsoft.graph.serializer.ISerializer;
12+
import java.util.EnumSet;
13+
14+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
15+
16+
/**
17+
* The class for the Drive Item Checkin Body.
18+
*/
19+
public class DriveItemCheckinBody {
20+
21+
/**
22+
* The check In As.
23+
*
24+
*/
25+
@SerializedName("checkInAs")
26+
@Expose
27+
public String checkInAs;
28+
29+
/**
30+
* The comment.
31+
*
32+
*/
33+
@SerializedName("comment")
34+
@Expose
35+
public String comment;
36+
37+
38+
/**
39+
* The raw representation of this class
40+
*/
41+
private JsonObject rawObject;
42+
43+
/**
44+
* The serializer
45+
*/
46+
private ISerializer serializer;
47+
48+
/**
49+
* Gets the raw representation of this class
50+
*
51+
* @return the raw representation of this class
52+
*/
53+
public JsonObject getRawObject() {
54+
return rawObject;
55+
}
56+
57+
/**
58+
* Gets serializer
59+
*
60+
* @return the serializer
61+
*/
62+
protected ISerializer getSerializer() {
63+
return serializer;
64+
}
65+
66+
/**
67+
* Sets the raw JSON object
68+
*
69+
* @param serializer the serializer
70+
* @param json the JSON object to set this object to
71+
*/
72+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
73+
this.serializer = serializer;
74+
rawObject = json;
75+
76+
}
77+
}

src/main/java/com/microsoft/graph/models/extensions/Group.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
113113

114114
/**
115115
* The Group Types.
116-
* Specifies the type of group to create. Possible values are Unified to create an Office 365 group, or DynamicMembership for dynamic groups. For all other group types, like security-enabled groups and email-enabled security groups, do not set this property. Returned by default. Supports $filter.
116+
* Specifies the group type and its membership. If the collection contains Unified then the group is an Office 365 group; otherwise it's a security group. If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter.
117117
*/
118118
@SerializedName("groupTypes")
119119
@Expose
@@ -137,7 +137,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
137137

138138
/**
139139
* The Mail Enabled.
140-
* Specifies whether the group is mail-enabled. If the securityEnabled property is also true, the group is a mail-enabled security group; otherwise, the group is a Microsoft Exchange distribution group. Returned by default.
140+
* Specifies whether the group is mail-enabled. Returned by default.
141141
*/
142142
@SerializedName("mailEnabled")
143143
@Expose
@@ -201,7 +201,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
201201

202202
/**
203203
* The Security Enabled.
204-
* Specifies whether the group is a security group. If the mailEnabled property is also true, the group is a mail-enabled security group; otherwise it is a security group. Must be false for Office 365 groups. Returned by default. Supports $filter.
204+
* Specifies whether the group is a security group. Returned by default. Supports $filter.
205205
*/
206206
@SerializedName("securityEnabled")
207207
@Expose

src/main/java/com/microsoft/graph/models/extensions/IncompleteData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ public final AdditionalDataManager additionalDataManager() {
3838

3939
/**
4040
* The Missing Data Before Date Time.
41-
*
41+
* The service does not have source data before the specified time.
4242
*/
4343
@SerializedName("missingDataBeforeDateTime")
4444
@Expose
4545
public java.util.Calendar missingDataBeforeDateTime;
4646

4747
/**
4848
* The Was Throttled.
49-
*
49+
* Some data was not recorded due to excessive activity.
5050
*/
5151
@SerializedName("wasThrottled")
5252
@Expose

src/main/java/com/microsoft/graph/models/extensions/ItemActionStat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ public final AdditionalDataManager additionalDataManager() {
3838

3939
/**
4040
* The Action Count.
41-
*
41+
* The number of times the action took place. Read-only.
4242
*/
4343
@SerializedName("actionCount")
4444
@Expose
4545
public Integer actionCount;
4646

4747
/**
4848
* The Actor Count.
49-
*
49+
* The number of distinct actors that performed the action. Read-only.
5050
*/
5151
@SerializedName("actorCount")
5252
@Expose

src/main/java/com/microsoft/graph/models/extensions/ItemActivity.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,31 @@ public class ItemActivity extends Entity implements IJsonBackedObject {
3232

3333
/**
3434
* The Access.
35-
*
35+
* An item was accessed.
3636
*/
3737
@SerializedName("access")
3838
@Expose
3939
public AccessAction access;
4040

4141
/**
4242
* The Activity Date Time.
43-
*
43+
* Details about when the activity took place. Read-only.
4444
*/
4545
@SerializedName("activityDateTime")
4646
@Expose
4747
public java.util.Calendar activityDateTime;
4848

4949
/**
5050
* The Actor.
51-
*
51+
* Identity of who performed the action. Read-only.
5252
*/
5353
@SerializedName("actor")
5454
@Expose
5555
public IdentitySet actor;
5656

5757
/**
5858
* The Drive Item.
59-
*
59+
* Exposes the driveItem that was the target of this activity.
6060
*/
6161
@SerializedName("driveItem")
6262
@Expose

src/main/java/com/microsoft/graph/models/extensions/ItemActivityStat.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,79 +34,79 @@ public class ItemActivityStat extends Entity implements IJsonBackedObject {
3434

3535
/**
3636
* The Start Date Time.
37-
*
37+
* When the interval starts. Read-only.
3838
*/
3939
@SerializedName("startDateTime")
4040
@Expose
4141
public java.util.Calendar startDateTime;
4242

4343
/**
4444
* The End Date Time.
45-
*
45+
* When the interval ends. Read-only.
4646
*/
4747
@SerializedName("endDateTime")
4848
@Expose
4949
public java.util.Calendar endDateTime;
5050

5151
/**
5252
* The Access.
53-
*
53+
* Statistics about the access actions in this interval. Read-only.
5454
*/
5555
@SerializedName("access")
5656
@Expose
5757
public ItemActionStat access;
5858

5959
/**
6060
* The Create.
61-
*
61+
* Statistics about the create actions in this interval. Read-only.
6262
*/
6363
@SerializedName("create")
6464
@Expose
6565
public ItemActionStat create;
6666

6767
/**
6868
* The Delete.
69-
*
69+
* Statistics about the delete actions in this interval. Read-only.
7070
*/
7171
@SerializedName("delete")
7272
@Expose
7373
public ItemActionStat delete;
7474

7575
/**
7676
* The Edit.
77-
*
77+
* Statistics about the edit actions in this interval. Read-only.
7878
*/
7979
@SerializedName("edit")
8080
@Expose
8181
public ItemActionStat edit;
8282

8383
/**
8484
* The Move.
85-
*
85+
* Statistics about the move actions in this interval. Read-only.
8686
*/
8787
@SerializedName("move")
8888
@Expose
8989
public ItemActionStat move;
9090

9191
/**
9292
* The Is Trending.
93-
*
93+
* Indicates whether the item is 'trending.' Read-only.
9494
*/
9595
@SerializedName("isTrending")
9696
@Expose
9797
public Boolean isTrending;
9898

9999
/**
100100
* The Incomplete Data.
101-
*
101+
* Indicates that the statistics in this interval are based on incomplete data. Read-only.
102102
*/
103103
@SerializedName("incompleteData")
104104
@Expose
105105
public IncompleteData incompleteData;
106106

107107
/**
108108
* The Activities.
109-
*
109+
* Exposes the itemActivities represented in this itemActivityStat resource.
110110
*/
111111
public ItemActivityCollectionPage activities;
112112

src/main/java/com/microsoft/graph/models/extensions/ListItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class ListItem extends BaseItem implements IJsonBackedObject {
5353

5454
/**
5555
* The Analytics.
56-
*
56+
* Analytics about the view activities that took place on this item.
5757
*/
5858
@SerializedName("analytics")
5959
@Expose
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
import com.microsoft.graph.concurrency.*;
7+
import com.microsoft.graph.core.*;
8+
import com.microsoft.graph.http.*;
9+
import com.microsoft.graph.options.*;
10+
import com.microsoft.graph.serializer.*;
11+
import java.util.Arrays;
12+
import java.util.EnumSet;
13+
import com.microsoft.graph.models.extensions.MailFolder;
14+
15+
16+
import com.google.gson.JsonObject;
17+
import com.google.gson.JsonElement;
18+
import com.google.gson.annotations.*;
19+
import java.util.HashMap;
20+
import java.util.Map;
21+
22+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
23+
24+
/**
25+
* The class for the Mail Search Folder.
26+
*/
27+
public class MailSearchFolder extends MailFolder implements IJsonBackedObject {
28+
29+
30+
/**
31+
* The Is Supported.
32+
*
33+
*/
34+
@SerializedName("isSupported")
35+
@Expose
36+
public Boolean isSupported;
37+
38+
/**
39+
* The Include Nested Folders.
40+
*
41+
*/
42+
@SerializedName("includeNestedFolders")
43+
@Expose
44+
public Boolean includeNestedFolders;
45+
46+
/**
47+
* The Source Folder Ids.
48+
*
49+
*/
50+
@SerializedName("sourceFolderIds")
51+
@Expose
52+
public java.util.List<String> sourceFolderIds;
53+
54+
/**
55+
* The Filter Query.
56+
*
57+
*/
58+
@SerializedName("filterQuery")
59+
@Expose
60+
public String filterQuery;
61+
62+
63+
/**
64+
* The raw representation of this class
65+
*/
66+
private JsonObject rawObject;
67+
68+
/**
69+
* The serializer
70+
*/
71+
private ISerializer serializer;
72+
73+
/**
74+
* Gets the raw representation of this class
75+
*
76+
* @return the raw representation of this class
77+
*/
78+
public JsonObject getRawObject() {
79+
return rawObject;
80+
}
81+
82+
/**
83+
* Gets serializer
84+
*
85+
* @return the serializer
86+
*/
87+
protected ISerializer getSerializer() {
88+
return serializer;
89+
}
90+
91+
/**
92+
* Sets the raw JSON object
93+
*
94+
* @param serializer the serializer
95+
* @param json the JSON object to set this object to
96+
*/
97+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
98+
this.serializer = serializer;
99+
rawObject = json;
100+
101+
}
102+
}

src/main/java/com/microsoft/graph/models/extensions/Site.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class Site extends BaseItem implements IJsonBackedObject {
8383

8484
/**
8585
* The Analytics.
86-
*
86+
* Analytics about the view activities that took place in this site.
8787
*/
8888
@SerializedName("analytics")
8989
@Expose

0 commit comments

Comments
 (0)