1111import com .microsoft .graph .http .BaseCollectionPage ;
1212import com .microsoft .graph .models .IdentitySet ;
1313import com .microsoft .graph .ediscovery .models .CaseStatus ;
14- import com .microsoft .graph .ediscovery .models .Custodian ;
15- import com .microsoft .graph .ediscovery .models .LegalHold ;
16- import com .microsoft .graph .ediscovery .models .NoncustodialDataSource ;
17- import com .microsoft .graph .ediscovery .models .CaseOperation ;
18- import com .microsoft .graph .ediscovery .models .ReviewSet ;
1914import com .microsoft .graph .ediscovery .models .CaseSettings ;
20- import com .microsoft .graph .ediscovery .models .SourceCollection ;
21- import com .microsoft .graph .ediscovery .models .Tag ;
2215import com .microsoft .graph .models .Entity ;
2316import com .microsoft .graph .ediscovery .requests .CustodianCollectionPage ;
2417import com .microsoft .graph .ediscovery .requests .LegalHoldCollectionPage ;
@@ -131,7 +124,7 @@ public class Case extends Entity implements IJsonBackedObject {
131124 @ SerializedName (value = "custodians" , alternate = {"Custodians" })
132125 @ Expose
133126 @ Nullable
134- public CustodianCollectionPage custodians ;
127+ public com . microsoft . graph . ediscovery . requests . CustodianCollectionPage custodians ;
135128
136129 /**
137130 * The Legal Holds.
@@ -140,7 +133,7 @@ public class Case extends Entity implements IJsonBackedObject {
140133 @ SerializedName (value = "legalHolds" , alternate = {"LegalHolds" })
141134 @ Expose
142135 @ Nullable
143- public LegalHoldCollectionPage legalHolds ;
136+ public com . microsoft . graph . ediscovery . requests . LegalHoldCollectionPage legalHolds ;
144137
145138 /**
146139 * The Noncustodial Data Sources.
@@ -149,7 +142,7 @@ public class Case extends Entity implements IJsonBackedObject {
149142 @ SerializedName (value = "noncustodialDataSources" , alternate = {"NoncustodialDataSources" })
150143 @ Expose
151144 @ Nullable
152- public NoncustodialDataSourceCollectionPage noncustodialDataSources ;
145+ public com . microsoft . graph . ediscovery . requests . NoncustodialDataSourceCollectionPage noncustodialDataSources ;
153146
154147 /**
155148 * The Operations.
@@ -158,7 +151,7 @@ public class Case extends Entity implements IJsonBackedObject {
158151 @ SerializedName (value = "operations" , alternate = {"Operations" })
159152 @ Expose
160153 @ Nullable
161- public CaseOperationCollectionPage operations ;
154+ public com . microsoft . graph . ediscovery . requests . CaseOperationCollectionPage operations ;
162155
163156 /**
164157 * The Review Sets.
@@ -167,7 +160,7 @@ public class Case extends Entity implements IJsonBackedObject {
167160 @ SerializedName (value = "reviewSets" , alternate = {"ReviewSets" })
168161 @ Expose
169162 @ Nullable
170- public ReviewSetCollectionPage reviewSets ;
163+ public com . microsoft . graph . ediscovery . requests . ReviewSetCollectionPage reviewSets ;
171164
172165 /**
173166 * The Settings.
@@ -185,7 +178,7 @@ public class Case extends Entity implements IJsonBackedObject {
185178 @ SerializedName (value = "sourceCollections" , alternate = {"SourceCollections" })
186179 @ Expose
187180 @ Nullable
188- public SourceCollectionCollectionPage sourceCollections ;
181+ public com . microsoft . graph . ediscovery . requests . SourceCollectionCollectionPage sourceCollections ;
189182
190183 /**
191184 * The Tags.
@@ -194,7 +187,7 @@ public class Case extends Entity implements IJsonBackedObject {
194187 @ SerializedName (value = "tags" , alternate = {"Tags" })
195188 @ Expose
196189 @ Nullable
197- public TagCollectionPage tags ;
190+ public com . microsoft . graph . ediscovery . requests . TagCollectionPage tags ;
198191
199192
200193 /**
@@ -207,31 +200,31 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
207200
208201
209202 if (json .has ("custodians" )) {
210- custodians = serializer .deserializeObject (json .get ("custodians" ), CustodianCollectionPage .class );
203+ custodians = serializer .deserializeObject (json .get ("custodians" ), com . microsoft . graph . ediscovery . requests . CustodianCollectionPage .class );
211204 }
212205
213206 if (json .has ("legalHolds" )) {
214- legalHolds = serializer .deserializeObject (json .get ("legalHolds" ), LegalHoldCollectionPage .class );
207+ legalHolds = serializer .deserializeObject (json .get ("legalHolds" ), com . microsoft . graph . ediscovery . requests . LegalHoldCollectionPage .class );
215208 }
216209
217210 if (json .has ("noncustodialDataSources" )) {
218- noncustodialDataSources = serializer .deserializeObject (json .get ("noncustodialDataSources" ), NoncustodialDataSourceCollectionPage .class );
211+ noncustodialDataSources = serializer .deserializeObject (json .get ("noncustodialDataSources" ), com . microsoft . graph . ediscovery . requests . NoncustodialDataSourceCollectionPage .class );
219212 }
220213
221214 if (json .has ("operations" )) {
222- operations = serializer .deserializeObject (json .get ("operations" ), CaseOperationCollectionPage .class );
215+ operations = serializer .deserializeObject (json .get ("operations" ), com . microsoft . graph . ediscovery . requests . CaseOperationCollectionPage .class );
223216 }
224217
225218 if (json .has ("reviewSets" )) {
226- reviewSets = serializer .deserializeObject (json .get ("reviewSets" ), ReviewSetCollectionPage .class );
219+ reviewSets = serializer .deserializeObject (json .get ("reviewSets" ), com . microsoft . graph . ediscovery . requests . ReviewSetCollectionPage .class );
227220 }
228221
229222 if (json .has ("sourceCollections" )) {
230- sourceCollections = serializer .deserializeObject (json .get ("sourceCollections" ), SourceCollectionCollectionPage .class );
223+ sourceCollections = serializer .deserializeObject (json .get ("sourceCollections" ), com . microsoft . graph . ediscovery . requests . SourceCollectionCollectionPage .class );
231224 }
232225
233226 if (json .has ("tags" )) {
234- tags = serializer .deserializeObject (json .get ("tags" ), TagCollectionPage .class );
227+ tags = serializer .deserializeObject (json .get ("tags" ), com . microsoft . graph . ediscovery . requests . TagCollectionPage .class );
235228 }
236229 }
237230}
0 commit comments