File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Templates/Java/requests_extensions Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 19
19
}
20
20
#>
21
21
22
+ import com.microsoft.graph.requests.extensions.<#=ITypeCollectionRequestBuilder(c)#>;
23
+ import com.microsoft.graph.requests.extensions.<#=TypeCollectionPage(c)#>;
24
+ import com.microsoft.graph.requests.extensions.<#=TypeCollectionResponse(c)#>;
25
+ <# if (ShouldIncludeCollectionTypeReference(c)) { #>
26
+ import com.microsoft.graph.models.<#=OdcmMethodReturnNamespaceSection(c as OdcmMethod)#>.<#=OdcmMethodReturnType(c as OdcmMethod)#>;
27
+ <# } #>
22
28
import com.google.gson.JsonObject;
23
- import com.google.gson.annotations.*;
29
+ import com.google.gson.annotations.SerializedName;
30
+ import com.google.gson.annotations.Expose;
31
+ import com.microsoft.graph.http.IBaseCollectionPage;
32
+ import com.microsoft.graph.http.BaseCollectionPage;
24
33
25
34
<#=CreateClassDef(TypeCollectionPage(c), "BaseCollectionPage" + CollectionPageGeneric(c), ITypeCollectionPage(c))#>
26
35
@@ -33,7 +42,7 @@ import com.google.gson.annotations.*;
33
42
34
43
<# } #>
35
44
/**
36
- * A collection page for <#=TypeName(c )#>.
45
+ * A collection page for <#=OdcmMethodReturnType(c as OdcmMethod )#>.
37
46
*
38
47
* @param response The serialized <#=TypeCollectionResponse(c)#> from the service
39
48
* @param builder The request builder for the next collection page
You can’t perform that action at this time.
0 commit comments