diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java index 618b1e575ae..c152532b652 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java @@ -106,6 +106,27 @@ public ICallRecordCollectionRequest top(final int value) { return (CallRecordCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICallRecordCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CallRecordCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICallRecordCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICallRecordCollectionRequest)this; + } public ICallRecordCollectionPage buildFromResponse(final CallRecordCollectionResponse response) { final ICallRecordCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java index cfe2e42a526..88bda68ddff 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java @@ -53,4 +53,20 @@ public interface ICallRecordCollectionRequest { */ ICallRecordCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICallRecordCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICallRecordCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java index 6640abe1574..25102d4c87d 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISegmentCollectionRequest { */ ISegmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISegmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISegmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java index 760ecebe82c..c84c639a2db 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISessionCollectionRequest { */ ISessionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISessionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISessionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java index 6db6e25de15..83f1f121987 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java @@ -106,6 +106,27 @@ public ISegmentCollectionRequest top(final int value) { return (SegmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISegmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SegmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISegmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISegmentCollectionRequest)this; + } public ISegmentCollectionPage buildFromResponse(final SegmentCollectionResponse response) { final ISegmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java index 99e407db479..36379fbc801 100644 --- a/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java @@ -106,6 +106,27 @@ public ISessionCollectionRequest top(final int value) { return (SessionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISessionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SessionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISessionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISessionCollectionRequest)this; + } public ISessionCollectionPage buildFromResponse(final SessionCollectionResponse response) { final ISessionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ActivityBasedTimeoutPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ActivityBasedTimeoutPolicyCollectionRequest.java index c4baaabe649..3f2a6988f86 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ActivityBasedTimeoutPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ActivityBasedTimeoutPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IActivityBasedTimeoutPolicyCollectionRequest top(final int value) { return (ActivityBasedTimeoutPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IActivityBasedTimeoutPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ActivityBasedTimeoutPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IActivityBasedTimeoutPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IActivityBasedTimeoutPolicyCollectionRequest)this; + } public IActivityBasedTimeoutPolicyCollectionPage buildFromResponse(final ActivityBasedTimeoutPolicyCollectionResponse response) { final IActivityBasedTimeoutPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ActivityHistoryItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ActivityHistoryItemCollectionRequest.java index ac8be85bb1d..9d26fb10d0a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ActivityHistoryItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ActivityHistoryItemCollectionRequest.java @@ -106,6 +106,27 @@ public IActivityHistoryItemCollectionRequest top(final int value) { return (ActivityHistoryItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IActivityHistoryItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ActivityHistoryItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IActivityHistoryItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IActivityHistoryItemCollectionRequest)this; + } public IActivityHistoryItemCollectionPage buildFromResponse(final ActivityHistoryItemCollectionResponse response) { final IActivityHistoryItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/AlertCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/AlertCollectionRequest.java index 9b250387b8d..f93d54127c8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/AlertCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/AlertCollectionRequest.java @@ -106,6 +106,27 @@ public IAlertCollectionRequest top(final int value) { return (AlertCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IAlertCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (AlertCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IAlertCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IAlertCollectionRequest)this; + } public IAlertCollectionPage buildFromResponse(final AlertCollectionResponse response) { final IAlertCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/AndroidManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/AndroidManagedAppProtectionCollectionRequest.java index 895505b7f2f..e4a12588070 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/AndroidManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/AndroidManagedAppProtectionCollectionRequest.java @@ -106,6 +106,27 @@ public IAndroidManagedAppProtectionCollectionRequest top(final int value) { return (AndroidManagedAppProtectionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IAndroidManagedAppProtectionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (AndroidManagedAppProtectionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IAndroidManagedAppProtectionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IAndroidManagedAppProtectionCollectionRequest)this; + } public IAndroidManagedAppProtectionCollectionPage buildFromResponse(final AndroidManagedAppProtectionCollectionResponse response) { final IAndroidManagedAppProtectionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/AppRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/AppRoleAssignmentCollectionRequest.java index 830079198b2..fbdb4342789 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/AppRoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/AppRoleAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IAppRoleAssignmentCollectionRequest top(final int value) { return (AppRoleAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IAppRoleAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (AppRoleAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IAppRoleAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IAppRoleAssignmentCollectionRequest)this; + } public IAppRoleAssignmentCollectionPage buildFromResponse(final AppRoleAssignmentCollectionResponse response) { final IAppRoleAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ApplicationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ApplicationCollectionRequest.java index 3273c2432eb..cfec19bbafd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ApplicationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ApplicationCollectionRequest.java @@ -107,6 +107,27 @@ public IApplicationCollectionRequest top(final int value) { return (ApplicationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IApplicationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ApplicationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IApplicationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IApplicationCollectionRequest)this; + } public IApplicationCollectionPage buildFromResponse(final ApplicationCollectionResponse response) { final IApplicationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/AttachmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/AttachmentCollectionRequest.java index 74786ee4f39..bcbb2424301 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/AttachmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/AttachmentCollectionRequest.java @@ -108,6 +108,27 @@ public IAttachmentCollectionRequest top(final int value) { return (AttachmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IAttachmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (AttachmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IAttachmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IAttachmentCollectionRequest)this; + } public IAttachmentCollectionPage buildFromResponse(final AttachmentCollectionResponse response) { final IAttachmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/BaseItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/BaseItemCollectionRequest.java index c87a1960068..35b4df954d9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/BaseItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/BaseItemCollectionRequest.java @@ -106,6 +106,27 @@ public IBaseItemCollectionRequest top(final int value) { return (BaseItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IBaseItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (BaseItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IBaseItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IBaseItemCollectionRequest)this; + } public IBaseItemCollectionPage buildFromResponse(final BaseItemCollectionResponse response) { final IBaseItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CalendarCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CalendarCollectionRequest.java index fa85a05f548..f5c7b6e2322 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CalendarCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CalendarCollectionRequest.java @@ -109,6 +109,27 @@ public ICalendarCollectionRequest top(final int value) { return (CalendarCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICalendarCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CalendarCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICalendarCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICalendarCollectionRequest)this; + } public ICalendarCollectionPage buildFromResponse(final CalendarCollectionResponse response) { final ICalendarCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CalendarGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CalendarGroupCollectionRequest.java index f73e0013fc7..89e8dc8f2c5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CalendarGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CalendarGroupCollectionRequest.java @@ -106,6 +106,27 @@ public ICalendarGroupCollectionRequest top(final int value) { return (CalendarGroupCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICalendarGroupCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CalendarGroupCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICalendarGroupCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICalendarGroupCollectionRequest)this; + } public ICalendarGroupCollectionPage buildFromResponse(final CalendarGroupCollectionResponse response) { final ICalendarGroupCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CalendarPermissionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CalendarPermissionCollectionRequest.java index b96159d0eca..961cb370454 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CalendarPermissionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CalendarPermissionCollectionRequest.java @@ -106,6 +106,27 @@ public ICalendarPermissionCollectionRequest top(final int value) { return (CalendarPermissionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICalendarPermissionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CalendarPermissionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICalendarPermissionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICalendarPermissionCollectionRequest)this; + } public ICalendarPermissionCollectionPage buildFromResponse(final CalendarPermissionCollectionResponse response) { final ICalendarPermissionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CallCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CallCollectionRequest.java index dbe043e6e55..a376f7eda2c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CallCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CallCollectionRequest.java @@ -121,6 +121,27 @@ public ICallCollectionRequest top(final int value) { return (CallCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICallCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CallCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICallCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICallCollectionRequest)this; + } public ICallCollectionPage buildFromResponse(final CallCollectionResponse response) { final ICallCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CertificateBasedAuthConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CertificateBasedAuthConfigurationCollectionRequest.java index 9ca528a9562..7e509b73e78 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CertificateBasedAuthConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CertificateBasedAuthConfigurationCollectionRequest.java @@ -105,6 +105,27 @@ public ICertificateBasedAuthConfigurationCollectionRequest top(final int value) return (CertificateBasedAuthConfigurationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICertificateBasedAuthConfigurationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CertificateBasedAuthConfigurationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICertificateBasedAuthConfigurationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICertificateBasedAuthConfigurationCollectionRequest)this; + } public ICertificateBasedAuthConfigurationCollectionPage buildFromResponse(final CertificateBasedAuthConfigurationCollectionResponse response) { final ICertificateBasedAuthConfigurationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ChannelCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ChannelCollectionRequest.java index 045687104ba..9c96db1bfa2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ChannelCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ChannelCollectionRequest.java @@ -106,6 +106,27 @@ public IChannelCollectionRequest top(final int value) { return (ChannelCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IChannelCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ChannelCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IChannelCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IChannelCollectionRequest)this; + } public IChannelCollectionPage buildFromResponse(final ChannelCollectionResponse response) { final IChannelCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageCollectionRequest.java index 62e37cee292..17005848095 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageCollectionRequest.java @@ -105,6 +105,27 @@ public IChatMessageCollectionRequest top(final int value) { return (ChatMessageCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IChatMessageCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ChatMessageCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IChatMessageCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IChatMessageCollectionRequest)this; + } public IChatMessageCollectionPage buildFromResponse(final ChatMessageCollectionResponse response) { final IChatMessageCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageHostedContentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageHostedContentCollectionRequest.java index 210ab4b098b..ebbbddc8cb0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageHostedContentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ChatMessageHostedContentCollectionRequest.java @@ -106,6 +106,27 @@ public IChatMessageHostedContentCollectionRequest top(final int value) { return (ChatMessageHostedContentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IChatMessageHostedContentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ChatMessageHostedContentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IChatMessageHostedContentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IChatMessageHostedContentCollectionRequest)this; + } public IChatMessageHostedContentCollectionPage buildFromResponse(final ChatMessageHostedContentCollectionResponse response) { final IChatMessageHostedContentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ClaimsMappingPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ClaimsMappingPolicyCollectionRequest.java index 2400ad9439f..5880dfaf1e1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ClaimsMappingPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ClaimsMappingPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IClaimsMappingPolicyCollectionRequest top(final int value) { return (ClaimsMappingPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IClaimsMappingPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ClaimsMappingPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IClaimsMappingPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IClaimsMappingPolicyCollectionRequest)this; + } public IClaimsMappingPolicyCollectionPage buildFromResponse(final ClaimsMappingPolicyCollectionResponse response) { final IClaimsMappingPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ColumnDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ColumnDefinitionCollectionRequest.java index 9042aacc79d..995f51bc234 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ColumnDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ColumnDefinitionCollectionRequest.java @@ -106,6 +106,27 @@ public IColumnDefinitionCollectionRequest top(final int value) { return (ColumnDefinitionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IColumnDefinitionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ColumnDefinitionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IColumnDefinitionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IColumnDefinitionCollectionRequest)this; + } public IColumnDefinitionCollectionPage buildFromResponse(final ColumnDefinitionCollectionResponse response) { final IColumnDefinitionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ColumnLinkCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ColumnLinkCollectionRequest.java index bb9f59e10e0..e4b0735aba4 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ColumnLinkCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ColumnLinkCollectionRequest.java @@ -106,6 +106,27 @@ public IColumnLinkCollectionRequest top(final int value) { return (ColumnLinkCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IColumnLinkCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ColumnLinkCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IColumnLinkCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IColumnLinkCollectionRequest)this; + } public IColumnLinkCollectionPage buildFromResponse(final ColumnLinkCollectionResponse response) { final IColumnLinkCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/CommsOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/CommsOperationCollectionRequest.java index 9c15128a0a7..c5c29cfd526 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/CommsOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/CommsOperationCollectionRequest.java @@ -106,6 +106,27 @@ public ICommsOperationCollectionRequest top(final int value) { return (CommsOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ICommsOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (CommsOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ICommsOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ICommsOperationCollectionRequest)this; + } public ICommsOperationCollectionPage buildFromResponse(final CommsOperationCollectionResponse response) { final ICommsOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ComplianceManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ComplianceManagementPartnerCollectionRequest.java index f31216bb6d3..7c2b144cff7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ComplianceManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ComplianceManagementPartnerCollectionRequest.java @@ -106,6 +106,27 @@ public IComplianceManagementPartnerCollectionRequest top(final int value) { return (ComplianceManagementPartnerCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IComplianceManagementPartnerCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ComplianceManagementPartnerCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IComplianceManagementPartnerCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IComplianceManagementPartnerCollectionRequest)this; + } public IComplianceManagementPartnerCollectionPage buildFromResponse(final ComplianceManagementPartnerCollectionResponse response) { final IComplianceManagementPartnerCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ConditionalAccessPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ConditionalAccessPolicyCollectionRequest.java index 043a2dd2d7d..9bc9a39b456 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ConditionalAccessPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ConditionalAccessPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IConditionalAccessPolicyCollectionRequest top(final int value) { return (ConditionalAccessPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IConditionalAccessPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ConditionalAccessPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IConditionalAccessPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IConditionalAccessPolicyCollectionRequest)this; + } public IConditionalAccessPolicyCollectionPage buildFromResponse(final ConditionalAccessPolicyCollectionResponse response) { final IConditionalAccessPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ContactCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ContactCollectionRequest.java index 185c6d023fe..2400bfca5ee 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ContactCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ContactCollectionRequest.java @@ -106,6 +106,27 @@ public IContactCollectionRequest top(final int value) { return (ContactCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IContactCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ContactCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IContactCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IContactCollectionRequest)this; + } public IContactCollectionPage buildFromResponse(final ContactCollectionResponse response) { final IContactCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ContactFolderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ContactFolderCollectionRequest.java index c2679b073f9..e9c64c7ec26 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ContactFolderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ContactFolderCollectionRequest.java @@ -105,6 +105,27 @@ public IContactFolderCollectionRequest top(final int value) { return (ContactFolderCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IContactFolderCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ContactFolderCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IContactFolderCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IContactFolderCollectionRequest)this; + } public IContactFolderCollectionPage buildFromResponse(final ContactFolderCollectionResponse response) { final IContactFolderCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ContentTypeCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ContentTypeCollectionRequest.java index 0984d5ed2c6..870166939bb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ContentTypeCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ContentTypeCollectionRequest.java @@ -106,6 +106,27 @@ public IContentTypeCollectionRequest top(final int value) { return (ContentTypeCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IContentTypeCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ContentTypeCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IContentTypeCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IContentTypeCollectionRequest)this; + } public IContentTypeCollectionPage buildFromResponse(final ContentTypeCollectionResponse response) { final IContentTypeCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ContractCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ContractCollectionRequest.java index 7bf367f00e7..228ab50f265 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ContractCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ContractCollectionRequest.java @@ -105,6 +105,27 @@ public IContractCollectionRequest top(final int value) { return (ContractCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IContractCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ContractCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IContractCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IContractCollectionRequest)this; + } public IContractCollectionPage buildFromResponse(final ContractCollectionResponse response) { final IContractCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ConversationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ConversationCollectionRequest.java index 40bd3acd656..4d9650a4172 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ConversationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ConversationCollectionRequest.java @@ -106,6 +106,27 @@ public IConversationCollectionRequest top(final int value) { return (ConversationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IConversationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ConversationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IConversationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IConversationCollectionRequest)this; + } public IConversationCollectionPage buildFromResponse(final ConversationCollectionResponse response) { final IConversationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ConversationMemberCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ConversationMemberCollectionRequest.java index c81915c80cf..8eecc981cda 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ConversationMemberCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ConversationMemberCollectionRequest.java @@ -106,6 +106,27 @@ public IConversationMemberCollectionRequest top(final int value) { return (ConversationMemberCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IConversationMemberCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ConversationMemberCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IConversationMemberCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IConversationMemberCollectionRequest)this; + } public IConversationMemberCollectionPage buildFromResponse(final ConversationMemberCollectionResponse response) { final IConversationMemberCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ConversationThreadCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ConversationThreadCollectionRequest.java index aa966aaa93f..d6f482fd923 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ConversationThreadCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ConversationThreadCollectionRequest.java @@ -107,6 +107,27 @@ public IConversationThreadCollectionRequest top(final int value) { return (ConversationThreadCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IConversationThreadCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ConversationThreadCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IConversationThreadCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IConversationThreadCollectionRequest)this; + } public IConversationThreadCollectionPage buildFromResponse(final ConversationThreadCollectionResponse response) { final IConversationThreadCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DataPolicyOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DataPolicyOperationCollectionRequest.java index d93dbe50533..a614088f6a7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DataPolicyOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DataPolicyOperationCollectionRequest.java @@ -105,6 +105,27 @@ public IDataPolicyOperationCollectionRequest top(final int value) { return (DataPolicyOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDataPolicyOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DataPolicyOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDataPolicyOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDataPolicyOperationCollectionRequest)this; + } public IDataPolicyOperationCollectionPage buildFromResponse(final DataPolicyOperationCollectionResponse response) { final IDataPolicyOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DefaultManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DefaultManagedAppProtectionCollectionRequest.java index c184fddb383..0b7076127f3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DefaultManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DefaultManagedAppProtectionCollectionRequest.java @@ -106,6 +106,27 @@ public IDefaultManagedAppProtectionCollectionRequest top(final int value) { return (DefaultManagedAppProtectionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDefaultManagedAppProtectionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DefaultManagedAppProtectionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDefaultManagedAppProtectionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDefaultManagedAppProtectionCollectionRequest)this; + } public IDefaultManagedAppProtectionCollectionPage buildFromResponse(final DefaultManagedAppProtectionCollectionResponse response) { final IDefaultManagedAppProtectionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DetectedAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DetectedAppCollectionRequest.java index 7e57cf1f2e2..f0be0fd605f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DetectedAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DetectedAppCollectionRequest.java @@ -106,6 +106,27 @@ public IDetectedAppCollectionRequest top(final int value) { return (DetectedAppCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDetectedAppCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DetectedAppCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDetectedAppCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDetectedAppCollectionRequest)this; + } public IDetectedAppCollectionPage buildFromResponse(final DetectedAppCollectionResponse response) { final IDetectedAppCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceAndAppManagementRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceAndAppManagementRoleAssignmentCollectionRequest.java index 6b4886d25dd..2a088f13da6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceAndAppManagementRoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceAndAppManagementRoleAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceAndAppManagementRoleAssignmentCollectionRequest top(final int valu return (DeviceAndAppManagementRoleAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceAndAppManagementRoleAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceAndAppManagementRoleAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceAndAppManagementRoleAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceAndAppManagementRoleAssignmentCollectionRequest)this; + } public IDeviceAndAppManagementRoleAssignmentCollectionPage buildFromResponse(final DeviceAndAppManagementRoleAssignmentCollectionResponse response) { final IDeviceAndAppManagementRoleAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCategoryCollectionRequest.java index 331a7b730d3..c39021b5da6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCategoryCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceCategoryCollectionRequest top(final int value) { return (DeviceCategoryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCategoryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCategoryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCategoryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCategoryCollectionRequest)this; + } public IDeviceCategoryCollectionPage buildFromResponse(final DeviceCategoryCollectionResponse response) { final IDeviceCategoryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCollectionRequest.java index adf49a7e5b0..9b053d0b8cd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCollectionRequest.java @@ -105,6 +105,27 @@ public IDeviceCollectionRequest top(final int value) { return (DeviceCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCollectionRequest)this; + } public IDeviceCollectionPage buildFromResponse(final DeviceCollectionResponse response) { final IDeviceCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceActionItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceActionItemCollectionRequest.java index 733ad5fb12c..58740173738 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceActionItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceActionItemCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceComplianceActionItemCollectionRequest top(final int value) { return (DeviceComplianceActionItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceComplianceActionItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceComplianceActionItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceComplianceActionItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceComplianceActionItemCollectionRequest)this; + } public IDeviceComplianceActionItemCollectionPage buildFromResponse(final DeviceComplianceActionItemCollectionResponse response) { final IDeviceComplianceActionItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceDeviceStatusCollectionRequest.java index cde10d1d294..cd5cd2041be 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceDeviceStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceComplianceDeviceStatusCollectionRequest top(final int value) { return (DeviceComplianceDeviceStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceComplianceDeviceStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceComplianceDeviceStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceComplianceDeviceStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceComplianceDeviceStatusCollectionRequest)this; + } public IDeviceComplianceDeviceStatusCollectionPage buildFromResponse(final DeviceComplianceDeviceStatusCollectionResponse response) { final IDeviceComplianceDeviceStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyAssignmentCollectionRequest.java index cc50d0c7d73..a4ced9eddd3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceCompliancePolicyAssignmentCollectionRequest top(final int value) { return (DeviceCompliancePolicyAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCompliancePolicyAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCompliancePolicyAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCompliancePolicyAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCompliancePolicyAssignmentCollectionRequest)this; + } public IDeviceCompliancePolicyAssignmentCollectionPage buildFromResponse(final DeviceCompliancePolicyAssignmentCollectionResponse response) { final IDeviceCompliancePolicyAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyCollectionRequest.java index 7382a548175..89096688216 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyCollectionRequest.java @@ -108,6 +108,27 @@ public IDeviceCompliancePolicyCollectionRequest top(final int value) { return (DeviceCompliancePolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCompliancePolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCompliancePolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCompliancePolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCompliancePolicyCollectionRequest)this; + } public IDeviceCompliancePolicyCollectionPage buildFromResponse(final DeviceCompliancePolicyCollectionResponse response) { final IDeviceCompliancePolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicySettingStateSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicySettingStateSummaryCollectionRequest.java index 21f69b43187..9075772907c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicySettingStateSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicySettingStateSummaryCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceCompliancePolicySettingStateSummaryCollectionRequest top(final int return (DeviceCompliancePolicySettingStateSummaryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCompliancePolicySettingStateSummaryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCompliancePolicySettingStateSummaryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCompliancePolicySettingStateSummaryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCompliancePolicySettingStateSummaryCollectionRequest)this; + } public IDeviceCompliancePolicySettingStateSummaryCollectionPage buildFromResponse(final DeviceCompliancePolicySettingStateSummaryCollectionResponse response) { final IDeviceCompliancePolicySettingStateSummaryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyStateCollectionRequest.java index 4ac0324f074..8c811d95376 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceCompliancePolicyStateCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceCompliancePolicyStateCollectionRequest top(final int value) { return (DeviceCompliancePolicyStateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceCompliancePolicyStateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceCompliancePolicyStateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceCompliancePolicyStateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceCompliancePolicyStateCollectionRequest)this; + } public IDeviceCompliancePolicyStateCollectionPage buildFromResponse(final DeviceCompliancePolicyStateCollectionResponse response) { final IDeviceCompliancePolicyStateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceScheduledActionForRuleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceScheduledActionForRuleCollectionRequest.java index 541d60c0c8b..a98b9803af5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceScheduledActionForRuleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceScheduledActionForRuleCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceComplianceScheduledActionForRuleCollectionRequest top(final int va return (DeviceComplianceScheduledActionForRuleCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceComplianceScheduledActionForRuleCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceComplianceScheduledActionForRuleCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceComplianceScheduledActionForRuleCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceComplianceScheduledActionForRuleCollectionRequest)this; + } public IDeviceComplianceScheduledActionForRuleCollectionPage buildFromResponse(final DeviceComplianceScheduledActionForRuleCollectionResponse response) { final IDeviceComplianceScheduledActionForRuleCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceSettingStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceSettingStateCollectionRequest.java index b4274775519..80c23e40b1a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceSettingStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceSettingStateCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceComplianceSettingStateCollectionRequest top(final int value) { return (DeviceComplianceSettingStateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceComplianceSettingStateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceComplianceSettingStateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceComplianceSettingStateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceComplianceSettingStateCollectionRequest)this; + } public IDeviceComplianceSettingStateCollectionPage buildFromResponse(final DeviceComplianceSettingStateCollectionResponse response) { final IDeviceComplianceSettingStateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceUserStatusCollectionRequest.java index 826a4bd28b0..e3fbf44c485 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceComplianceUserStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceComplianceUserStatusCollectionRequest top(final int value) { return (DeviceComplianceUserStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceComplianceUserStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceComplianceUserStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceComplianceUserStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceComplianceUserStatusCollectionRequest)this; + } public IDeviceComplianceUserStatusCollectionPage buildFromResponse(final DeviceComplianceUserStatusCollectionResponse response) { final IDeviceComplianceUserStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationAssignmentCollectionRequest.java index e04bcb318a8..3112469d462 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceConfigurationAssignmentCollectionRequest top(final int value) { return (DeviceConfigurationAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceConfigurationAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceConfigurationAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceConfigurationAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceConfigurationAssignmentCollectionRequest)this; + } public IDeviceConfigurationAssignmentCollectionPage buildFromResponse(final DeviceConfigurationAssignmentCollectionResponse response) { final IDeviceConfigurationAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationCollectionRequest.java index d320e155095..2dffed89261 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationCollectionRequest.java @@ -107,6 +107,27 @@ public IDeviceConfigurationCollectionRequest top(final int value) { return (DeviceConfigurationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceConfigurationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceConfigurationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceConfigurationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceConfigurationCollectionRequest)this; + } public IDeviceConfigurationCollectionPage buildFromResponse(final DeviceConfigurationCollectionResponse response) { final IDeviceConfigurationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationDeviceStatusCollectionRequest.java index dddf12d86e7..ca85a299582 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationDeviceStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceConfigurationDeviceStatusCollectionRequest top(final int value) { return (DeviceConfigurationDeviceStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceConfigurationDeviceStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceConfigurationDeviceStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceConfigurationDeviceStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceConfigurationDeviceStatusCollectionRequest)this; + } public IDeviceConfigurationDeviceStatusCollectionPage buildFromResponse(final DeviceConfigurationDeviceStatusCollectionResponse response) { final IDeviceConfigurationDeviceStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationStateCollectionRequest.java index ce16dd552dd..bd505cdcb08 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationStateCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceConfigurationStateCollectionRequest top(final int value) { return (DeviceConfigurationStateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceConfigurationStateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceConfigurationStateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceConfigurationStateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceConfigurationStateCollectionRequest)this; + } public IDeviceConfigurationStateCollectionPage buildFromResponse(final DeviceConfigurationStateCollectionResponse response) { final IDeviceConfigurationStateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationUserStatusCollectionRequest.java index 25264240fb7..e0dcf409540 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceConfigurationUserStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceConfigurationUserStatusCollectionRequest top(final int value) { return (DeviceConfigurationUserStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceConfigurationUserStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceConfigurationUserStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceConfigurationUserStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceConfigurationUserStatusCollectionRequest)this; + } public IDeviceConfigurationUserStatusCollectionPage buildFromResponse(final DeviceConfigurationUserStatusCollectionResponse response) { final IDeviceConfigurationUserStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceEnrollmentConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceEnrollmentConfigurationCollectionRequest.java index 7dfa52759d9..38c4531abd7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceEnrollmentConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceEnrollmentConfigurationCollectionRequest.java @@ -107,6 +107,27 @@ public IDeviceEnrollmentConfigurationCollectionRequest top(final int value) { return (DeviceEnrollmentConfigurationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceEnrollmentConfigurationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceEnrollmentConfigurationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceEnrollmentConfigurationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceEnrollmentConfigurationCollectionRequest)this; + } public IDeviceEnrollmentConfigurationCollectionPage buildFromResponse(final DeviceEnrollmentConfigurationCollectionResponse response) { final IDeviceEnrollmentConfigurationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceInstallStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceInstallStateCollectionRequest.java index a60d7ddd20f..278eafcd52e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceInstallStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceInstallStateCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceInstallStateCollectionRequest top(final int value) { return (DeviceInstallStateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceInstallStateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceInstallStateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceInstallStateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceInstallStateCollectionRequest)this; + } public IDeviceInstallStateCollectionPage buildFromResponse(final DeviceInstallStateCollectionResponse response) { final IDeviceInstallStateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementExchangeConnectorCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementExchangeConnectorCollectionRequest.java index 9633c61f57f..7f116fbef8d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementExchangeConnectorCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementExchangeConnectorCollectionRequest.java @@ -107,6 +107,27 @@ public IDeviceManagementExchangeConnectorCollectionRequest top(final int value) return (DeviceManagementExchangeConnectorCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceManagementExchangeConnectorCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceManagementExchangeConnectorCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceManagementExchangeConnectorCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceManagementExchangeConnectorCollectionRequest)this; + } public IDeviceManagementExchangeConnectorCollectionPage buildFromResponse(final DeviceManagementExchangeConnectorCollectionResponse response) { final IDeviceManagementExchangeConnectorCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementPartnerCollectionRequest.java index b17e15a7787..6856363a000 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementPartnerCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceManagementPartnerCollectionRequest top(final int value) { return (DeviceManagementPartnerCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceManagementPartnerCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceManagementPartnerCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceManagementPartnerCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceManagementPartnerCollectionRequest)this; + } public IDeviceManagementPartnerCollectionPage buildFromResponse(final DeviceManagementPartnerCollectionResponse response) { final IDeviceManagementPartnerCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementTroubleshootingEventCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementTroubleshootingEventCollectionRequest.java index e571965a9e8..f18c409922c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementTroubleshootingEventCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DeviceManagementTroubleshootingEventCollectionRequest.java @@ -106,6 +106,27 @@ public IDeviceManagementTroubleshootingEventCollectionRequest top(final int valu return (DeviceManagementTroubleshootingEventCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDeviceManagementTroubleshootingEventCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DeviceManagementTroubleshootingEventCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDeviceManagementTroubleshootingEventCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDeviceManagementTroubleshootingEventCollectionRequest)this; + } public IDeviceManagementTroubleshootingEventCollectionPage buildFromResponse(final DeviceManagementTroubleshootingEventCollectionResponse response) { final IDeviceManagementTroubleshootingEventCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryAuditCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryAuditCollectionRequest.java index 1a8a7b5fa9d..85a25d42542 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryAuditCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryAuditCollectionRequest.java @@ -106,6 +106,27 @@ public IDirectoryAuditCollectionRequest top(final int value) { return (DirectoryAuditCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDirectoryAuditCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DirectoryAuditCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDirectoryAuditCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDirectoryAuditCollectionRequest)this; + } public IDirectoryAuditCollectionPage buildFromResponse(final DirectoryAuditCollectionResponse response) { final IDirectoryAuditCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryObjectCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryObjectCollectionRequest.java index 783158c6ed1..9239086e28b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryObjectCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryObjectCollectionRequest.java @@ -106,6 +106,27 @@ public IDirectoryObjectCollectionRequest top(final int value) { return (DirectoryObjectCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDirectoryObjectCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DirectoryObjectCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDirectoryObjectCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDirectoryObjectCollectionRequest)this; + } public IDirectoryObjectCollectionPage buildFromResponse(final DirectoryObjectCollectionResponse response) { final IDirectoryObjectCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleCollectionRequest.java index eb25a0bc5ce..55257147d86 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleCollectionRequest.java @@ -105,6 +105,27 @@ public IDirectoryRoleCollectionRequest top(final int value) { return (DirectoryRoleCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDirectoryRoleCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DirectoryRoleCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDirectoryRoleCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDirectoryRoleCollectionRequest)this; + } public IDirectoryRoleCollectionPage buildFromResponse(final DirectoryRoleCollectionResponse response) { final IDirectoryRoleCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleTemplateCollectionRequest.java index 9ffeabe39df..a995bb880f5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DirectoryRoleTemplateCollectionRequest.java @@ -105,6 +105,27 @@ public IDirectoryRoleTemplateCollectionRequest top(final int value) { return (DirectoryRoleTemplateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDirectoryRoleTemplateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DirectoryRoleTemplateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDirectoryRoleTemplateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDirectoryRoleTemplateCollectionRequest)this; + } public IDirectoryRoleTemplateCollectionPage buildFromResponse(final DirectoryRoleTemplateCollectionResponse response) { final IDirectoryRoleTemplateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DomainCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DomainCollectionRequest.java index 2ea6cd3920c..a1d202a49aa 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DomainCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DomainCollectionRequest.java @@ -105,6 +105,27 @@ public IDomainCollectionRequest top(final int value) { return (DomainCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDomainCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DomainCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDomainCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDomainCollectionRequest)this; + } public IDomainCollectionPage buildFromResponse(final DomainCollectionResponse response) { final IDomainCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DomainDnsRecordCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DomainDnsRecordCollectionRequest.java index 8b2659656a6..88d7e1f48ce 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DomainDnsRecordCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DomainDnsRecordCollectionRequest.java @@ -105,6 +105,27 @@ public IDomainDnsRecordCollectionRequest top(final int value) { return (DomainDnsRecordCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDomainDnsRecordCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DomainDnsRecordCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDomainDnsRecordCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDomainDnsRecordCollectionRequest)this; + } public IDomainDnsRecordCollectionPage buildFromResponse(final DomainDnsRecordCollectionResponse response) { final IDomainDnsRecordCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DriveCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DriveCollectionRequest.java index f6d90eb901a..f6b7035594a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DriveCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DriveCollectionRequest.java @@ -106,6 +106,27 @@ public IDriveCollectionRequest top(final int value) { return (DriveCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDriveCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DriveCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDriveCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDriveCollectionRequest)this; + } public IDriveCollectionPage buildFromResponse(final DriveCollectionResponse response) { final IDriveCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DriveItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DriveItemCollectionRequest.java index eb53cd8f3c7..77ad091f70c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DriveItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DriveItemCollectionRequest.java @@ -112,6 +112,27 @@ public IDriveItemCollectionRequest top(final int value) { return (DriveItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDriveItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DriveItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDriveItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDriveItemCollectionRequest)this; + } public IDriveItemCollectionPage buildFromResponse(final DriveItemCollectionResponse response) { final IDriveItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/DriveItemVersionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/DriveItemVersionCollectionRequest.java index 02da3ec2c0e..5d44f879736 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/DriveItemVersionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/DriveItemVersionCollectionRequest.java @@ -106,6 +106,27 @@ public IDriveItemVersionCollectionRequest top(final int value) { return (DriveItemVersionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IDriveItemVersionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (DriveItemVersionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IDriveItemVersionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IDriveItemVersionCollectionRequest)this; + } public IDriveItemVersionCollectionPage buildFromResponse(final DriveItemVersionCollectionResponse response) { final IDriveItemVersionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EducationClassCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EducationClassCollectionRequest.java index 7fbcc70f93a..4063974044e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EducationClassCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EducationClassCollectionRequest.java @@ -106,6 +106,27 @@ public IEducationClassCollectionRequest top(final int value) { return (EducationClassCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEducationClassCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EducationClassCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEducationClassCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEducationClassCollectionRequest)this; + } public IEducationClassCollectionPage buildFromResponse(final EducationClassCollectionResponse response) { final IEducationClassCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EducationSchoolCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EducationSchoolCollectionRequest.java index e1973e94070..24577a1d3b2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EducationSchoolCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EducationSchoolCollectionRequest.java @@ -106,6 +106,27 @@ public IEducationSchoolCollectionRequest top(final int value) { return (EducationSchoolCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEducationSchoolCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EducationSchoolCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEducationSchoolCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEducationSchoolCollectionRequest)this; + } public IEducationSchoolCollectionPage buildFromResponse(final EducationSchoolCollectionResponse response) { final IEducationSchoolCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EducationUserCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EducationUserCollectionRequest.java index df0f5a2a356..90a462ca9ac 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EducationUserCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EducationUserCollectionRequest.java @@ -106,6 +106,27 @@ public IEducationUserCollectionRequest top(final int value) { return (EducationUserCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEducationUserCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EducationUserCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEducationUserCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEducationUserCollectionRequest)this; + } public IEducationUserCollectionPage buildFromResponse(final EducationUserCollectionResponse response) { final IEducationUserCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EndpointCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EndpointCollectionRequest.java index 378fe5561ad..ca465b4edc9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EndpointCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EndpointCollectionRequest.java @@ -106,6 +106,27 @@ public IEndpointCollectionRequest top(final int value) { return (EndpointCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEndpointCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EndpointCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEndpointCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEndpointCollectionRequest)this; + } public IEndpointCollectionPage buildFromResponse(final EndpointCollectionResponse response) { final IEndpointCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EnrollmentConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EnrollmentConfigurationAssignmentCollectionRequest.java index 06138ed7e3b..5fd9c892e8b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EnrollmentConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EnrollmentConfigurationAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IEnrollmentConfigurationAssignmentCollectionRequest top(final int value) return (EnrollmentConfigurationAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEnrollmentConfigurationAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EnrollmentConfigurationAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEnrollmentConfigurationAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEnrollmentConfigurationAssignmentCollectionRequest)this; + } public IEnrollmentConfigurationAssignmentCollectionPage buildFromResponse(final EnrollmentConfigurationAssignmentCollectionResponse response) { final IEnrollmentConfigurationAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/EventCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/EventCollectionRequest.java index b08958d534f..a387e3f9322 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/EventCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/EventCollectionRequest.java @@ -107,6 +107,27 @@ public IEventCollectionRequest top(final int value) { return (EventCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IEventCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (EventCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IEventCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IEventCollectionRequest)this; + } public IEventCollectionPage buildFromResponse(final EventCollectionResponse response) { final IEventCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ExtensionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ExtensionCollectionRequest.java index 84118af5093..e6b7f659fde 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ExtensionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ExtensionCollectionRequest.java @@ -106,6 +106,27 @@ public IExtensionCollectionRequest top(final int value) { return (ExtensionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IExtensionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ExtensionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IExtensionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IExtensionCollectionRequest)this; + } public IExtensionCollectionPage buildFromResponse(final ExtensionCollectionResponse response) { final IExtensionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ExtensionPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ExtensionPropertyCollectionRequest.java index 895178f9e75..1a2424084d5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ExtensionPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ExtensionPropertyCollectionRequest.java @@ -106,6 +106,27 @@ public IExtensionPropertyCollectionRequest top(final int value) { return (ExtensionPropertyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IExtensionPropertyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ExtensionPropertyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IExtensionPropertyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IExtensionPropertyCollectionRequest)this; + } public IExtensionPropertyCollectionPage buildFromResponse(final ExtensionPropertyCollectionResponse response) { final IExtensionPropertyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/GroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/GroupCollectionRequest.java index 98ae0b7db2c..0794f1571bd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/GroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/GroupCollectionRequest.java @@ -106,6 +106,27 @@ public IGroupCollectionRequest top(final int value) { return (GroupCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IGroupCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (GroupCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IGroupCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IGroupCollectionRequest)this; + } public IGroupCollectionPage buildFromResponse(final GroupCollectionResponse response) { final IGroupCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/GroupLifecyclePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/GroupLifecyclePolicyCollectionRequest.java index f73f8574110..c3984d14525 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/GroupLifecyclePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/GroupLifecyclePolicyCollectionRequest.java @@ -105,6 +105,27 @@ public IGroupLifecyclePolicyCollectionRequest top(final int value) { return (GroupLifecyclePolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IGroupLifecyclePolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (GroupLifecyclePolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IGroupLifecyclePolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IGroupLifecyclePolicyCollectionRequest)this; + } public IGroupLifecyclePolicyCollectionPage buildFromResponse(final GroupLifecyclePolicyCollectionResponse response) { final IGroupLifecyclePolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingCollectionRequest.java index a368600b045..bff8a7efc13 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingCollectionRequest.java @@ -105,6 +105,27 @@ public IGroupSettingCollectionRequest top(final int value) { return (GroupSettingCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IGroupSettingCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (GroupSettingCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IGroupSettingCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IGroupSettingCollectionRequest)this; + } public IGroupSettingCollectionPage buildFromResponse(final GroupSettingCollectionResponse response) { final IGroupSettingCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingTemplateCollectionRequest.java index 585874d09b3..292277cb300 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/GroupSettingTemplateCollectionRequest.java @@ -105,6 +105,27 @@ public IGroupSettingTemplateCollectionRequest top(final int value) { return (GroupSettingTemplateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IGroupSettingTemplateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (GroupSettingTemplateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IGroupSettingTemplateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IGroupSettingTemplateCollectionRequest)this; + } public IGroupSettingTemplateCollectionPage buildFromResponse(final GroupSettingTemplateCollectionResponse response) { final IGroupSettingTemplateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/HomeRealmDiscoveryPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/HomeRealmDiscoveryPolicyCollectionRequest.java index 14cd06c4443..b2c93a6584e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/HomeRealmDiscoveryPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/HomeRealmDiscoveryPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IHomeRealmDiscoveryPolicyCollectionRequest top(final int value) { return (HomeRealmDiscoveryPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IHomeRealmDiscoveryPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (HomeRealmDiscoveryPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IHomeRealmDiscoveryPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IHomeRealmDiscoveryPolicyCollectionRequest)this; + } public IHomeRealmDiscoveryPolicyCollectionPage buildFromResponse(final HomeRealmDiscoveryPolicyCollectionResponse response) { final IHomeRealmDiscoveryPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IActivityBasedTimeoutPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IActivityBasedTimeoutPolicyCollectionRequest.java index 372161d04e4..2f2dbf81a7b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IActivityBasedTimeoutPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IActivityBasedTimeoutPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IActivityBasedTimeoutPolicyCollectionRequest { */ IActivityBasedTimeoutPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IActivityBasedTimeoutPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IActivityBasedTimeoutPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IActivityHistoryItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IActivityHistoryItemCollectionRequest.java index 81e063c7b6a..28c7c2d0af4 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IActivityHistoryItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IActivityHistoryItemCollectionRequest.java @@ -53,4 +53,20 @@ public interface IActivityHistoryItemCollectionRequest { */ IActivityHistoryItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IActivityHistoryItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IActivityHistoryItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IAlertCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IAlertCollectionRequest.java index 6697902a9c4..40af34fa27b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IAlertCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IAlertCollectionRequest.java @@ -53,4 +53,20 @@ public interface IAlertCollectionRequest { */ IAlertCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IAlertCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IAlertCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IAndroidManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IAndroidManagedAppProtectionCollectionRequest.java index 000ac53fc53..2cbc5738a85 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IAndroidManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IAndroidManagedAppProtectionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IAndroidManagedAppProtectionCollectionRequest { */ IAndroidManagedAppProtectionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IAndroidManagedAppProtectionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IAndroidManagedAppProtectionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IAppRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IAppRoleAssignmentCollectionRequest.java index 237778558c5..1394eecd9d8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IAppRoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IAppRoleAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IAppRoleAssignmentCollectionRequest { */ IAppRoleAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IAppRoleAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IAppRoleAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IApplicationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IApplicationCollectionRequest.java index 9f2b7b045b1..8cd426a261d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IApplicationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IApplicationCollectionRequest.java @@ -54,4 +54,20 @@ public interface IApplicationCollectionRequest { */ IApplicationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IApplicationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IApplicationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IAttachmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IAttachmentCollectionRequest.java index 8d6bbf72ac5..02d6e237cfd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IAttachmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IAttachmentCollectionRequest.java @@ -55,4 +55,20 @@ public interface IAttachmentCollectionRequest { */ IAttachmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IAttachmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IAttachmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IBaseItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IBaseItemCollectionRequest.java index 98bda95c379..57093758379 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IBaseItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IBaseItemCollectionRequest.java @@ -53,4 +53,20 @@ public interface IBaseItemCollectionRequest { */ IBaseItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IBaseItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IBaseItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarCollectionRequest.java index abace0c54f1..c77e72ed4b9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarCollectionRequest.java @@ -56,4 +56,20 @@ public interface ICalendarCollectionRequest { */ ICalendarCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICalendarCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICalendarCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarGroupCollectionRequest.java index a54c4532a0d..92225fc04f3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarGroupCollectionRequest.java @@ -53,4 +53,20 @@ public interface ICalendarGroupCollectionRequest { */ ICalendarGroupCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICalendarGroupCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICalendarGroupCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarPermissionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarPermissionCollectionRequest.java index 69dd82a8101..1eb584899b1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICalendarPermissionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICalendarPermissionCollectionRequest.java @@ -53,4 +53,20 @@ public interface ICalendarPermissionCollectionRequest { */ ICalendarPermissionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICalendarPermissionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICalendarPermissionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICallCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICallCollectionRequest.java index 5444b79ca98..727a75ecac7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICallCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICallCollectionRequest.java @@ -68,4 +68,20 @@ public interface ICallCollectionRequest { */ ICallCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICallCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICallCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICertificateBasedAuthConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICertificateBasedAuthConfigurationCollectionRequest.java index 9373bd3f535..36e1e75670f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICertificateBasedAuthConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICertificateBasedAuthConfigurationCollectionRequest.java @@ -52,4 +52,20 @@ public interface ICertificateBasedAuthConfigurationCollectionRequest { */ ICertificateBasedAuthConfigurationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICertificateBasedAuthConfigurationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICertificateBasedAuthConfigurationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IChannelCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IChannelCollectionRequest.java index 1c50e99d907..16571ca204e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IChannelCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IChannelCollectionRequest.java @@ -53,4 +53,20 @@ public interface IChannelCollectionRequest { */ IChannelCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IChannelCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IChannelCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageCollectionRequest.java index fd43c4f29a1..48ae1e62101 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageCollectionRequest.java @@ -52,4 +52,20 @@ public interface IChatMessageCollectionRequest { */ IChatMessageCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IChatMessageCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IChatMessageCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageHostedContentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageHostedContentCollectionRequest.java index f60a97793f2..ff2037336f9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageHostedContentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IChatMessageHostedContentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IChatMessageHostedContentCollectionRequest { */ IChatMessageHostedContentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IChatMessageHostedContentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IChatMessageHostedContentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IClaimsMappingPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IClaimsMappingPolicyCollectionRequest.java index 8b930fec316..e080a31721d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IClaimsMappingPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IClaimsMappingPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IClaimsMappingPolicyCollectionRequest { */ IClaimsMappingPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IClaimsMappingPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IClaimsMappingPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IColumnDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IColumnDefinitionCollectionRequest.java index 9f7288f9145..13de354df01 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IColumnDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IColumnDefinitionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IColumnDefinitionCollectionRequest { */ IColumnDefinitionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IColumnDefinitionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IColumnDefinitionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IColumnLinkCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IColumnLinkCollectionRequest.java index 3201f22485b..56a248e19df 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IColumnLinkCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IColumnLinkCollectionRequest.java @@ -53,4 +53,20 @@ public interface IColumnLinkCollectionRequest { */ IColumnLinkCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IColumnLinkCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IColumnLinkCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ICommsOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ICommsOperationCollectionRequest.java index be8d51bef78..a7190079624 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ICommsOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ICommsOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface ICommsOperationCollectionRequest { */ ICommsOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ICommsOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ICommsOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IComplianceManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IComplianceManagementPartnerCollectionRequest.java index 62687db40b4..8035c3d9b86 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IComplianceManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IComplianceManagementPartnerCollectionRequest.java @@ -53,4 +53,20 @@ public interface IComplianceManagementPartnerCollectionRequest { */ IComplianceManagementPartnerCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IComplianceManagementPartnerCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IComplianceManagementPartnerCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IConditionalAccessPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IConditionalAccessPolicyCollectionRequest.java index f3084543fd3..beb6906226b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IConditionalAccessPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IConditionalAccessPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IConditionalAccessPolicyCollectionRequest { */ IConditionalAccessPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IConditionalAccessPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IConditionalAccessPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IContactCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IContactCollectionRequest.java index 8ad49dec574..339c2a51177 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IContactCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IContactCollectionRequest.java @@ -53,4 +53,20 @@ public interface IContactCollectionRequest { */ IContactCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IContactCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IContactCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IContactFolderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IContactFolderCollectionRequest.java index 009e941410c..e4fec477f91 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IContactFolderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IContactFolderCollectionRequest.java @@ -52,4 +52,20 @@ public interface IContactFolderCollectionRequest { */ IContactFolderCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IContactFolderCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IContactFolderCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IContentTypeCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IContentTypeCollectionRequest.java index 39f4713a8f3..2877098ee77 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IContentTypeCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IContentTypeCollectionRequest.java @@ -53,4 +53,20 @@ public interface IContentTypeCollectionRequest { */ IContentTypeCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IContentTypeCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IContentTypeCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IContractCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IContractCollectionRequest.java index 3ee46c8d0f6..3d795e0ae19 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IContractCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IContractCollectionRequest.java @@ -52,4 +52,20 @@ public interface IContractCollectionRequest { */ IContractCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IContractCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IContractCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IConversationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IConversationCollectionRequest.java index 71d946bb06d..b851b1e3e0e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IConversationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IConversationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IConversationCollectionRequest { */ IConversationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IConversationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IConversationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IConversationMemberCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IConversationMemberCollectionRequest.java index 6b3f65a24a6..a8e3220a242 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IConversationMemberCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IConversationMemberCollectionRequest.java @@ -53,4 +53,20 @@ public interface IConversationMemberCollectionRequest { */ IConversationMemberCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IConversationMemberCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IConversationMemberCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IConversationThreadCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IConversationThreadCollectionRequest.java index c31e2480c52..e05c508bb44 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IConversationThreadCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IConversationThreadCollectionRequest.java @@ -54,4 +54,20 @@ public interface IConversationThreadCollectionRequest { */ IConversationThreadCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IConversationThreadCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IConversationThreadCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDataPolicyOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDataPolicyOperationCollectionRequest.java index eae8a6f619a..6af3bb67d93 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDataPolicyOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDataPolicyOperationCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDataPolicyOperationCollectionRequest { */ IDataPolicyOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDataPolicyOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDataPolicyOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDefaultManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDefaultManagedAppProtectionCollectionRequest.java index 078c386bb0f..e077909bc79 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDefaultManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDefaultManagedAppProtectionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDefaultManagedAppProtectionCollectionRequest { */ IDefaultManagedAppProtectionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDefaultManagedAppProtectionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDefaultManagedAppProtectionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDetectedAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDetectedAppCollectionRequest.java index 117c0f5389e..8e222de4eec 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDetectedAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDetectedAppCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDetectedAppCollectionRequest { */ IDetectedAppCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDetectedAppCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDetectedAppCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceAndAppManagementRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceAndAppManagementRoleAssignmentCollectionRequest.java index 59bf10fb6c3..3012593d0b1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceAndAppManagementRoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceAndAppManagementRoleAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceAndAppManagementRoleAssignmentCollectionRequest { */ IDeviceAndAppManagementRoleAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceAndAppManagementRoleAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceAndAppManagementRoleAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCategoryCollectionRequest.java index ce87c932234..238f4c91e16 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCategoryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceCategoryCollectionRequest { */ IDeviceCategoryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCategoryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCategoryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCollectionRequest.java index 0f2b02cb0f5..03ab0e209c2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDeviceCollectionRequest { */ IDeviceCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceActionItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceActionItemCollectionRequest.java index 6028d52d952..9bc226383dd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceActionItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceActionItemCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceComplianceActionItemCollectionRequest { */ IDeviceComplianceActionItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceComplianceActionItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceComplianceActionItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceDeviceStatusCollectionRequest.java index b4167a68e7c..7fb8b02e142 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceDeviceStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceComplianceDeviceStatusCollectionRequest { */ IDeviceComplianceDeviceStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceComplianceDeviceStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceComplianceDeviceStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyAssignmentCollectionRequest.java index c0c53f7a741..fa82c9934c2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceCompliancePolicyAssignmentCollectionRequest { */ IDeviceCompliancePolicyAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCompliancePolicyAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCompliancePolicyAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyCollectionRequest.java index 22a36356742..5d2dd486b1f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyCollectionRequest.java @@ -55,4 +55,20 @@ public interface IDeviceCompliancePolicyCollectionRequest { */ IDeviceCompliancePolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCompliancePolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCompliancePolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicySettingStateSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicySettingStateSummaryCollectionRequest.java index 5bfa8fb54b2..d9cf7ed05b9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicySettingStateSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicySettingStateSummaryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceCompliancePolicySettingStateSummaryCollectionRequest { */ IDeviceCompliancePolicySettingStateSummaryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCompliancePolicySettingStateSummaryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCompliancePolicySettingStateSummaryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyStateCollectionRequest.java index de5a72fa1de..b8f5e241db8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceCompliancePolicyStateCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceCompliancePolicyStateCollectionRequest { */ IDeviceCompliancePolicyStateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceCompliancePolicyStateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceCompliancePolicyStateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceScheduledActionForRuleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceScheduledActionForRuleCollectionRequest.java index 173275ea45b..7a3d75eb83a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceScheduledActionForRuleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceScheduledActionForRuleCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceComplianceScheduledActionForRuleCollectionRequest { */ IDeviceComplianceScheduledActionForRuleCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceComplianceScheduledActionForRuleCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceComplianceScheduledActionForRuleCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceSettingStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceSettingStateCollectionRequest.java index 1e6c3e4ce37..4b66044d3bf 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceSettingStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceSettingStateCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceComplianceSettingStateCollectionRequest { */ IDeviceComplianceSettingStateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceComplianceSettingStateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceComplianceSettingStateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceUserStatusCollectionRequest.java index d2891b06bce..dade50a48e4 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceComplianceUserStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceComplianceUserStatusCollectionRequest { */ IDeviceComplianceUserStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceComplianceUserStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceComplianceUserStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationAssignmentCollectionRequest.java index d86eb7c7e23..87f505b87a1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceConfigurationAssignmentCollectionRequest { */ IDeviceConfigurationAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceConfigurationAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceConfigurationAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationCollectionRequest.java index 673fb456ba7..9f8f0eb14e2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationCollectionRequest.java @@ -54,4 +54,20 @@ public interface IDeviceConfigurationCollectionRequest { */ IDeviceConfigurationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceConfigurationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceConfigurationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationDeviceStatusCollectionRequest.java index 42ccd027a2e..eb5fcc1501c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationDeviceStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceConfigurationDeviceStatusCollectionRequest { */ IDeviceConfigurationDeviceStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceConfigurationDeviceStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceConfigurationDeviceStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationStateCollectionRequest.java index 933409fcef7..07c83afc1b0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationStateCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceConfigurationStateCollectionRequest { */ IDeviceConfigurationStateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceConfigurationStateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceConfigurationStateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationUserStatusCollectionRequest.java index e69ce26dc02..625257ea70a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceConfigurationUserStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceConfigurationUserStatusCollectionRequest { */ IDeviceConfigurationUserStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceConfigurationUserStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceConfigurationUserStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceEnrollmentConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceEnrollmentConfigurationCollectionRequest.java index ca2fcb71968..bdda2bf8d78 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceEnrollmentConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceEnrollmentConfigurationCollectionRequest.java @@ -54,4 +54,20 @@ public interface IDeviceEnrollmentConfigurationCollectionRequest { */ IDeviceEnrollmentConfigurationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceEnrollmentConfigurationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceEnrollmentConfigurationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceInstallStateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceInstallStateCollectionRequest.java index 7e6d8120601..1794763a8b8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceInstallStateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceInstallStateCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceInstallStateCollectionRequest { */ IDeviceInstallStateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceInstallStateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceInstallStateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementExchangeConnectorCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementExchangeConnectorCollectionRequest.java index b280aae55b1..28f78711e21 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementExchangeConnectorCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementExchangeConnectorCollectionRequest.java @@ -54,4 +54,20 @@ public interface IDeviceManagementExchangeConnectorCollectionRequest { */ IDeviceManagementExchangeConnectorCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceManagementExchangeConnectorCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceManagementExchangeConnectorCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementPartnerCollectionRequest.java index 4f03069cd6a..234c24817b5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementPartnerCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceManagementPartnerCollectionRequest { */ IDeviceManagementPartnerCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceManagementPartnerCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceManagementPartnerCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementTroubleshootingEventCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementTroubleshootingEventCollectionRequest.java index bc54ded3104..9914e43f1ee 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementTroubleshootingEventCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDeviceManagementTroubleshootingEventCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDeviceManagementTroubleshootingEventCollectionRequest { */ IDeviceManagementTroubleshootingEventCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDeviceManagementTroubleshootingEventCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDeviceManagementTroubleshootingEventCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryAuditCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryAuditCollectionRequest.java index 5797a442617..74c19219eda 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryAuditCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryAuditCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDirectoryAuditCollectionRequest { */ IDirectoryAuditCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDirectoryAuditCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDirectoryAuditCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryObjectCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryObjectCollectionRequest.java index 54230fcef4a..1348b6badb9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryObjectCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryObjectCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDirectoryObjectCollectionRequest { */ IDirectoryObjectCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDirectoryObjectCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDirectoryObjectCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleCollectionRequest.java index fd7a743e098..7a4f59f3bef 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDirectoryRoleCollectionRequest { */ IDirectoryRoleCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDirectoryRoleCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDirectoryRoleCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleTemplateCollectionRequest.java index a81c5910154..f710c310581 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDirectoryRoleTemplateCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDirectoryRoleTemplateCollectionRequest { */ IDirectoryRoleTemplateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDirectoryRoleTemplateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDirectoryRoleTemplateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDomainCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDomainCollectionRequest.java index 853dfb152be..a2cc746af1d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDomainCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDomainCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDomainCollectionRequest { */ IDomainCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDomainCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDomainCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDomainDnsRecordCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDomainDnsRecordCollectionRequest.java index 8ad98fa6226..c33f5438df8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDomainDnsRecordCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDomainDnsRecordCollectionRequest.java @@ -52,4 +52,20 @@ public interface IDomainDnsRecordCollectionRequest { */ IDomainDnsRecordCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDomainDnsRecordCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDomainDnsRecordCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDriveCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDriveCollectionRequest.java index 4f9553d6a0f..dedbc996bfa 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDriveCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDriveCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDriveCollectionRequest { */ IDriveCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDriveCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDriveCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemCollectionRequest.java index d0d7a0a17ac..e2d4a8bf012 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemCollectionRequest.java @@ -59,4 +59,20 @@ public interface IDriveItemCollectionRequest { */ IDriveItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDriveItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDriveItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemVersionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemVersionCollectionRequest.java index 4fb931d4278..210765c0574 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemVersionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IDriveItemVersionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IDriveItemVersionCollectionRequest { */ IDriveItemVersionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IDriveItemVersionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IDriveItemVersionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEducationClassCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEducationClassCollectionRequest.java index 6923a38d8d3..c38eb9d8ecb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEducationClassCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEducationClassCollectionRequest.java @@ -53,4 +53,20 @@ public interface IEducationClassCollectionRequest { */ IEducationClassCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEducationClassCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEducationClassCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEducationSchoolCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEducationSchoolCollectionRequest.java index 8bb9f13a5a3..37c8b422442 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEducationSchoolCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEducationSchoolCollectionRequest.java @@ -53,4 +53,20 @@ public interface IEducationSchoolCollectionRequest { */ IEducationSchoolCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEducationSchoolCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEducationSchoolCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEducationUserCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEducationUserCollectionRequest.java index 9f0a3c22175..dc90eb94f87 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEducationUserCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEducationUserCollectionRequest.java @@ -53,4 +53,20 @@ public interface IEducationUserCollectionRequest { */ IEducationUserCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEducationUserCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEducationUserCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEndpointCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEndpointCollectionRequest.java index 52fbf166496..85968c9244f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEndpointCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEndpointCollectionRequest.java @@ -53,4 +53,20 @@ public interface IEndpointCollectionRequest { */ IEndpointCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEndpointCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEndpointCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEnrollmentConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEnrollmentConfigurationAssignmentCollectionRequest.java index c3219eebd06..297b3a62fa9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEnrollmentConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEnrollmentConfigurationAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IEnrollmentConfigurationAssignmentCollectionRequest { */ IEnrollmentConfigurationAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEnrollmentConfigurationAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEnrollmentConfigurationAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IEventCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IEventCollectionRequest.java index 7dc9e877538..c2893ef038b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IEventCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IEventCollectionRequest.java @@ -54,4 +54,20 @@ public interface IEventCollectionRequest { */ IEventCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IEventCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IEventCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IExtensionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IExtensionCollectionRequest.java index 281af3ec344..2b48e00f2af 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IExtensionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IExtensionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IExtensionCollectionRequest { */ IExtensionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IExtensionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IExtensionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IExtensionPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IExtensionPropertyCollectionRequest.java index a960394923c..27697c52bb9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IExtensionPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IExtensionPropertyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IExtensionPropertyCollectionRequest { */ IExtensionPropertyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IExtensionPropertyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IExtensionPropertyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IGroupCollectionRequest.java index 07bb22c61d6..233e47dd6d2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IGroupCollectionRequest.java @@ -53,4 +53,20 @@ public interface IGroupCollectionRequest { */ IGroupCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IGroupCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IGroupCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IGroupLifecyclePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IGroupLifecyclePolicyCollectionRequest.java index 446470787c2..f1164e035f9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IGroupLifecyclePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IGroupLifecyclePolicyCollectionRequest.java @@ -52,4 +52,20 @@ public interface IGroupLifecyclePolicyCollectionRequest { */ IGroupLifecyclePolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IGroupLifecyclePolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IGroupLifecyclePolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingCollectionRequest.java index 1a3feeeed6a..09db36bae49 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingCollectionRequest.java @@ -52,4 +52,20 @@ public interface IGroupSettingCollectionRequest { */ IGroupSettingCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IGroupSettingCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IGroupSettingCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingTemplateCollectionRequest.java index 61a9b490af2..0ea0f24f894 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IGroupSettingTemplateCollectionRequest.java @@ -52,4 +52,20 @@ public interface IGroupSettingTemplateCollectionRequest { */ IGroupSettingTemplateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IGroupSettingTemplateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IGroupSettingTemplateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IHomeRealmDiscoveryPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IHomeRealmDiscoveryPolicyCollectionRequest.java index 9031f6af4a3..abb7b4975f3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IHomeRealmDiscoveryPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IHomeRealmDiscoveryPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IHomeRealmDiscoveryPolicyCollectionRequest { */ IHomeRealmDiscoveryPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IHomeRealmDiscoveryPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IHomeRealmDiscoveryPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IIdentityProviderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IIdentityProviderCollectionRequest.java index a8dfd8cae53..bf4949cd3e2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IIdentityProviderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IIdentityProviderCollectionRequest.java @@ -52,4 +52,20 @@ public interface IIdentityProviderCollectionRequest { */ IIdentityProviderCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IIdentityProviderCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IIdentityProviderCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IInferenceClassificationOverrideCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IInferenceClassificationOverrideCollectionRequest.java index 73235f4d11c..a85809a27fa 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IInferenceClassificationOverrideCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IInferenceClassificationOverrideCollectionRequest.java @@ -53,4 +53,20 @@ public interface IInferenceClassificationOverrideCollectionRequest { */ IInferenceClassificationOverrideCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IInferenceClassificationOverrideCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IInferenceClassificationOverrideCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IInvitationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IInvitationCollectionRequest.java index 467589f49f9..ee2db695e29 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IInvitationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IInvitationCollectionRequest.java @@ -52,4 +52,20 @@ public interface IInvitationCollectionRequest { */ IInvitationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IInvitationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IInvitationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IIosManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IIosManagedAppProtectionCollectionRequest.java index e359854def5..50361670d62 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IIosManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IIosManagedAppProtectionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IIosManagedAppProtectionCollectionRequest { */ IIosManagedAppProtectionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IIosManagedAppProtectionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IIosManagedAppProtectionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IIosUpdateDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IIosUpdateDeviceStatusCollectionRequest.java index 12c3720400e..51e097d2320 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IIosUpdateDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IIosUpdateDeviceStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IIosUpdateDeviceStatusCollectionRequest { */ IIosUpdateDeviceStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IIosUpdateDeviceStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IIosUpdateDeviceStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityCollectionRequest.java index 985100b26ca..112c4de05bc 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityCollectionRequest.java @@ -53,4 +53,20 @@ public interface IItemActivityCollectionRequest { */ IItemActivityCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IItemActivityCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IItemActivityCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityStatCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityStatCollectionRequest.java index 6af8f5921bc..b23269eef86 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityStatCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IItemActivityStatCollectionRequest.java @@ -53,4 +53,20 @@ public interface IItemActivityStatCollectionRequest { */ IItemActivityStatCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IItemActivityStatCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IItemActivityStatCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ILicenseDetailsCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ILicenseDetailsCollectionRequest.java index 5a04ae709bb..4a7b2137699 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ILicenseDetailsCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ILicenseDetailsCollectionRequest.java @@ -53,4 +53,20 @@ public interface ILicenseDetailsCollectionRequest { */ ILicenseDetailsCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ILicenseDetailsCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ILicenseDetailsCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IListCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IListCollectionRequest.java index 65a7e3551b1..13e68665505 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IListCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IListCollectionRequest.java @@ -53,4 +53,20 @@ public interface IListCollectionRequest { */ IListCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IListCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IListCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IListItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IListItemCollectionRequest.java index b3e6d17a7ef..d30a3f225fe 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IListItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IListItemCollectionRequest.java @@ -54,4 +54,20 @@ public interface IListItemCollectionRequest { */ IListItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IListItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IListItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IListItemVersionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IListItemVersionCollectionRequest.java index b020d8ec3f2..17a037c5a4a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IListItemVersionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IListItemVersionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IListItemVersionCollectionRequest { */ IListItemVersionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IListItemVersionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IListItemVersionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ILocalizedNotificationMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ILocalizedNotificationMessageCollectionRequest.java index cd05e4934aa..a3260ce9177 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ILocalizedNotificationMessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ILocalizedNotificationMessageCollectionRequest.java @@ -53,4 +53,20 @@ public interface ILocalizedNotificationMessageCollectionRequest { */ ILocalizedNotificationMessageCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ILocalizedNotificationMessageCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ILocalizedNotificationMessageCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMailFolderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMailFolderCollectionRequest.java index 389680adac0..9fa5f1b3bc7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMailFolderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMailFolderCollectionRequest.java @@ -52,4 +52,20 @@ public interface IMailFolderCollectionRequest { */ IMailFolderCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMailFolderCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMailFolderCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppOperationCollectionRequest.java index bf339c9d056..47d0a0c1394 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedAppOperationCollectionRequest { */ IManagedAppOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedAppOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedAppOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppPolicyCollectionRequest.java index 3f0235c6fa2..06dcf17c2d9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppPolicyCollectionRequest.java @@ -54,4 +54,20 @@ public interface IManagedAppPolicyCollectionRequest { */ IManagedAppPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedAppPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedAppPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppRegistrationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppRegistrationCollectionRequest.java index 1780264cc43..f92b2ca0105 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppRegistrationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppRegistrationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedAppRegistrationCollectionRequest { */ IManagedAppRegistrationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedAppRegistrationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedAppRegistrationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppStatusCollectionRequest.java index 81ed508e410..74018e8945b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedAppStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedAppStatusCollectionRequest { */ IManagedAppStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedAppStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedAppStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceCollectionRequest.java index f2cea3eaef4..e9adbc474a9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceCollectionRequest.java @@ -54,4 +54,20 @@ public interface IManagedDeviceCollectionRequest { */ IManagedDeviceCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedDeviceCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedDeviceCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java index ababf852f6c..be688a505e5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest */ IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationCollectionRequest.java index 63f8863ae30..6b28ae0ebbe 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationCollectionRequest.java @@ -54,4 +54,20 @@ public interface IManagedDeviceMobileAppConfigurationCollectionRequest { */ IManagedDeviceMobileAppConfigurationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java index a48c29a6c74..22f388f1a67 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedDeviceMobileAppConfigurationDeviceStatusCollectionReque */ IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java index 46195ecba40..a36b9b6a2bf 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest */ IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookAssignmentCollectionRequest.java index 38eed305032..0c271be59df 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedEBookAssignmentCollectionRequest { */ IManagedEBookAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedEBookAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedEBookAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookCollectionRequest.java index 2fde1385ecf..2e6d49158ae 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedEBookCollectionRequest.java @@ -54,4 +54,20 @@ public interface IManagedEBookCollectionRequest { */ IManagedEBookCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedEBookCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedEBookCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IManagedMobileAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IManagedMobileAppCollectionRequest.java index 131d95bbbef..3ea8040757a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IManagedMobileAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IManagedMobileAppCollectionRequest.java @@ -53,4 +53,20 @@ public interface IManagedMobileAppCollectionRequest { */ IManagedMobileAppCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IManagedMobileAppCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IManagedMobileAppCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMdmWindowsInformationProtectionPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMdmWindowsInformationProtectionPolicyCollectionRequest.java index 78b80ba98ed..e8ca8a2b01f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMdmWindowsInformationProtectionPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMdmWindowsInformationProtectionPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMdmWindowsInformationProtectionPolicyCollectionRequest { */ IMdmWindowsInformationProtectionPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMdmWindowsInformationProtectionPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMdmWindowsInformationProtectionPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMessageCollectionRequest.java index 288e0d2b426..f4d4456cbd8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMessageCollectionRequest.java @@ -54,4 +54,20 @@ public interface IMessageCollectionRequest { */ IMessageCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMessageCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMessageCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMessageRuleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMessageRuleCollectionRequest.java index 6a499cf6d5e..4701a1658e7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMessageRuleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMessageRuleCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMessageRuleCollectionRequest { */ IMessageRuleCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMessageRuleCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMessageRuleCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppAssignmentCollectionRequest.java index 7e648e5496a..f5fe1e8d955 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMobileAppAssignmentCollectionRequest { */ IMobileAppAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileAppAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileAppAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCategoryCollectionRequest.java index 657ba28c1d3..a64d3591c95 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCategoryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMobileAppCategoryCollectionRequest { */ IMobileAppCategoryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileAppCategoryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileAppCategoryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCollectionRequest.java index cb3f78c2048..220286a4de5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppCollectionRequest.java @@ -54,4 +54,20 @@ public interface IMobileAppCollectionRequest { */ IMobileAppCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileAppCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileAppCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentCollectionRequest.java index c75f0e1929a..cb0eec66b0a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMobileAppContentCollectionRequest { */ IMobileAppContentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileAppContentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileAppContentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentFileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentFileCollectionRequest.java index 15063c804aa..f94e673178b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentFileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileAppContentFileCollectionRequest.java @@ -54,4 +54,20 @@ public interface IMobileAppContentFileCollectionRequest { */ IMobileAppContentFileCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileAppContentFileCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileAppContentFileCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMobileThreatDefenseConnectorCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMobileThreatDefenseConnectorCollectionRequest.java index fb07b27ab4c..d362c1eff90 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMobileThreatDefenseConnectorCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMobileThreatDefenseConnectorCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMobileThreatDefenseConnectorCollectionRequest { */ IMobileThreatDefenseConnectorCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMobileThreatDefenseConnectorCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMobileThreatDefenseConnectorCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IMultiValueLegacyExtendedPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IMultiValueLegacyExtendedPropertyCollectionRequest.java index d3fd22ae117..2cf96e44386 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IMultiValueLegacyExtendedPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IMultiValueLegacyExtendedPropertyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IMultiValueLegacyExtendedPropertyCollectionRequest { */ IMultiValueLegacyExtendedPropertyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IMultiValueLegacyExtendedPropertyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IMultiValueLegacyExtendedPropertyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/INamedLocationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/INamedLocationCollectionRequest.java index 54a09f16425..4b5176430d9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/INamedLocationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/INamedLocationCollectionRequest.java @@ -53,4 +53,20 @@ public interface INamedLocationCollectionRequest { */ INamedLocationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + INamedLocationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + INamedLocationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/INotebookCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/INotebookCollectionRequest.java index 3f051183a01..f3c41b38382 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/INotebookCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/INotebookCollectionRequest.java @@ -56,4 +56,20 @@ public interface INotebookCollectionRequest { */ INotebookCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + INotebookCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + INotebookCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/INotificationMessageTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/INotificationMessageTemplateCollectionRequest.java index 42731d7ab17..9f263fe2b83 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/INotificationMessageTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/INotificationMessageTemplateCollectionRequest.java @@ -53,4 +53,20 @@ public interface INotificationMessageTemplateCollectionRequest { */ INotificationMessageTemplateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + INotificationMessageTemplateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + INotificationMessageTemplateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOAuth2PermissionGrantCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOAuth2PermissionGrantCollectionRequest.java index 030afca37ee..dc44ccde73c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOAuth2PermissionGrantCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOAuth2PermissionGrantCollectionRequest.java @@ -52,4 +52,20 @@ public interface IOAuth2PermissionGrantCollectionRequest { */ IOAuth2PermissionGrantCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOAuth2PermissionGrantCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOAuth2PermissionGrantCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOfferShiftRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOfferShiftRequestCollectionRequest.java index caf31b4e007..47fae1057d0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOfferShiftRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOfferShiftRequestCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOfferShiftRequestCollectionRequest { */ IOfferShiftRequestCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOfferShiftRequestCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOfferShiftRequestCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteOperationCollectionRequest.java index 1c9bacb9408..72fc8311748 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOnenoteOperationCollectionRequest { */ IOnenoteOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOnenoteOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOnenoteOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOnenotePageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOnenotePageCollectionRequest.java index 7693da9cf51..87d6dacf86c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOnenotePageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOnenotePageCollectionRequest.java @@ -56,4 +56,20 @@ public interface IOnenotePageCollectionRequest { */ IOnenotePageCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOnenotePageCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOnenotePageCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteResourceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteResourceCollectionRequest.java index f3945ca7552..c0344510b59 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteResourceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteResourceCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOnenoteResourceCollectionRequest { */ IOnenoteResourceCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOnenoteResourceCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOnenoteResourceCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteSectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteSectionCollectionRequest.java index e69e096b5c9..909435bdea3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteSectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOnenoteSectionCollectionRequest.java @@ -54,4 +54,20 @@ public interface IOnenoteSectionCollectionRequest { */ IOnenoteSectionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOnenoteSectionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOnenoteSectionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOnlineMeetingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOnlineMeetingCollectionRequest.java index a9d672a3789..c1abde397f1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOnlineMeetingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOnlineMeetingCollectionRequest.java @@ -55,4 +55,20 @@ public interface IOnlineMeetingCollectionRequest { */ IOnlineMeetingCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOnlineMeetingCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOnlineMeetingCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftChangeRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftChangeRequestCollectionRequest.java index a7160645dea..41d1c4e4357 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftChangeRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftChangeRequestCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOpenShiftChangeRequestCollectionRequest { */ IOpenShiftChangeRequestCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOpenShiftChangeRequestCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOpenShiftChangeRequestCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftCollectionRequest.java index 006a66b40ee..69497540273 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOpenShiftCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOpenShiftCollectionRequest { */ IOpenShiftCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOpenShiftCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOpenShiftCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOrgContactCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOrgContactCollectionRequest.java index 24199197445..3cbf4602329 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOrgContactCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOrgContactCollectionRequest.java @@ -52,4 +52,20 @@ public interface IOrgContactCollectionRequest { */ IOrgContactCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOrgContactCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOrgContactCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOrganizationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOrganizationCollectionRequest.java index ea431a031e4..68e1d3f621f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOrganizationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOrganizationCollectionRequest.java @@ -52,4 +52,20 @@ public interface IOrganizationCollectionRequest { */ IOrganizationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOrganizationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOrganizationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IOutlookCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IOutlookCategoryCollectionRequest.java index deb899bd00b..8a3394796f8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IOutlookCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IOutlookCategoryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IOutlookCategoryCollectionRequest { */ IOutlookCategoryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IOutlookCategoryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IOutlookCategoryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IParticipantCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IParticipantCollectionRequest.java index e6a26d9266f..73d677f6843 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IParticipantCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IParticipantCollectionRequest.java @@ -56,4 +56,20 @@ public interface IParticipantCollectionRequest { */ IParticipantCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IParticipantCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IParticipantCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPermissionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPermissionCollectionRequest.java index 61aae1e3a44..e301f357e11 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPermissionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPermissionCollectionRequest.java @@ -54,4 +54,20 @@ public interface IPermissionCollectionRequest { */ IPermissionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPermissionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPermissionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPersonCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPersonCollectionRequest.java index 2b5437591d9..da2fd34dedb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPersonCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPersonCollectionRequest.java @@ -53,4 +53,20 @@ public interface IPersonCollectionRequest { */ IPersonCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPersonCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPersonCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPlaceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPlaceCollectionRequest.java index c685494e58e..5a7a288f1f0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPlaceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPlaceCollectionRequest.java @@ -52,4 +52,20 @@ public interface IPlaceCollectionRequest { */ IPlaceCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPlaceCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPlaceCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerBucketCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerBucketCollectionRequest.java index 7170fb087dc..b045301982a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerBucketCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerBucketCollectionRequest.java @@ -53,4 +53,20 @@ public interface IPlannerBucketCollectionRequest { */ IPlannerBucketCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPlannerBucketCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPlannerBucketCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerPlanCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerPlanCollectionRequest.java index afff17b307e..dc76551e20c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerPlanCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerPlanCollectionRequest.java @@ -53,4 +53,20 @@ public interface IPlannerPlanCollectionRequest { */ IPlannerPlanCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPlannerPlanCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPlannerPlanCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerTaskCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerTaskCollectionRequest.java index 676a08cf59b..7f8743eb48b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPlannerTaskCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPlannerTaskCollectionRequest.java @@ -53,4 +53,20 @@ public interface IPlannerTaskCollectionRequest { */ IPlannerTaskCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPlannerTaskCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPlannerTaskCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IPostCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IPostCollectionRequest.java index 64a549a754d..6966a16d61b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IPostCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IPostCollectionRequest.java @@ -54,4 +54,20 @@ public interface IPostCollectionRequest { */ IPostCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IPostCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IPostCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IProfilePhotoCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IProfilePhotoCollectionRequest.java index 351924b2e14..f5afd1d1306 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IProfilePhotoCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IProfilePhotoCollectionRequest.java @@ -53,4 +53,20 @@ public interface IProfilePhotoCollectionRequest { */ IProfilePhotoCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IProfilePhotoCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IProfilePhotoCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IRemoteAssistancePartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IRemoteAssistancePartnerCollectionRequest.java index fa6015d3f2c..8ee462ebdce 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IRemoteAssistancePartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IRemoteAssistancePartnerCollectionRequest.java @@ -53,4 +53,20 @@ public interface IRemoteAssistancePartnerCollectionRequest { */ IRemoteAssistancePartnerCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IRemoteAssistancePartnerCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IRemoteAssistancePartnerCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IResourceOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IResourceOperationCollectionRequest.java index 61208e8c629..a354c711d9b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IResourceOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IResourceOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IResourceOperationCollectionRequest { */ IResourceOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IResourceOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IResourceOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IRestrictedSignInCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IRestrictedSignInCollectionRequest.java index b43f3d20aa7..be67c1eebd6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IRestrictedSignInCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IRestrictedSignInCollectionRequest.java @@ -53,4 +53,20 @@ public interface IRestrictedSignInCollectionRequest { */ IRestrictedSignInCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IRestrictedSignInCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IRestrictedSignInCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IRoleAssignmentCollectionRequest.java index 7ed24307c44..2d65cdfc648 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IRoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IRoleAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IRoleAssignmentCollectionRequest { */ IRoleAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IRoleAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IRoleAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IRoleDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IRoleDefinitionCollectionRequest.java index cec7f8715e5..dcb6b2db71b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IRoleDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IRoleDefinitionCollectionRequest.java @@ -53,4 +53,20 @@ public interface IRoleDefinitionCollectionRequest { */ IRoleDefinitionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IRoleDefinitionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IRoleDefinitionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IRoomCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IRoomCollectionRequest.java index 666d4d50c00..f3ca69ebe78 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IRoomCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IRoomCollectionRequest.java @@ -53,4 +53,20 @@ public interface IRoomCollectionRequest { */ IRoomCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IRoomCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IRoomCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISchedulingGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISchedulingGroupCollectionRequest.java index 14cf073914b..dc525a2172e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISchedulingGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISchedulingGroupCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISchedulingGroupCollectionRequest { */ ISchedulingGroupCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISchedulingGroupCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISchedulingGroupCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISchemaExtensionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISchemaExtensionCollectionRequest.java index d64b96a9613..3e6522b082e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISchemaExtensionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISchemaExtensionCollectionRequest.java @@ -52,4 +52,20 @@ public interface ISchemaExtensionCollectionRequest { */ ISchemaExtensionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISchemaExtensionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISchemaExtensionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISectionGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISectionGroupCollectionRequest.java index dc63933d268..3fab346697c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISectionGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISectionGroupCollectionRequest.java @@ -52,4 +52,20 @@ public interface ISectionGroupCollectionRequest { */ ISectionGroupCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISectionGroupCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISectionGroupCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreCollectionRequest.java index d94a5549163..790233462b8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISecureScoreCollectionRequest { */ ISecureScoreCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISecureScoreCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISecureScoreCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreControlProfileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreControlProfileCollectionRequest.java index e81408c4344..5427c7abcd4 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreControlProfileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISecureScoreControlProfileCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISecureScoreControlProfileCollectionRequest { */ ISecureScoreControlProfileCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISecureScoreControlProfileCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISecureScoreControlProfileCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IServicePrincipalCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IServicePrincipalCollectionRequest.java index fcb251336f3..61a591be3fe 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IServicePrincipalCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IServicePrincipalCollectionRequest.java @@ -54,4 +54,20 @@ public interface IServicePrincipalCollectionRequest { */ IServicePrincipalCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IServicePrincipalCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IServicePrincipalCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISettingStateDeviceSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISettingStateDeviceSummaryCollectionRequest.java index c2d3b41b25f..6dcca65ecc1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISettingStateDeviceSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISettingStateDeviceSummaryCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISettingStateDeviceSummaryCollectionRequest { */ ISettingStateDeviceSummaryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISettingStateDeviceSummaryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISettingStateDeviceSummaryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISharedDriveItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISharedDriveItemCollectionRequest.java index 4231400ec56..71e4b1b601d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISharedDriveItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISharedDriveItemCollectionRequest.java @@ -52,4 +52,20 @@ public interface ISharedDriveItemCollectionRequest { */ ISharedDriveItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISharedDriveItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISharedDriveItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISharedInsightCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISharedInsightCollectionRequest.java index 0e80e1de8b4..f5b3bc8dfe8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISharedInsightCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISharedInsightCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISharedInsightCollectionRequest { */ ISharedInsightCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISharedInsightCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISharedInsightCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IShiftCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IShiftCollectionRequest.java index 23254e96604..4bca4a5fe10 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IShiftCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IShiftCollectionRequest.java @@ -53,4 +53,20 @@ public interface IShiftCollectionRequest { */ IShiftCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IShiftCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IShiftCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISignInCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISignInCollectionRequest.java index 3ec511e9904..ba6b6af901f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISignInCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISignInCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISignInCollectionRequest { */ ISignInCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISignInCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISignInCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISingleValueLegacyExtendedPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISingleValueLegacyExtendedPropertyCollectionRequest.java index 2dd8184518b..a31a74a15d1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISingleValueLegacyExtendedPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISingleValueLegacyExtendedPropertyCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISingleValueLegacyExtendedPropertyCollectionRequest { */ ISingleValueLegacyExtendedPropertyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISingleValueLegacyExtendedPropertyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISingleValueLegacyExtendedPropertyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISiteCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISiteCollectionRequest.java index 34b5e3a47c6..733c8e6dab1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISiteCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISiteCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISiteCollectionRequest { */ ISiteCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISiteCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISiteCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISubscribedSkuCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISubscribedSkuCollectionRequest.java index b935216e164..755956c6a9f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISubscribedSkuCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISubscribedSkuCollectionRequest.java @@ -52,4 +52,20 @@ public interface ISubscribedSkuCollectionRequest { */ ISubscribedSkuCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISubscribedSkuCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISubscribedSkuCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISubscriptionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISubscriptionCollectionRequest.java index 6808a67b159..1dc1ed38f70 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISubscriptionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISubscriptionCollectionRequest.java @@ -52,4 +52,20 @@ public interface ISubscriptionCollectionRequest { */ ISubscriptionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISubscriptionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISubscriptionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ISwapShiftsChangeRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ISwapShiftsChangeRequestCollectionRequest.java index cdcf35acf92..9126c6d2d97 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ISwapShiftsChangeRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ISwapShiftsChangeRequestCollectionRequest.java @@ -53,4 +53,20 @@ public interface ISwapShiftsChangeRequestCollectionRequest { */ ISwapShiftsChangeRequestCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ISwapShiftsChangeRequestCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ISwapShiftsChangeRequestCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppConfigurationCollectionRequest.java index 6d9272de19a..349e8c2e588 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppConfigurationCollectionRequest.java @@ -55,4 +55,20 @@ public interface ITargetedManagedAppConfigurationCollectionRequest { */ ITargetedManagedAppConfigurationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITargetedManagedAppConfigurationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITargetedManagedAppConfigurationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppPolicyAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppPolicyAssignmentCollectionRequest.java index 22f06ccdf06..e77d30adc47 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppPolicyAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITargetedManagedAppPolicyAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITargetedManagedAppPolicyAssignmentCollectionRequest { */ ITargetedManagedAppPolicyAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITargetedManagedAppPolicyAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITargetedManagedAppPolicyAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamCollectionRequest.java index 195b912e4f2..d10dfd1b2cb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamCollectionRequest.java @@ -55,4 +55,20 @@ public interface ITeamCollectionRequest { */ ITeamCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppCollectionRequest.java index a2961f9a2ee..7af103e9fcf 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITeamsAppCollectionRequest { */ ITeamsAppCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsAppCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsAppCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppDefinitionCollectionRequest.java index 315dfea75fd..82e47bbed35 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppDefinitionCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITeamsAppDefinitionCollectionRequest { */ ITeamsAppDefinitionCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsAppDefinitionCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsAppDefinitionCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppInstallationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppInstallationCollectionRequest.java index 4b5450d91fc..6df4be93b5b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppInstallationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAppInstallationCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITeamsAppInstallationCollectionRequest { */ ITeamsAppInstallationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsAppInstallationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsAppInstallationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAsyncOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAsyncOperationCollectionRequest.java index 696987dd71f..23aeef5f751 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAsyncOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsAsyncOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITeamsAsyncOperationCollectionRequest { */ ITeamsAsyncOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsAsyncOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsAsyncOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTabCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTabCollectionRequest.java index 587ae8da4d0..961912feb90 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTabCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTabCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITeamsTabCollectionRequest { */ ITeamsTabCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsTabCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsTabCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTemplateCollectionRequest.java index af31113d500..792dfe55942 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITeamsTemplateCollectionRequest.java @@ -52,4 +52,20 @@ public interface ITeamsTemplateCollectionRequest { */ ITeamsTemplateCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITeamsTemplateCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITeamsTemplateCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITelecomExpenseManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITelecomExpenseManagementPartnerCollectionRequest.java index 9a899bb8d7f..f95db0551af 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITelecomExpenseManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITelecomExpenseManagementPartnerCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITelecomExpenseManagementPartnerCollectionRequest { */ ITelecomExpenseManagementPartnerCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITelecomExpenseManagementPartnerCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITelecomExpenseManagementPartnerCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAcceptanceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAcceptanceStatusCollectionRequest.java index 190ac78be21..85187ded36a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAcceptanceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAcceptanceStatusCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITermsAndConditionsAcceptanceStatusCollectionRequest { */ ITermsAndConditionsAcceptanceStatusCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITermsAndConditionsAcceptanceStatusCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITermsAndConditionsAcceptanceStatusCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAssignmentCollectionRequest.java index f888d18222a..3545b18acb2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsAssignmentCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITermsAndConditionsAssignmentCollectionRequest { */ ITermsAndConditionsAssignmentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITermsAndConditionsAssignmentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITermsAndConditionsAssignmentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsCollectionRequest.java index e8a8f02e758..c5bf878a288 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITermsAndConditionsCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITermsAndConditionsCollectionRequest { */ ITermsAndConditionsCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITermsAndConditionsCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITermsAndConditionsCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentRequestCollectionRequest.java index 766749a48f2..f2516e00fdf 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentRequestCollectionRequest.java @@ -53,4 +53,20 @@ public interface IThreatAssessmentRequestCollectionRequest { */ IThreatAssessmentRequestCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IThreatAssessmentRequestCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IThreatAssessmentRequestCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentResultCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentResultCollectionRequest.java index 785b542b0ac..d6f44b57ee5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentResultCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IThreatAssessmentResultCollectionRequest.java @@ -53,4 +53,20 @@ public interface IThreatAssessmentResultCollectionRequest { */ IThreatAssessmentResultCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IThreatAssessmentResultCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IThreatAssessmentResultCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IThumbnailSetCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IThumbnailSetCollectionRequest.java index 2a2a5cad3cc..69d7f1ac55f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IThumbnailSetCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IThumbnailSetCollectionRequest.java @@ -53,4 +53,20 @@ public interface IThumbnailSetCollectionRequest { */ IThumbnailSetCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IThumbnailSetCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IThumbnailSetCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffCollectionRequest.java index f1a94ad08b5..a713e4676b2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITimeOffCollectionRequest { */ ITimeOffCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITimeOffCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITimeOffCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffReasonCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffReasonCollectionRequest.java index b433572b552..720fd2b9bab 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffReasonCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffReasonCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITimeOffReasonCollectionRequest { */ ITimeOffReasonCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITimeOffReasonCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITimeOffReasonCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffRequestCollectionRequest.java index e2078f38223..b16170e8167 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITimeOffRequestCollectionRequest.java @@ -54,4 +54,20 @@ public interface ITimeOffRequestCollectionRequest { */ ITimeOffRequestCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITimeOffRequestCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITimeOffRequestCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITokenIssuancePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITokenIssuancePolicyCollectionRequest.java index f7061bc467c..d99c6e9bdc0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITokenIssuancePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITokenIssuancePolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITokenIssuancePolicyCollectionRequest { */ ITokenIssuancePolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITokenIssuancePolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITokenIssuancePolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITokenLifetimePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITokenLifetimePolicyCollectionRequest.java index f2222316768..381786f3412 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITokenLifetimePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITokenLifetimePolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITokenLifetimePolicyCollectionRequest { */ ITokenLifetimePolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITokenLifetimePolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITokenLifetimePolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ITrendingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ITrendingCollectionRequest.java index 5dddbe29b08..78145032c33 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ITrendingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ITrendingCollectionRequest.java @@ -53,4 +53,20 @@ public interface ITrendingCollectionRequest { */ ITrendingCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + ITrendingCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + ITrendingCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IUsedInsightCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IUsedInsightCollectionRequest.java index e4f2715007a..daf232e4eea 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IUsedInsightCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IUsedInsightCollectionRequest.java @@ -53,4 +53,20 @@ public interface IUsedInsightCollectionRequest { */ IUsedInsightCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IUsedInsightCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IUsedInsightCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IUserActivityCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IUserActivityCollectionRequest.java index 18de2f2d4ec..9ee0918f4cb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IUserActivityCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IUserActivityCollectionRequest.java @@ -53,4 +53,20 @@ public interface IUserActivityCollectionRequest { */ IUserActivityCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IUserActivityCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IUserActivityCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IUserCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IUserCollectionRequest.java index a4d4fd12663..131ab594596 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IUserCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IUserCollectionRequest.java @@ -66,4 +66,20 @@ public interface IUserCollectionRequest { */ IUserCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IUserCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IUserCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IUserInstallStateSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IUserInstallStateSummaryCollectionRequest.java index a81beab92f9..6c210658c74 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IUserInstallStateSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IUserInstallStateSummaryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IUserInstallStateSummaryCollectionRequest { */ IUserInstallStateSummaryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IUserInstallStateSummaryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IUserInstallStateSummaryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IVppTokenCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IVppTokenCollectionRequest.java index eb132e933e6..9af3bfd647d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IVppTokenCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IVppTokenCollectionRequest.java @@ -53,4 +53,20 @@ public interface IVppTokenCollectionRequest { */ IVppTokenCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IVppTokenCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IVppTokenCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLearningSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLearningSummaryCollectionRequest.java index ef92040c176..0d393f0d1f6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLearningSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLearningSummaryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWindowsInformationProtectionAppLearningSummaryCollectionReques */ IWindowsInformationProtectionAppLearningSummaryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWindowsInformationProtectionAppLearningSummaryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWindowsInformationProtectionAppLearningSummaryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLockerFileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLockerFileCollectionRequest.java index 8dc9ece1a9c..5eb3f9406c6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLockerFileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionAppLockerFileCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWindowsInformationProtectionAppLockerFileCollectionRequest { */ IWindowsInformationProtectionAppLockerFileCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWindowsInformationProtectionAppLockerFileCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWindowsInformationProtectionAppLockerFileCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java index 2f712cb9f29..aaa88cb3a61 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWindowsInformationProtectionNetworkLearningSummaryCollectionRe */ IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionPolicyCollectionRequest.java index f5133b432ac..602fc02cba6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWindowsInformationProtectionPolicyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWindowsInformationProtectionPolicyCollectionRequest { */ IWindowsInformationProtectionPolicyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWindowsInformationProtectionPolicyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWindowsInformationProtectionPolicyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartCollectionRequest.java index 876e1658405..39cc4dcc9fb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookChartCollectionRequest { */ IWorkbookChartCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookChartCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookChartCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartPointCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartPointCollectionRequest.java index f176063eaa6..368d058e354 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartPointCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartPointCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookChartPointCollectionRequest { */ IWorkbookChartPointCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookChartPointCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookChartPointCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartSeriesCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartSeriesCollectionRequest.java index 3c72c5a9ae1..e6c9881bb6d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartSeriesCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookChartSeriesCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookChartSeriesCollectionRequest { */ IWorkbookChartSeriesCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookChartSeriesCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookChartSeriesCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentCollectionRequest.java index b3cb72b258e..13699301161 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookCommentCollectionRequest { */ IWorkbookCommentCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookCommentCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookCommentCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentReplyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentReplyCollectionRequest.java index 7e873731d6b..fdfda887f3f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentReplyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookCommentReplyCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookCommentReplyCollectionRequest { */ IWorkbookCommentReplyCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookCommentReplyCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookCommentReplyCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookNamedItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookNamedItemCollectionRequest.java index 39ba5d9946a..ce9df6d2e6e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookNamedItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookNamedItemCollectionRequest.java @@ -54,4 +54,20 @@ public interface IWorkbookNamedItemCollectionRequest { */ IWorkbookNamedItemCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookNamedItemCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookNamedItemCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookOperationCollectionRequest.java index 37a520b0fd8..09d5d27e374 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookOperationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookOperationCollectionRequest { */ IWorkbookOperationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookOperationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookOperationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookPivotTableCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookPivotTableCollectionRequest.java index 794eca75d63..cf328c28307 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookPivotTableCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookPivotTableCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookPivotTableCollectionRequest { */ IWorkbookPivotTableCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookPivotTableCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookPivotTableCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeBorderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeBorderCollectionRequest.java index 6ba425150ea..722ade8e131 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeBorderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeBorderCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookRangeBorderCollectionRequest { */ IWorkbookRangeBorderCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookRangeBorderCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookRangeBorderCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeViewCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeViewCollectionRequest.java index 19d2b56a3e7..b4dad30dfc6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeViewCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookRangeViewCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkbookRangeViewCollectionRequest { */ IWorkbookRangeViewCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookRangeViewCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookRangeViewCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableCollectionRequest.java index e36fc3fbaec..8e36f811722 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableCollectionRequest.java @@ -54,4 +54,20 @@ public interface IWorkbookTableCollectionRequest { */ IWorkbookTableCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookTableCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookTableCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableColumnCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableColumnCollectionRequest.java index 13da0b13d0d..9536e09338e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableColumnCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableColumnCollectionRequest.java @@ -54,4 +54,20 @@ public interface IWorkbookTableColumnCollectionRequest { */ IWorkbookTableColumnCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookTableColumnCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookTableColumnCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableRowCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableRowCollectionRequest.java index edfb73663fb..39e649081d3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableRowCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookTableRowCollectionRequest.java @@ -54,4 +54,20 @@ public interface IWorkbookTableRowCollectionRequest { */ IWorkbookTableRowCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookTableRowCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookTableRowCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookWorksheetCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookWorksheetCollectionRequest.java index 454d218aeb2..293166244fd 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookWorksheetCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkbookWorksheetCollectionRequest.java @@ -54,4 +54,20 @@ public interface IWorkbookWorksheetCollectionRequest { */ IWorkbookWorksheetCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkbookWorksheetCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkbookWorksheetCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IWorkforceIntegrationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IWorkforceIntegrationCollectionRequest.java index 975185961cc..2c20d7452cb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IWorkforceIntegrationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IWorkforceIntegrationCollectionRequest.java @@ -53,4 +53,20 @@ public interface IWorkforceIntegrationCollectionRequest { */ IWorkforceIntegrationCollectionRequest top(final int value); + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + IWorkforceIntegrationCollectionRequest skip(final int value); + + /** + * Sets the skip token value for the request + * + * @param skipToken value for pagination + * + * @return the updated request + */ + IWorkforceIntegrationCollectionRequest skipToken(String skipToken); } diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IdentityProviderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IdentityProviderCollectionRequest.java index 7fd91b9d314..4d6bab92aed 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IdentityProviderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IdentityProviderCollectionRequest.java @@ -105,6 +105,27 @@ public IIdentityProviderCollectionRequest top(final int value) { return (IdentityProviderCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IIdentityProviderCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (IdentityProviderCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IIdentityProviderCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IIdentityProviderCollectionRequest)this; + } public IIdentityProviderCollectionPage buildFromResponse(final IdentityProviderCollectionResponse response) { final IIdentityProviderCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/InferenceClassificationOverrideCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/InferenceClassificationOverrideCollectionRequest.java index 8cf3b940524..777b035af32 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/InferenceClassificationOverrideCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/InferenceClassificationOverrideCollectionRequest.java @@ -106,6 +106,27 @@ public IInferenceClassificationOverrideCollectionRequest top(final int value) { return (InferenceClassificationOverrideCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IInferenceClassificationOverrideCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (InferenceClassificationOverrideCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IInferenceClassificationOverrideCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IInferenceClassificationOverrideCollectionRequest)this; + } public IInferenceClassificationOverrideCollectionPage buildFromResponse(final InferenceClassificationOverrideCollectionResponse response) { final IInferenceClassificationOverrideCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/InvitationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/InvitationCollectionRequest.java index 6d4f69b528a..cd5133fb69c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/InvitationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/InvitationCollectionRequest.java @@ -105,6 +105,27 @@ public IInvitationCollectionRequest top(final int value) { return (InvitationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IInvitationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (InvitationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IInvitationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IInvitationCollectionRequest)this; + } public IInvitationCollectionPage buildFromResponse(final InvitationCollectionResponse response) { final IInvitationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IosManagedAppProtectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IosManagedAppProtectionCollectionRequest.java index ee9ed5690de..57620242dd8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IosManagedAppProtectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IosManagedAppProtectionCollectionRequest.java @@ -106,6 +106,27 @@ public IIosManagedAppProtectionCollectionRequest top(final int value) { return (IosManagedAppProtectionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IIosManagedAppProtectionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (IosManagedAppProtectionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IIosManagedAppProtectionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IIosManagedAppProtectionCollectionRequest)this; + } public IIosManagedAppProtectionCollectionPage buildFromResponse(final IosManagedAppProtectionCollectionResponse response) { final IIosManagedAppProtectionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/IosUpdateDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/IosUpdateDeviceStatusCollectionRequest.java index 3b8766107a8..000452a1579 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/IosUpdateDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/IosUpdateDeviceStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IIosUpdateDeviceStatusCollectionRequest top(final int value) { return (IosUpdateDeviceStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IIosUpdateDeviceStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (IosUpdateDeviceStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IIosUpdateDeviceStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IIosUpdateDeviceStatusCollectionRequest)this; + } public IIosUpdateDeviceStatusCollectionPage buildFromResponse(final IosUpdateDeviceStatusCollectionResponse response) { final IIosUpdateDeviceStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityCollectionRequest.java index 2e1ad8fd650..163edc45b08 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityCollectionRequest.java @@ -106,6 +106,27 @@ public IItemActivityCollectionRequest top(final int value) { return (ItemActivityCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IItemActivityCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ItemActivityCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IItemActivityCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IItemActivityCollectionRequest)this; + } public IItemActivityCollectionPage buildFromResponse(final ItemActivityCollectionResponse response) { final IItemActivityCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityStatCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityStatCollectionRequest.java index 61748d831f8..870eb57b594 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityStatCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ItemActivityStatCollectionRequest.java @@ -106,6 +106,27 @@ public IItemActivityStatCollectionRequest top(final int value) { return (ItemActivityStatCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IItemActivityStatCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ItemActivityStatCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IItemActivityStatCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IItemActivityStatCollectionRequest)this; + } public IItemActivityStatCollectionPage buildFromResponse(final ItemActivityStatCollectionResponse response) { final IItemActivityStatCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/LicenseDetailsCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/LicenseDetailsCollectionRequest.java index 15f73cff4fd..1263081bfd5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/LicenseDetailsCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/LicenseDetailsCollectionRequest.java @@ -106,6 +106,27 @@ public ILicenseDetailsCollectionRequest top(final int value) { return (LicenseDetailsCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ILicenseDetailsCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (LicenseDetailsCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ILicenseDetailsCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ILicenseDetailsCollectionRequest)this; + } public ILicenseDetailsCollectionPage buildFromResponse(final LicenseDetailsCollectionResponse response) { final ILicenseDetailsCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ListCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ListCollectionRequest.java index e5696967581..62038694fb6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ListCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ListCollectionRequest.java @@ -106,6 +106,27 @@ public IListCollectionRequest top(final int value) { return (ListCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IListCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ListCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IListCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IListCollectionRequest)this; + } public IListCollectionPage buildFromResponse(final ListCollectionResponse response) { final IListCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ListItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ListItemCollectionRequest.java index 2de20d81da6..4a371cd93c2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ListItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ListItemCollectionRequest.java @@ -107,6 +107,27 @@ public IListItemCollectionRequest top(final int value) { return (ListItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IListItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ListItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IListItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IListItemCollectionRequest)this; + } public IListItemCollectionPage buildFromResponse(final ListItemCollectionResponse response) { final IListItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ListItemVersionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ListItemVersionCollectionRequest.java index 71058e54bf6..abb28e096bc 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ListItemVersionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ListItemVersionCollectionRequest.java @@ -106,6 +106,27 @@ public IListItemVersionCollectionRequest top(final int value) { return (ListItemVersionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IListItemVersionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ListItemVersionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IListItemVersionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IListItemVersionCollectionRequest)this; + } public IListItemVersionCollectionPage buildFromResponse(final ListItemVersionCollectionResponse response) { final IListItemVersionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/LocalizedNotificationMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/LocalizedNotificationMessageCollectionRequest.java index 1fffb37b367..f1d65c8782b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/LocalizedNotificationMessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/LocalizedNotificationMessageCollectionRequest.java @@ -106,6 +106,27 @@ public ILocalizedNotificationMessageCollectionRequest top(final int value) { return (LocalizedNotificationMessageCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ILocalizedNotificationMessageCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (LocalizedNotificationMessageCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ILocalizedNotificationMessageCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ILocalizedNotificationMessageCollectionRequest)this; + } public ILocalizedNotificationMessageCollectionPage buildFromResponse(final LocalizedNotificationMessageCollectionResponse response) { final ILocalizedNotificationMessageCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MailFolderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MailFolderCollectionRequest.java index a9423616fb7..fe483b86451 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MailFolderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MailFolderCollectionRequest.java @@ -105,6 +105,27 @@ public IMailFolderCollectionRequest top(final int value) { return (MailFolderCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMailFolderCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MailFolderCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMailFolderCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMailFolderCollectionRequest)this; + } public IMailFolderCollectionPage buildFromResponse(final MailFolderCollectionResponse response) { final IMailFolderCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppOperationCollectionRequest.java index 287f45ce4e8..9610b0a29b5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppOperationCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedAppOperationCollectionRequest top(final int value) { return (ManagedAppOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedAppOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedAppOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedAppOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedAppOperationCollectionRequest)this; + } public IManagedAppOperationCollectionPage buildFromResponse(final ManagedAppOperationCollectionResponse response) { final IManagedAppOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppPolicyCollectionRequest.java index 2b478dac23e..3c7ad79177c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppPolicyCollectionRequest.java @@ -107,6 +107,27 @@ public IManagedAppPolicyCollectionRequest top(final int value) { return (ManagedAppPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedAppPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedAppPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedAppPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedAppPolicyCollectionRequest)this; + } public IManagedAppPolicyCollectionPage buildFromResponse(final ManagedAppPolicyCollectionResponse response) { final IManagedAppPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppRegistrationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppRegistrationCollectionRequest.java index c89f6f68c00..32052cf3620 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppRegistrationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppRegistrationCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedAppRegistrationCollectionRequest top(final int value) { return (ManagedAppRegistrationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedAppRegistrationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedAppRegistrationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedAppRegistrationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedAppRegistrationCollectionRequest)this; + } public IManagedAppRegistrationCollectionPage buildFromResponse(final ManagedAppRegistrationCollectionResponse response) { final IManagedAppRegistrationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppStatusCollectionRequest.java index d957b0f94e6..f2c8f678430 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedAppStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedAppStatusCollectionRequest top(final int value) { return (ManagedAppStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedAppStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedAppStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedAppStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedAppStatusCollectionRequest)this; + } public IManagedAppStatusCollectionPage buildFromResponse(final ManagedAppStatusCollectionResponse response) { final IManagedAppStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceCollectionRequest.java index c2e1b060461..2939cd8adc7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceCollectionRequest.java @@ -107,6 +107,27 @@ public IManagedDeviceCollectionRequest top(final int value) { return (ManagedDeviceCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedDeviceCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedDeviceCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedDeviceCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedDeviceCollectionRequest)this; + } public IManagedDeviceCollectionPage buildFromResponse(final ManagedDeviceCollectionResponse response) { final IManagedDeviceCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java index a46c7ceb0b2..fce59d320d7 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest top(final return (ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedDeviceMobileAppConfigurationAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedDeviceMobileAppConfigurationAssignmentCollectionRequest)this; + } public IManagedDeviceMobileAppConfigurationAssignmentCollectionPage buildFromResponse(final ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse response) { final IManagedDeviceMobileAppConfigurationAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationCollectionRequest.java index ec06ba15d61..8a887dd2880 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationCollectionRequest.java @@ -107,6 +107,27 @@ public IManagedDeviceMobileAppConfigurationCollectionRequest top(final int value return (ManagedDeviceMobileAppConfigurationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedDeviceMobileAppConfigurationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedDeviceMobileAppConfigurationCollectionRequest)this; + } public IManagedDeviceMobileAppConfigurationCollectionPage buildFromResponse(final ManagedDeviceMobileAppConfigurationCollectionResponse response) { final IManagedDeviceMobileAppConfigurationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java index 54a4f228361..40e5946f44d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest top(fin return (ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequest)this; + } public IManagedDeviceMobileAppConfigurationDeviceStatusCollectionPage buildFromResponse(final ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse response) { final IManagedDeviceMobileAppConfigurationDeviceStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java index 77cb945ea16..6bfa3d18c59 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest top(final return (ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedDeviceMobileAppConfigurationUserStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedDeviceMobileAppConfigurationUserStatusCollectionRequest)this; + } public IManagedDeviceMobileAppConfigurationUserStatusCollectionPage buildFromResponse(final ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse response) { final IManagedDeviceMobileAppConfigurationUserStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookAssignmentCollectionRequest.java index 23623bdeae6..1ddbe64e8af 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedEBookAssignmentCollectionRequest top(final int value) { return (ManagedEBookAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedEBookAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedEBookAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedEBookAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedEBookAssignmentCollectionRequest)this; + } public IManagedEBookAssignmentCollectionPage buildFromResponse(final ManagedEBookAssignmentCollectionResponse response) { final IManagedEBookAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookCollectionRequest.java index cf1aed0fd21..9bfcb438d53 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedEBookCollectionRequest.java @@ -107,6 +107,27 @@ public IManagedEBookCollectionRequest top(final int value) { return (ManagedEBookCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedEBookCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedEBookCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedEBookCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedEBookCollectionRequest)this; + } public IManagedEBookCollectionPage buildFromResponse(final ManagedEBookCollectionResponse response) { final IManagedEBookCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ManagedMobileAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ManagedMobileAppCollectionRequest.java index 5722008c000..24ed43d6c77 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ManagedMobileAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ManagedMobileAppCollectionRequest.java @@ -106,6 +106,27 @@ public IManagedMobileAppCollectionRequest top(final int value) { return (ManagedMobileAppCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IManagedMobileAppCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ManagedMobileAppCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IManagedMobileAppCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IManagedMobileAppCollectionRequest)this; + } public IManagedMobileAppCollectionPage buildFromResponse(final ManagedMobileAppCollectionResponse response) { final IManagedMobileAppCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MdmWindowsInformationProtectionPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MdmWindowsInformationProtectionPolicyCollectionRequest.java index 3e80b330b83..662e2960630 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MdmWindowsInformationProtectionPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MdmWindowsInformationProtectionPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IMdmWindowsInformationProtectionPolicyCollectionRequest top(final int val return (MdmWindowsInformationProtectionPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMdmWindowsInformationProtectionPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MdmWindowsInformationProtectionPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMdmWindowsInformationProtectionPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMdmWindowsInformationProtectionPolicyCollectionRequest)this; + } public IMdmWindowsInformationProtectionPolicyCollectionPage buildFromResponse(final MdmWindowsInformationProtectionPolicyCollectionResponse response) { final IMdmWindowsInformationProtectionPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MessageCollectionRequest.java index ccf2bbf857f..51b42396f46 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MessageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MessageCollectionRequest.java @@ -107,6 +107,27 @@ public IMessageCollectionRequest top(final int value) { return (MessageCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMessageCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MessageCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMessageCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMessageCollectionRequest)this; + } public IMessageCollectionPage buildFromResponse(final MessageCollectionResponse response) { final IMessageCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MessageRuleCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MessageRuleCollectionRequest.java index c199a471fef..619ca29a348 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MessageRuleCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MessageRuleCollectionRequest.java @@ -106,6 +106,27 @@ public IMessageRuleCollectionRequest top(final int value) { return (MessageRuleCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMessageRuleCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MessageRuleCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMessageRuleCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMessageRuleCollectionRequest)this; + } public IMessageRuleCollectionPage buildFromResponse(final MessageRuleCollectionResponse response) { final IMessageRuleCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppAssignmentCollectionRequest.java index 10c35b4a03e..668c4f57ef1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IMobileAppAssignmentCollectionRequest top(final int value) { return (MobileAppAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileAppAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileAppAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileAppAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileAppAssignmentCollectionRequest)this; + } public IMobileAppAssignmentCollectionPage buildFromResponse(final MobileAppAssignmentCollectionResponse response) { final IMobileAppAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCategoryCollectionRequest.java index 34dd4d7fd65..98479307e2d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCategoryCollectionRequest.java @@ -106,6 +106,27 @@ public IMobileAppCategoryCollectionRequest top(final int value) { return (MobileAppCategoryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileAppCategoryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileAppCategoryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileAppCategoryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileAppCategoryCollectionRequest)this; + } public IMobileAppCategoryCollectionPage buildFromResponse(final MobileAppCategoryCollectionResponse response) { final IMobileAppCategoryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCollectionRequest.java index b7811182683..27ad0eca3ec 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppCollectionRequest.java @@ -107,6 +107,27 @@ public IMobileAppCollectionRequest top(final int value) { return (MobileAppCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileAppCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileAppCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileAppCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileAppCollectionRequest)this; + } public IMobileAppCollectionPage buildFromResponse(final MobileAppCollectionResponse response) { final IMobileAppCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentCollectionRequest.java index eb20803ed09..1e52b325276 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentCollectionRequest.java @@ -106,6 +106,27 @@ public IMobileAppContentCollectionRequest top(final int value) { return (MobileAppContentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileAppContentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileAppContentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileAppContentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileAppContentCollectionRequest)this; + } public IMobileAppContentCollectionPage buildFromResponse(final MobileAppContentCollectionResponse response) { final IMobileAppContentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentFileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentFileCollectionRequest.java index bb5d8a7bdf8..4d7e9fbe2a5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentFileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileAppContentFileCollectionRequest.java @@ -107,6 +107,27 @@ public IMobileAppContentFileCollectionRequest top(final int value) { return (MobileAppContentFileCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileAppContentFileCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileAppContentFileCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileAppContentFileCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileAppContentFileCollectionRequest)this; + } public IMobileAppContentFileCollectionPage buildFromResponse(final MobileAppContentFileCollectionResponse response) { final IMobileAppContentFileCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MobileThreatDefenseConnectorCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MobileThreatDefenseConnectorCollectionRequest.java index 2e7e3783d31..66fd3205f17 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MobileThreatDefenseConnectorCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MobileThreatDefenseConnectorCollectionRequest.java @@ -106,6 +106,27 @@ public IMobileThreatDefenseConnectorCollectionRequest top(final int value) { return (MobileThreatDefenseConnectorCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMobileThreatDefenseConnectorCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MobileThreatDefenseConnectorCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMobileThreatDefenseConnectorCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMobileThreatDefenseConnectorCollectionRequest)this; + } public IMobileThreatDefenseConnectorCollectionPage buildFromResponse(final MobileThreatDefenseConnectorCollectionResponse response) { final IMobileThreatDefenseConnectorCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/MultiValueLegacyExtendedPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/MultiValueLegacyExtendedPropertyCollectionRequest.java index c307f097387..c8cad34b118 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/MultiValueLegacyExtendedPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/MultiValueLegacyExtendedPropertyCollectionRequest.java @@ -106,6 +106,27 @@ public IMultiValueLegacyExtendedPropertyCollectionRequest top(final int value) { return (MultiValueLegacyExtendedPropertyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IMultiValueLegacyExtendedPropertyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (MultiValueLegacyExtendedPropertyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IMultiValueLegacyExtendedPropertyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IMultiValueLegacyExtendedPropertyCollectionRequest)this; + } public IMultiValueLegacyExtendedPropertyCollectionPage buildFromResponse(final MultiValueLegacyExtendedPropertyCollectionResponse response) { final IMultiValueLegacyExtendedPropertyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/NamedLocationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/NamedLocationCollectionRequest.java index 2477c1b0501..8c24ea3b010 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/NamedLocationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/NamedLocationCollectionRequest.java @@ -106,6 +106,27 @@ public INamedLocationCollectionRequest top(final int value) { return (NamedLocationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public INamedLocationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (NamedLocationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public INamedLocationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (INamedLocationCollectionRequest)this; + } public INamedLocationCollectionPage buildFromResponse(final NamedLocationCollectionResponse response) { final INamedLocationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/NotebookCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/NotebookCollectionRequest.java index b02fe89616c..7b964373c4e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/NotebookCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/NotebookCollectionRequest.java @@ -109,6 +109,27 @@ public INotebookCollectionRequest top(final int value) { return (NotebookCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public INotebookCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (NotebookCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public INotebookCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (INotebookCollectionRequest)this; + } public INotebookCollectionPage buildFromResponse(final NotebookCollectionResponse response) { final INotebookCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/NotificationMessageTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/NotificationMessageTemplateCollectionRequest.java index 9abaa86c265..8d338d9c46f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/NotificationMessageTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/NotificationMessageTemplateCollectionRequest.java @@ -106,6 +106,27 @@ public INotificationMessageTemplateCollectionRequest top(final int value) { return (NotificationMessageTemplateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public INotificationMessageTemplateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (NotificationMessageTemplateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public INotificationMessageTemplateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (INotificationMessageTemplateCollectionRequest)this; + } public INotificationMessageTemplateCollectionPage buildFromResponse(final NotificationMessageTemplateCollectionResponse response) { final INotificationMessageTemplateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OAuth2PermissionGrantCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OAuth2PermissionGrantCollectionRequest.java index 976e0e4b63c..353b8b754dc 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OAuth2PermissionGrantCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OAuth2PermissionGrantCollectionRequest.java @@ -105,6 +105,27 @@ public IOAuth2PermissionGrantCollectionRequest top(final int value) { return (OAuth2PermissionGrantCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOAuth2PermissionGrantCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OAuth2PermissionGrantCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOAuth2PermissionGrantCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOAuth2PermissionGrantCollectionRequest)this; + } public IOAuth2PermissionGrantCollectionPage buildFromResponse(final OAuth2PermissionGrantCollectionResponse response) { final IOAuth2PermissionGrantCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OfferShiftRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OfferShiftRequestCollectionRequest.java index b4127a10429..ba85344a807 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OfferShiftRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OfferShiftRequestCollectionRequest.java @@ -106,6 +106,27 @@ public IOfferShiftRequestCollectionRequest top(final int value) { return (OfferShiftRequestCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOfferShiftRequestCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OfferShiftRequestCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOfferShiftRequestCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOfferShiftRequestCollectionRequest)this; + } public IOfferShiftRequestCollectionPage buildFromResponse(final OfferShiftRequestCollectionResponse response) { final IOfferShiftRequestCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteOperationCollectionRequest.java index 82480d32cf6..16af38fc351 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteOperationCollectionRequest.java @@ -106,6 +106,27 @@ public IOnenoteOperationCollectionRequest top(final int value) { return (OnenoteOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOnenoteOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OnenoteOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOnenoteOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOnenoteOperationCollectionRequest)this; + } public IOnenoteOperationCollectionPage buildFromResponse(final OnenoteOperationCollectionResponse response) { final IOnenoteOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OnenotePageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OnenotePageCollectionRequest.java index a5ddcd18c5f..4f75de6b9e9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OnenotePageCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OnenotePageCollectionRequest.java @@ -109,6 +109,27 @@ public IOnenotePageCollectionRequest top(final int value) { return (OnenotePageCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOnenotePageCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OnenotePageCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOnenotePageCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOnenotePageCollectionRequest)this; + } public IOnenotePageCollectionPage buildFromResponse(final OnenotePageCollectionResponse response) { final IOnenotePageCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteResourceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteResourceCollectionRequest.java index 5379739eeee..c4478c512b9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteResourceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteResourceCollectionRequest.java @@ -106,6 +106,27 @@ public IOnenoteResourceCollectionRequest top(final int value) { return (OnenoteResourceCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOnenoteResourceCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OnenoteResourceCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOnenoteResourceCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOnenoteResourceCollectionRequest)this; + } public IOnenoteResourceCollectionPage buildFromResponse(final OnenoteResourceCollectionResponse response) { final IOnenoteResourceCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteSectionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteSectionCollectionRequest.java index b6bf4c82d96..80e3e6d01a0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OnenoteSectionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OnenoteSectionCollectionRequest.java @@ -107,6 +107,27 @@ public IOnenoteSectionCollectionRequest top(final int value) { return (OnenoteSectionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOnenoteSectionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OnenoteSectionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOnenoteSectionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOnenoteSectionCollectionRequest)this; + } public IOnenoteSectionCollectionPage buildFromResponse(final OnenoteSectionCollectionResponse response) { final IOnenoteSectionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OnlineMeetingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OnlineMeetingCollectionRequest.java index 2913bfb8af0..701086b5a3e 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OnlineMeetingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OnlineMeetingCollectionRequest.java @@ -108,6 +108,27 @@ public IOnlineMeetingCollectionRequest top(final int value) { return (OnlineMeetingCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOnlineMeetingCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OnlineMeetingCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOnlineMeetingCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOnlineMeetingCollectionRequest)this; + } public IOnlineMeetingCollectionPage buildFromResponse(final OnlineMeetingCollectionResponse response) { final IOnlineMeetingCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftChangeRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftChangeRequestCollectionRequest.java index f145dc89905..f8e5688050f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftChangeRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftChangeRequestCollectionRequest.java @@ -106,6 +106,27 @@ public IOpenShiftChangeRequestCollectionRequest top(final int value) { return (OpenShiftChangeRequestCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOpenShiftChangeRequestCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OpenShiftChangeRequestCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOpenShiftChangeRequestCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOpenShiftChangeRequestCollectionRequest)this; + } public IOpenShiftChangeRequestCollectionPage buildFromResponse(final OpenShiftChangeRequestCollectionResponse response) { final IOpenShiftChangeRequestCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftCollectionRequest.java index 072b7d2070e..abd3d163cd9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OpenShiftCollectionRequest.java @@ -106,6 +106,27 @@ public IOpenShiftCollectionRequest top(final int value) { return (OpenShiftCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOpenShiftCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OpenShiftCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOpenShiftCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOpenShiftCollectionRequest)this; + } public IOpenShiftCollectionPage buildFromResponse(final OpenShiftCollectionResponse response) { final IOpenShiftCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OrgContactCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OrgContactCollectionRequest.java index 1b1cea8e039..2286af1432b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OrgContactCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OrgContactCollectionRequest.java @@ -105,6 +105,27 @@ public IOrgContactCollectionRequest top(final int value) { return (OrgContactCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOrgContactCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OrgContactCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOrgContactCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOrgContactCollectionRequest)this; + } public IOrgContactCollectionPage buildFromResponse(final OrgContactCollectionResponse response) { final IOrgContactCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OrganizationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OrganizationCollectionRequest.java index 945e53c1a62..ea49fb142ee 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OrganizationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OrganizationCollectionRequest.java @@ -105,6 +105,27 @@ public IOrganizationCollectionRequest top(final int value) { return (OrganizationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOrganizationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OrganizationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOrganizationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOrganizationCollectionRequest)this; + } public IOrganizationCollectionPage buildFromResponse(final OrganizationCollectionResponse response) { final IOrganizationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/OutlookCategoryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/OutlookCategoryCollectionRequest.java index babc0004b50..c51e7c9317b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/OutlookCategoryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/OutlookCategoryCollectionRequest.java @@ -106,6 +106,27 @@ public IOutlookCategoryCollectionRequest top(final int value) { return (OutlookCategoryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IOutlookCategoryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (OutlookCategoryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IOutlookCategoryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IOutlookCategoryCollectionRequest)this; + } public IOutlookCategoryCollectionPage buildFromResponse(final OutlookCategoryCollectionResponse response) { final IOutlookCategoryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ParticipantCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ParticipantCollectionRequest.java index 4a5db186231..eb38ae5cbee 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ParticipantCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ParticipantCollectionRequest.java @@ -109,6 +109,27 @@ public IParticipantCollectionRequest top(final int value) { return (ParticipantCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IParticipantCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ParticipantCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IParticipantCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IParticipantCollectionRequest)this; + } public IParticipantCollectionPage buildFromResponse(final ParticipantCollectionResponse response) { final IParticipantCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PermissionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PermissionCollectionRequest.java index c1d75c30b14..37f1bbd666b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PermissionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PermissionCollectionRequest.java @@ -107,6 +107,27 @@ public IPermissionCollectionRequest top(final int value) { return (PermissionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPermissionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PermissionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPermissionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPermissionCollectionRequest)this; + } public IPermissionCollectionPage buildFromResponse(final PermissionCollectionResponse response) { final IPermissionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PersonCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PersonCollectionRequest.java index de45a4781ee..a6758f0a8da 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PersonCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PersonCollectionRequest.java @@ -106,6 +106,27 @@ public IPersonCollectionRequest top(final int value) { return (PersonCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPersonCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PersonCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPersonCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPersonCollectionRequest)this; + } public IPersonCollectionPage buildFromResponse(final PersonCollectionResponse response) { final IPersonCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PlaceCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PlaceCollectionRequest.java index ed7ea1fab6a..18eace0e9b2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PlaceCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PlaceCollectionRequest.java @@ -105,6 +105,27 @@ public IPlaceCollectionRequest top(final int value) { return (PlaceCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPlaceCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PlaceCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPlaceCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPlaceCollectionRequest)this; + } public IPlaceCollectionPage buildFromResponse(final PlaceCollectionResponse response) { final IPlaceCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PlannerBucketCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PlannerBucketCollectionRequest.java index d09085a6ce5..207e6647008 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PlannerBucketCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PlannerBucketCollectionRequest.java @@ -106,6 +106,27 @@ public IPlannerBucketCollectionRequest top(final int value) { return (PlannerBucketCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPlannerBucketCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PlannerBucketCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPlannerBucketCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPlannerBucketCollectionRequest)this; + } public IPlannerBucketCollectionPage buildFromResponse(final PlannerBucketCollectionResponse response) { final IPlannerBucketCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PlannerPlanCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PlannerPlanCollectionRequest.java index 3fa485481b6..578d140d592 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PlannerPlanCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PlannerPlanCollectionRequest.java @@ -106,6 +106,27 @@ public IPlannerPlanCollectionRequest top(final int value) { return (PlannerPlanCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPlannerPlanCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PlannerPlanCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPlannerPlanCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPlannerPlanCollectionRequest)this; + } public IPlannerPlanCollectionPage buildFromResponse(final PlannerPlanCollectionResponse response) { final IPlannerPlanCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PlannerTaskCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PlannerTaskCollectionRequest.java index 1dc70c9e74f..39081fc28b6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PlannerTaskCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PlannerTaskCollectionRequest.java @@ -106,6 +106,27 @@ public IPlannerTaskCollectionRequest top(final int value) { return (PlannerTaskCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPlannerTaskCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PlannerTaskCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPlannerTaskCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPlannerTaskCollectionRequest)this; + } public IPlannerTaskCollectionPage buildFromResponse(final PlannerTaskCollectionResponse response) { final IPlannerTaskCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/PostCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/PostCollectionRequest.java index 058049b1e02..3ac5689cc2b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/PostCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/PostCollectionRequest.java @@ -107,6 +107,27 @@ public IPostCollectionRequest top(final int value) { return (PostCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IPostCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (PostCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IPostCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IPostCollectionRequest)this; + } public IPostCollectionPage buildFromResponse(final PostCollectionResponse response) { final IPostCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ProfilePhotoCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ProfilePhotoCollectionRequest.java index c4bac280881..178f4ea3c09 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ProfilePhotoCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ProfilePhotoCollectionRequest.java @@ -106,6 +106,27 @@ public IProfilePhotoCollectionRequest top(final int value) { return (ProfilePhotoCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IProfilePhotoCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ProfilePhotoCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IProfilePhotoCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IProfilePhotoCollectionRequest)this; + } public IProfilePhotoCollectionPage buildFromResponse(final ProfilePhotoCollectionResponse response) { final IProfilePhotoCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/RemoteAssistancePartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/RemoteAssistancePartnerCollectionRequest.java index cc8cccefef2..0df2a68a01a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/RemoteAssistancePartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/RemoteAssistancePartnerCollectionRequest.java @@ -106,6 +106,27 @@ public IRemoteAssistancePartnerCollectionRequest top(final int value) { return (RemoteAssistancePartnerCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IRemoteAssistancePartnerCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (RemoteAssistancePartnerCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IRemoteAssistancePartnerCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IRemoteAssistancePartnerCollectionRequest)this; + } public IRemoteAssistancePartnerCollectionPage buildFromResponse(final RemoteAssistancePartnerCollectionResponse response) { final IRemoteAssistancePartnerCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ResourceOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ResourceOperationCollectionRequest.java index 292e6d0153d..7761fc9a0c9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ResourceOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ResourceOperationCollectionRequest.java @@ -106,6 +106,27 @@ public IResourceOperationCollectionRequest top(final int value) { return (ResourceOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IResourceOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ResourceOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IResourceOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IResourceOperationCollectionRequest)this; + } public IResourceOperationCollectionPage buildFromResponse(final ResourceOperationCollectionResponse response) { final IResourceOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/RestrictedSignInCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/RestrictedSignInCollectionRequest.java index 5703b7afa0c..a97872d60e0 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/RestrictedSignInCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/RestrictedSignInCollectionRequest.java @@ -106,6 +106,27 @@ public IRestrictedSignInCollectionRequest top(final int value) { return (RestrictedSignInCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IRestrictedSignInCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (RestrictedSignInCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IRestrictedSignInCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IRestrictedSignInCollectionRequest)this; + } public IRestrictedSignInCollectionPage buildFromResponse(final RestrictedSignInCollectionResponse response) { final IRestrictedSignInCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/RoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/RoleAssignmentCollectionRequest.java index 4f24ebd434e..8101fb25d3d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/RoleAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/RoleAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public IRoleAssignmentCollectionRequest top(final int value) { return (RoleAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IRoleAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (RoleAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IRoleAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IRoleAssignmentCollectionRequest)this; + } public IRoleAssignmentCollectionPage buildFromResponse(final RoleAssignmentCollectionResponse response) { final IRoleAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/RoleDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/RoleDefinitionCollectionRequest.java index 2fcd3556395..847dc2486a1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/RoleDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/RoleDefinitionCollectionRequest.java @@ -106,6 +106,27 @@ public IRoleDefinitionCollectionRequest top(final int value) { return (RoleDefinitionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IRoleDefinitionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (RoleDefinitionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IRoleDefinitionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IRoleDefinitionCollectionRequest)this; + } public IRoleDefinitionCollectionPage buildFromResponse(final RoleDefinitionCollectionResponse response) { final IRoleDefinitionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/RoomCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/RoomCollectionRequest.java index 8fcbc5b14ea..37661eba47d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/RoomCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/RoomCollectionRequest.java @@ -106,6 +106,27 @@ public IRoomCollectionRequest top(final int value) { return (RoomCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IRoomCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (RoomCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IRoomCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IRoomCollectionRequest)this; + } public IRoomCollectionPage buildFromResponse(final RoomCollectionResponse response) { final IRoomCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SchedulingGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SchedulingGroupCollectionRequest.java index d8128ae216c..a30be9b1c07 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SchedulingGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SchedulingGroupCollectionRequest.java @@ -106,6 +106,27 @@ public ISchedulingGroupCollectionRequest top(final int value) { return (SchedulingGroupCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISchedulingGroupCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SchedulingGroupCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISchedulingGroupCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISchedulingGroupCollectionRequest)this; + } public ISchedulingGroupCollectionPage buildFromResponse(final SchedulingGroupCollectionResponse response) { final ISchedulingGroupCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SchemaExtensionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SchemaExtensionCollectionRequest.java index 3f271024626..2eb4a473214 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SchemaExtensionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SchemaExtensionCollectionRequest.java @@ -105,6 +105,27 @@ public ISchemaExtensionCollectionRequest top(final int value) { return (SchemaExtensionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISchemaExtensionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SchemaExtensionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISchemaExtensionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISchemaExtensionCollectionRequest)this; + } public ISchemaExtensionCollectionPage buildFromResponse(final SchemaExtensionCollectionResponse response) { final ISchemaExtensionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SectionGroupCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SectionGroupCollectionRequest.java index 7d6cc10131c..ac8579f37f3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SectionGroupCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SectionGroupCollectionRequest.java @@ -105,6 +105,27 @@ public ISectionGroupCollectionRequest top(final int value) { return (SectionGroupCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISectionGroupCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SectionGroupCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISectionGroupCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISectionGroupCollectionRequest)this; + } public ISectionGroupCollectionPage buildFromResponse(final SectionGroupCollectionResponse response) { final ISectionGroupCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreCollectionRequest.java index 65f2a8bc466..f11b4429827 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreCollectionRequest.java @@ -106,6 +106,27 @@ public ISecureScoreCollectionRequest top(final int value) { return (SecureScoreCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISecureScoreCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SecureScoreCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISecureScoreCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISecureScoreCollectionRequest)this; + } public ISecureScoreCollectionPage buildFromResponse(final SecureScoreCollectionResponse response) { final ISecureScoreCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreControlProfileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreControlProfileCollectionRequest.java index 0bb1c63c210..67e1c96ac53 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreControlProfileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SecureScoreControlProfileCollectionRequest.java @@ -106,6 +106,27 @@ public ISecureScoreControlProfileCollectionRequest top(final int value) { return (SecureScoreControlProfileCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISecureScoreControlProfileCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SecureScoreControlProfileCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISecureScoreControlProfileCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISecureScoreControlProfileCollectionRequest)this; + } public ISecureScoreControlProfileCollectionPage buildFromResponse(final SecureScoreControlProfileCollectionResponse response) { final ISecureScoreControlProfileCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ServicePrincipalCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ServicePrincipalCollectionRequest.java index dced52cf16f..edbe4c11030 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ServicePrincipalCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ServicePrincipalCollectionRequest.java @@ -107,6 +107,27 @@ public IServicePrincipalCollectionRequest top(final int value) { return (ServicePrincipalCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IServicePrincipalCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ServicePrincipalCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IServicePrincipalCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IServicePrincipalCollectionRequest)this; + } public IServicePrincipalCollectionPage buildFromResponse(final ServicePrincipalCollectionResponse response) { final IServicePrincipalCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SettingStateDeviceSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SettingStateDeviceSummaryCollectionRequest.java index f91378c68a3..42d99f11040 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SettingStateDeviceSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SettingStateDeviceSummaryCollectionRequest.java @@ -106,6 +106,27 @@ public ISettingStateDeviceSummaryCollectionRequest top(final int value) { return (SettingStateDeviceSummaryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISettingStateDeviceSummaryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SettingStateDeviceSummaryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISettingStateDeviceSummaryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISettingStateDeviceSummaryCollectionRequest)this; + } public ISettingStateDeviceSummaryCollectionPage buildFromResponse(final SettingStateDeviceSummaryCollectionResponse response) { final ISettingStateDeviceSummaryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SharedDriveItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SharedDriveItemCollectionRequest.java index 860bfabe2ab..a1374cd5d3b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SharedDriveItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SharedDriveItemCollectionRequest.java @@ -105,6 +105,27 @@ public ISharedDriveItemCollectionRequest top(final int value) { return (SharedDriveItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISharedDriveItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SharedDriveItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISharedDriveItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISharedDriveItemCollectionRequest)this; + } public ISharedDriveItemCollectionPage buildFromResponse(final SharedDriveItemCollectionResponse response) { final ISharedDriveItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SharedInsightCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SharedInsightCollectionRequest.java index bee8a3cce29..dcc4ce6b467 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SharedInsightCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SharedInsightCollectionRequest.java @@ -106,6 +106,27 @@ public ISharedInsightCollectionRequest top(final int value) { return (SharedInsightCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISharedInsightCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SharedInsightCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISharedInsightCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISharedInsightCollectionRequest)this; + } public ISharedInsightCollectionPage buildFromResponse(final SharedInsightCollectionResponse response) { final ISharedInsightCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ShiftCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ShiftCollectionRequest.java index 795dabfd54d..3ebfb9d6f2f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ShiftCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ShiftCollectionRequest.java @@ -106,6 +106,27 @@ public IShiftCollectionRequest top(final int value) { return (ShiftCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IShiftCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ShiftCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IShiftCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IShiftCollectionRequest)this; + } public IShiftCollectionPage buildFromResponse(final ShiftCollectionResponse response) { final IShiftCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SignInCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SignInCollectionRequest.java index 5323b45e2ac..453e7bd5d5b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SignInCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SignInCollectionRequest.java @@ -106,6 +106,27 @@ public ISignInCollectionRequest top(final int value) { return (SignInCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISignInCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SignInCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISignInCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISignInCollectionRequest)this; + } public ISignInCollectionPage buildFromResponse(final SignInCollectionResponse response) { final ISignInCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SingleValueLegacyExtendedPropertyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SingleValueLegacyExtendedPropertyCollectionRequest.java index 2336e410a0c..8036039241b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SingleValueLegacyExtendedPropertyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SingleValueLegacyExtendedPropertyCollectionRequest.java @@ -106,6 +106,27 @@ public ISingleValueLegacyExtendedPropertyCollectionRequest top(final int value) return (SingleValueLegacyExtendedPropertyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISingleValueLegacyExtendedPropertyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SingleValueLegacyExtendedPropertyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISingleValueLegacyExtendedPropertyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISingleValueLegacyExtendedPropertyCollectionRequest)this; + } public ISingleValueLegacyExtendedPropertyCollectionPage buildFromResponse(final SingleValueLegacyExtendedPropertyCollectionResponse response) { final ISingleValueLegacyExtendedPropertyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SiteCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SiteCollectionRequest.java index 1b4e6f8a924..0e03d0ae517 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SiteCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SiteCollectionRequest.java @@ -106,6 +106,27 @@ public ISiteCollectionRequest top(final int value) { return (SiteCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISiteCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SiteCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISiteCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISiteCollectionRequest)this; + } public ISiteCollectionPage buildFromResponse(final SiteCollectionResponse response) { final ISiteCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SubscribedSkuCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SubscribedSkuCollectionRequest.java index c25d2875354..ee0a761c8d6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SubscribedSkuCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SubscribedSkuCollectionRequest.java @@ -105,6 +105,27 @@ public ISubscribedSkuCollectionRequest top(final int value) { return (SubscribedSkuCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISubscribedSkuCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SubscribedSkuCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISubscribedSkuCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISubscribedSkuCollectionRequest)this; + } public ISubscribedSkuCollectionPage buildFromResponse(final SubscribedSkuCollectionResponse response) { final ISubscribedSkuCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SubscriptionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SubscriptionCollectionRequest.java index bbcd4c78148..f9b2facefb5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SubscriptionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SubscriptionCollectionRequest.java @@ -105,6 +105,27 @@ public ISubscriptionCollectionRequest top(final int value) { return (SubscriptionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISubscriptionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SubscriptionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISubscriptionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISubscriptionCollectionRequest)this; + } public ISubscriptionCollectionPage buildFromResponse(final SubscriptionCollectionResponse response) { final ISubscriptionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/SwapShiftsChangeRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/SwapShiftsChangeRequestCollectionRequest.java index d776859d2d4..f8b87b3c0ed 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/SwapShiftsChangeRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/SwapShiftsChangeRequestCollectionRequest.java @@ -106,6 +106,27 @@ public ISwapShiftsChangeRequestCollectionRequest top(final int value) { return (SwapShiftsChangeRequestCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ISwapShiftsChangeRequestCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (SwapShiftsChangeRequestCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ISwapShiftsChangeRequestCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ISwapShiftsChangeRequestCollectionRequest)this; + } public ISwapShiftsChangeRequestCollectionPage buildFromResponse(final SwapShiftsChangeRequestCollectionResponse response) { final ISwapShiftsChangeRequestCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppConfigurationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppConfigurationCollectionRequest.java index 69968c46b21..e469b08f74c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppConfigurationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppConfigurationCollectionRequest.java @@ -108,6 +108,27 @@ public ITargetedManagedAppConfigurationCollectionRequest top(final int value) { return (TargetedManagedAppConfigurationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITargetedManagedAppConfigurationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TargetedManagedAppConfigurationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITargetedManagedAppConfigurationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITargetedManagedAppConfigurationCollectionRequest)this; + } public ITargetedManagedAppConfigurationCollectionPage buildFromResponse(final TargetedManagedAppConfigurationCollectionResponse response) { final ITargetedManagedAppConfigurationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppPolicyAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppPolicyAssignmentCollectionRequest.java index d5f5cf1ca5a..6ec4527c547 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppPolicyAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TargetedManagedAppPolicyAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public ITargetedManagedAppPolicyAssignmentCollectionRequest top(final int value) return (TargetedManagedAppPolicyAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITargetedManagedAppPolicyAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TargetedManagedAppPolicyAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITargetedManagedAppPolicyAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITargetedManagedAppPolicyAssignmentCollectionRequest)this; + } public ITargetedManagedAppPolicyAssignmentCollectionPage buildFromResponse(final TargetedManagedAppPolicyAssignmentCollectionResponse response) { final ITargetedManagedAppPolicyAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamCollectionRequest.java index 3a692d203f1..bcc06bf0fbe 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamCollectionRequest.java @@ -108,6 +108,27 @@ public ITeamCollectionRequest top(final int value) { return (TeamCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamCollectionRequest)this; + } public ITeamCollectionPage buildFromResponse(final TeamCollectionResponse response) { final ITeamCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppCollectionRequest.java index 14a5650757c..f826de0c9b5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppCollectionRequest.java @@ -106,6 +106,27 @@ public ITeamsAppCollectionRequest top(final int value) { return (TeamsAppCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsAppCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsAppCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsAppCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsAppCollectionRequest)this; + } public ITeamsAppCollectionPage buildFromResponse(final TeamsAppCollectionResponse response) { final ITeamsAppCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppDefinitionCollectionRequest.java index 1ff0e5d54c9..350dc8a04b1 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppDefinitionCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppDefinitionCollectionRequest.java @@ -106,6 +106,27 @@ public ITeamsAppDefinitionCollectionRequest top(final int value) { return (TeamsAppDefinitionCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsAppDefinitionCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsAppDefinitionCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsAppDefinitionCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsAppDefinitionCollectionRequest)this; + } public ITeamsAppDefinitionCollectionPage buildFromResponse(final TeamsAppDefinitionCollectionResponse response) { final ITeamsAppDefinitionCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppInstallationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppInstallationCollectionRequest.java index 09e633613ad..6c874b08c8c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppInstallationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAppInstallationCollectionRequest.java @@ -106,6 +106,27 @@ public ITeamsAppInstallationCollectionRequest top(final int value) { return (TeamsAppInstallationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsAppInstallationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsAppInstallationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsAppInstallationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsAppInstallationCollectionRequest)this; + } public ITeamsAppInstallationCollectionPage buildFromResponse(final TeamsAppInstallationCollectionResponse response) { final ITeamsAppInstallationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAsyncOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAsyncOperationCollectionRequest.java index 7d14b271cc2..088531bcc7a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsAsyncOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsAsyncOperationCollectionRequest.java @@ -106,6 +106,27 @@ public ITeamsAsyncOperationCollectionRequest top(final int value) { return (TeamsAsyncOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsAsyncOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsAsyncOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsAsyncOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsAsyncOperationCollectionRequest)this; + } public ITeamsAsyncOperationCollectionPage buildFromResponse(final TeamsAsyncOperationCollectionResponse response) { final ITeamsAsyncOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsTabCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsTabCollectionRequest.java index 828d86e3371..00913ce55b6 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsTabCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsTabCollectionRequest.java @@ -106,6 +106,27 @@ public ITeamsTabCollectionRequest top(final int value) { return (TeamsTabCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsTabCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsTabCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsTabCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsTabCollectionRequest)this; + } public ITeamsTabCollectionPage buildFromResponse(final TeamsTabCollectionResponse response) { final ITeamsTabCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TeamsTemplateCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TeamsTemplateCollectionRequest.java index 277921903e9..2fe2819ff16 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TeamsTemplateCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TeamsTemplateCollectionRequest.java @@ -105,6 +105,27 @@ public ITeamsTemplateCollectionRequest top(final int value) { return (TeamsTemplateCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITeamsTemplateCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TeamsTemplateCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITeamsTemplateCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITeamsTemplateCollectionRequest)this; + } public ITeamsTemplateCollectionPage buildFromResponse(final TeamsTemplateCollectionResponse response) { final ITeamsTemplateCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TelecomExpenseManagementPartnerCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TelecomExpenseManagementPartnerCollectionRequest.java index 65a0b38eee1..797f8efd07d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TelecomExpenseManagementPartnerCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TelecomExpenseManagementPartnerCollectionRequest.java @@ -106,6 +106,27 @@ public ITelecomExpenseManagementPartnerCollectionRequest top(final int value) { return (TelecomExpenseManagementPartnerCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITelecomExpenseManagementPartnerCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TelecomExpenseManagementPartnerCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITelecomExpenseManagementPartnerCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITelecomExpenseManagementPartnerCollectionRequest)this; + } public ITelecomExpenseManagementPartnerCollectionPage buildFromResponse(final TelecomExpenseManagementPartnerCollectionResponse response) { final ITelecomExpenseManagementPartnerCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAcceptanceStatusCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAcceptanceStatusCollectionRequest.java index ef950f9484a..1ebcd88dde2 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAcceptanceStatusCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAcceptanceStatusCollectionRequest.java @@ -106,6 +106,27 @@ public ITermsAndConditionsAcceptanceStatusCollectionRequest top(final int value) return (TermsAndConditionsAcceptanceStatusCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITermsAndConditionsAcceptanceStatusCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TermsAndConditionsAcceptanceStatusCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITermsAndConditionsAcceptanceStatusCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITermsAndConditionsAcceptanceStatusCollectionRequest)this; + } public ITermsAndConditionsAcceptanceStatusCollectionPage buildFromResponse(final TermsAndConditionsAcceptanceStatusCollectionResponse response) { final ITermsAndConditionsAcceptanceStatusCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAssignmentCollectionRequest.java index 40ae318404d..36269cf7e85 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAssignmentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsAssignmentCollectionRequest.java @@ -106,6 +106,27 @@ public ITermsAndConditionsAssignmentCollectionRequest top(final int value) { return (TermsAndConditionsAssignmentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITermsAndConditionsAssignmentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TermsAndConditionsAssignmentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITermsAndConditionsAssignmentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITermsAndConditionsAssignmentCollectionRequest)this; + } public ITermsAndConditionsAssignmentCollectionPage buildFromResponse(final TermsAndConditionsAssignmentCollectionResponse response) { final ITermsAndConditionsAssignmentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsCollectionRequest.java index 9e03f8d5df2..3bfadbb5773 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TermsAndConditionsCollectionRequest.java @@ -106,6 +106,27 @@ public ITermsAndConditionsCollectionRequest top(final int value) { return (TermsAndConditionsCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITermsAndConditionsCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TermsAndConditionsCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITermsAndConditionsCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITermsAndConditionsCollectionRequest)this; + } public ITermsAndConditionsCollectionPage buildFromResponse(final TermsAndConditionsCollectionResponse response) { final ITermsAndConditionsCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentRequestCollectionRequest.java index 752affc70bc..6c07f913565 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentRequestCollectionRequest.java @@ -106,6 +106,27 @@ public IThreatAssessmentRequestCollectionRequest top(final int value) { return (ThreatAssessmentRequestCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IThreatAssessmentRequestCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ThreatAssessmentRequestCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IThreatAssessmentRequestCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IThreatAssessmentRequestCollectionRequest)this; + } public IThreatAssessmentRequestCollectionPage buildFromResponse(final ThreatAssessmentRequestCollectionResponse response) { final IThreatAssessmentRequestCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentResultCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentResultCollectionRequest.java index 718adf475c4..d008639cc28 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentResultCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ThreatAssessmentResultCollectionRequest.java @@ -106,6 +106,27 @@ public IThreatAssessmentResultCollectionRequest top(final int value) { return (ThreatAssessmentResultCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IThreatAssessmentResultCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ThreatAssessmentResultCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IThreatAssessmentResultCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IThreatAssessmentResultCollectionRequest)this; + } public IThreatAssessmentResultCollectionPage buildFromResponse(final ThreatAssessmentResultCollectionResponse response) { final IThreatAssessmentResultCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/ThumbnailSetCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/ThumbnailSetCollectionRequest.java index 94c3b0cab11..1188b75de01 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/ThumbnailSetCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/ThumbnailSetCollectionRequest.java @@ -106,6 +106,27 @@ public IThumbnailSetCollectionRequest top(final int value) { return (ThumbnailSetCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IThumbnailSetCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (ThumbnailSetCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IThumbnailSetCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IThumbnailSetCollectionRequest)this; + } public IThumbnailSetCollectionPage buildFromResponse(final ThumbnailSetCollectionResponse response) { final IThumbnailSetCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffCollectionRequest.java index c5f63177177..1f3d1b7f56a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffCollectionRequest.java @@ -106,6 +106,27 @@ public ITimeOffCollectionRequest top(final int value) { return (TimeOffCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITimeOffCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TimeOffCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITimeOffCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITimeOffCollectionRequest)this; + } public ITimeOffCollectionPage buildFromResponse(final TimeOffCollectionResponse response) { final ITimeOffCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffReasonCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffReasonCollectionRequest.java index 5c9d9208933..9a13415b513 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffReasonCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffReasonCollectionRequest.java @@ -106,6 +106,27 @@ public ITimeOffReasonCollectionRequest top(final int value) { return (TimeOffReasonCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITimeOffReasonCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TimeOffReasonCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITimeOffReasonCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITimeOffReasonCollectionRequest)this; + } public ITimeOffReasonCollectionPage buildFromResponse(final TimeOffReasonCollectionResponse response) { final ITimeOffReasonCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffRequestCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffRequestCollectionRequest.java index adc0a4f0d11..a5ce32d62d8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TimeOffRequestCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TimeOffRequestCollectionRequest.java @@ -107,6 +107,27 @@ public ITimeOffRequestCollectionRequest top(final int value) { return (TimeOffRequestCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITimeOffRequestCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TimeOffRequestCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITimeOffRequestCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITimeOffRequestCollectionRequest)this; + } public ITimeOffRequestCollectionPage buildFromResponse(final TimeOffRequestCollectionResponse response) { final ITimeOffRequestCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TokenIssuancePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TokenIssuancePolicyCollectionRequest.java index 8524870f9c5..0db1d271ea3 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TokenIssuancePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TokenIssuancePolicyCollectionRequest.java @@ -106,6 +106,27 @@ public ITokenIssuancePolicyCollectionRequest top(final int value) { return (TokenIssuancePolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITokenIssuancePolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TokenIssuancePolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITokenIssuancePolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITokenIssuancePolicyCollectionRequest)this; + } public ITokenIssuancePolicyCollectionPage buildFromResponse(final TokenIssuancePolicyCollectionResponse response) { final ITokenIssuancePolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TokenLifetimePolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TokenLifetimePolicyCollectionRequest.java index 83e01cfafe6..2a754997af4 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TokenLifetimePolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TokenLifetimePolicyCollectionRequest.java @@ -106,6 +106,27 @@ public ITokenLifetimePolicyCollectionRequest top(final int value) { return (TokenLifetimePolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITokenLifetimePolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TokenLifetimePolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITokenLifetimePolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITokenLifetimePolicyCollectionRequest)this; + } public ITokenLifetimePolicyCollectionPage buildFromResponse(final TokenLifetimePolicyCollectionResponse response) { final ITokenLifetimePolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/TrendingCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/TrendingCollectionRequest.java index 774449d5758..9f28283d4bb 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/TrendingCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/TrendingCollectionRequest.java @@ -106,6 +106,27 @@ public ITrendingCollectionRequest top(final int value) { return (TrendingCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public ITrendingCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (TrendingCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public ITrendingCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (ITrendingCollectionRequest)this; + } public ITrendingCollectionPage buildFromResponse(final TrendingCollectionResponse response) { final ITrendingCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/UsedInsightCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/UsedInsightCollectionRequest.java index 469cf337227..0d31ff0d762 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/UsedInsightCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/UsedInsightCollectionRequest.java @@ -106,6 +106,27 @@ public IUsedInsightCollectionRequest top(final int value) { return (UsedInsightCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IUsedInsightCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (UsedInsightCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IUsedInsightCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IUsedInsightCollectionRequest)this; + } public IUsedInsightCollectionPage buildFromResponse(final UsedInsightCollectionResponse response) { final IUsedInsightCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/UserActivityCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/UserActivityCollectionRequest.java index 46e4c80e489..a9a9d9ce41b 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/UserActivityCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/UserActivityCollectionRequest.java @@ -106,6 +106,27 @@ public IUserActivityCollectionRequest top(final int value) { return (UserActivityCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IUserActivityCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (UserActivityCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IUserActivityCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IUserActivityCollectionRequest)this; + } public IUserActivityCollectionPage buildFromResponse(final UserActivityCollectionResponse response) { final IUserActivityCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/UserCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/UserCollectionRequest.java index 016614d7685..62527e762e9 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/UserCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/UserCollectionRequest.java @@ -119,6 +119,27 @@ public IUserCollectionRequest top(final int value) { return (UserCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IUserCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (UserCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IUserCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IUserCollectionRequest)this; + } public IUserCollectionPage buildFromResponse(final UserCollectionResponse response) { final IUserCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/UserInstallStateSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/UserInstallStateSummaryCollectionRequest.java index e678dd05fc8..fb0ec6b0dd5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/UserInstallStateSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/UserInstallStateSummaryCollectionRequest.java @@ -106,6 +106,27 @@ public IUserInstallStateSummaryCollectionRequest top(final int value) { return (UserInstallStateSummaryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IUserInstallStateSummaryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (UserInstallStateSummaryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IUserInstallStateSummaryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IUserInstallStateSummaryCollectionRequest)this; + } public IUserInstallStateSummaryCollectionPage buildFromResponse(final UserInstallStateSummaryCollectionResponse response) { final IUserInstallStateSummaryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/VppTokenCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/VppTokenCollectionRequest.java index 1c334c35bd7..4d7e125146a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/VppTokenCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/VppTokenCollectionRequest.java @@ -106,6 +106,27 @@ public IVppTokenCollectionRequest top(final int value) { return (VppTokenCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IVppTokenCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (VppTokenCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IVppTokenCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IVppTokenCollectionRequest)this; + } public IVppTokenCollectionPage buildFromResponse(final VppTokenCollectionResponse response) { final IVppTokenCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLearningSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLearningSummaryCollectionRequest.java index 467fa58d048..d5cdd2a56de 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLearningSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLearningSummaryCollectionRequest.java @@ -106,6 +106,27 @@ public IWindowsInformationProtectionAppLearningSummaryCollectionRequest top(fina return (WindowsInformationProtectionAppLearningSummaryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWindowsInformationProtectionAppLearningSummaryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WindowsInformationProtectionAppLearningSummaryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWindowsInformationProtectionAppLearningSummaryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWindowsInformationProtectionAppLearningSummaryCollectionRequest)this; + } public IWindowsInformationProtectionAppLearningSummaryCollectionPage buildFromResponse(final WindowsInformationProtectionAppLearningSummaryCollectionResponse response) { final IWindowsInformationProtectionAppLearningSummaryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLockerFileCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLockerFileCollectionRequest.java index 348872cbcea..3dc4f64cb88 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLockerFileCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionAppLockerFileCollectionRequest.java @@ -106,6 +106,27 @@ public IWindowsInformationProtectionAppLockerFileCollectionRequest top(final int return (WindowsInformationProtectionAppLockerFileCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWindowsInformationProtectionAppLockerFileCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WindowsInformationProtectionAppLockerFileCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWindowsInformationProtectionAppLockerFileCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWindowsInformationProtectionAppLockerFileCollectionRequest)this; + } public IWindowsInformationProtectionAppLockerFileCollectionPage buildFromResponse(final WindowsInformationProtectionAppLockerFileCollectionResponse response) { final IWindowsInformationProtectionAppLockerFileCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java index 3ee8602d589..cd504973fce 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionNetworkLearningSummaryCollectionRequest.java @@ -106,6 +106,27 @@ public IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest top( return (WindowsInformationProtectionNetworkLearningSummaryCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WindowsInformationProtectionNetworkLearningSummaryCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWindowsInformationProtectionNetworkLearningSummaryCollectionRequest)this; + } public IWindowsInformationProtectionNetworkLearningSummaryCollectionPage buildFromResponse(final WindowsInformationProtectionNetworkLearningSummaryCollectionResponse response) { final IWindowsInformationProtectionNetworkLearningSummaryCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionPolicyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionPolicyCollectionRequest.java index 370763c6152..7b94d68477f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionPolicyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WindowsInformationProtectionPolicyCollectionRequest.java @@ -106,6 +106,27 @@ public IWindowsInformationProtectionPolicyCollectionRequest top(final int value) return (WindowsInformationProtectionPolicyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWindowsInformationProtectionPolicyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WindowsInformationProtectionPolicyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWindowsInformationProtectionPolicyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWindowsInformationProtectionPolicyCollectionRequest)this; + } public IWindowsInformationProtectionPolicyCollectionPage buildFromResponse(final WindowsInformationProtectionPolicyCollectionResponse response) { final IWindowsInformationProtectionPolicyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartCollectionRequest.java index d965cae0d55..cdf5413c381 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookChartCollectionRequest top(final int value) { return (WorkbookChartCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookChartCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookChartCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookChartCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookChartCollectionRequest)this; + } public IWorkbookChartCollectionPage buildFromResponse(final WorkbookChartCollectionResponse response) { final IWorkbookChartCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartPointCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartPointCollectionRequest.java index e0d84960b78..9db331b3b4a 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartPointCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartPointCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookChartPointCollectionRequest top(final int value) { return (WorkbookChartPointCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookChartPointCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookChartPointCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookChartPointCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookChartPointCollectionRequest)this; + } public IWorkbookChartPointCollectionPage buildFromResponse(final WorkbookChartPointCollectionResponse response) { final IWorkbookChartPointCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartSeriesCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartSeriesCollectionRequest.java index d4484c1dc2b..d5b30866c8d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartSeriesCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookChartSeriesCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookChartSeriesCollectionRequest top(final int value) { return (WorkbookChartSeriesCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookChartSeriesCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookChartSeriesCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookChartSeriesCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookChartSeriesCollectionRequest)this; + } public IWorkbookChartSeriesCollectionPage buildFromResponse(final WorkbookChartSeriesCollectionResponse response) { final IWorkbookChartSeriesCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentCollectionRequest.java index e10bd60c5d7..0d306fabeea 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookCommentCollectionRequest top(final int value) { return (WorkbookCommentCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookCommentCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookCommentCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookCommentCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookCommentCollectionRequest)this; + } public IWorkbookCommentCollectionPage buildFromResponse(final WorkbookCommentCollectionResponse response) { final IWorkbookCommentCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentReplyCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentReplyCollectionRequest.java index fba69f78ba7..135ac7ff99f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentReplyCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookCommentReplyCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookCommentReplyCollectionRequest top(final int value) { return (WorkbookCommentReplyCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookCommentReplyCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookCommentReplyCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookCommentReplyCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookCommentReplyCollectionRequest)this; + } public IWorkbookCommentReplyCollectionPage buildFromResponse(final WorkbookCommentReplyCollectionResponse response) { final IWorkbookCommentReplyCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookNamedItemCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookNamedItemCollectionRequest.java index 2d2b2b8cf84..361cb223964 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookNamedItemCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookNamedItemCollectionRequest.java @@ -107,6 +107,27 @@ public IWorkbookNamedItemCollectionRequest top(final int value) { return (WorkbookNamedItemCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookNamedItemCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookNamedItemCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookNamedItemCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookNamedItemCollectionRequest)this; + } public IWorkbookNamedItemCollectionPage buildFromResponse(final WorkbookNamedItemCollectionResponse response) { final IWorkbookNamedItemCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookOperationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookOperationCollectionRequest.java index 69f186f3746..bf4d1355ba5 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookOperationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookOperationCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookOperationCollectionRequest top(final int value) { return (WorkbookOperationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookOperationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookOperationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookOperationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookOperationCollectionRequest)this; + } public IWorkbookOperationCollectionPage buildFromResponse(final WorkbookOperationCollectionResponse response) { final IWorkbookOperationCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookPivotTableCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookPivotTableCollectionRequest.java index bbdbd730fdc..f4cafc5741d 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookPivotTableCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookPivotTableCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookPivotTableCollectionRequest top(final int value) { return (WorkbookPivotTableCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookPivotTableCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookPivotTableCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookPivotTableCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookPivotTableCollectionRequest)this; + } public IWorkbookPivotTableCollectionPage buildFromResponse(final WorkbookPivotTableCollectionResponse response) { final IWorkbookPivotTableCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeBorderCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeBorderCollectionRequest.java index 421b48c462e..64d34656bb8 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeBorderCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeBorderCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookRangeBorderCollectionRequest top(final int value) { return (WorkbookRangeBorderCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookRangeBorderCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookRangeBorderCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookRangeBorderCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookRangeBorderCollectionRequest)this; + } public IWorkbookRangeBorderCollectionPage buildFromResponse(final WorkbookRangeBorderCollectionResponse response) { final IWorkbookRangeBorderCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeViewCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeViewCollectionRequest.java index 4890e03da6c..72e13050c89 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeViewCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookRangeViewCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkbookRangeViewCollectionRequest top(final int value) { return (WorkbookRangeViewCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookRangeViewCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookRangeViewCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookRangeViewCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookRangeViewCollectionRequest)this; + } public IWorkbookRangeViewCollectionPage buildFromResponse(final WorkbookRangeViewCollectionResponse response) { final IWorkbookRangeViewCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableCollectionRequest.java index 8ad2c192619..3fb050d271f 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableCollectionRequest.java @@ -107,6 +107,27 @@ public IWorkbookTableCollectionRequest top(final int value) { return (WorkbookTableCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookTableCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookTableCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookTableCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookTableCollectionRequest)this; + } public IWorkbookTableCollectionPage buildFromResponse(final WorkbookTableCollectionResponse response) { final IWorkbookTableCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableColumnCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableColumnCollectionRequest.java index eac6f1b7246..c2dcaf338df 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableColumnCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableColumnCollectionRequest.java @@ -107,6 +107,27 @@ public IWorkbookTableColumnCollectionRequest top(final int value) { return (WorkbookTableColumnCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookTableColumnCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookTableColumnCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookTableColumnCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookTableColumnCollectionRequest)this; + } public IWorkbookTableColumnCollectionPage buildFromResponse(final WorkbookTableColumnCollectionResponse response) { final IWorkbookTableColumnCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableRowCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableRowCollectionRequest.java index 6ab9d6efd7e..9b899665d06 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableRowCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookTableRowCollectionRequest.java @@ -107,6 +107,27 @@ public IWorkbookTableRowCollectionRequest top(final int value) { return (WorkbookTableRowCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookTableRowCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookTableRowCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookTableRowCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookTableRowCollectionRequest)this; + } public IWorkbookTableRowCollectionPage buildFromResponse(final WorkbookTableRowCollectionResponse response) { final IWorkbookTableRowCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookWorksheetCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookWorksheetCollectionRequest.java index ea7f648a8b9..42226e3946c 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkbookWorksheetCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkbookWorksheetCollectionRequest.java @@ -107,6 +107,27 @@ public IWorkbookWorksheetCollectionRequest top(final int value) { return (WorkbookWorksheetCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkbookWorksheetCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkbookWorksheetCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkbookWorksheetCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkbookWorksheetCollectionRequest)this; + } public IWorkbookWorksheetCollectionPage buildFromResponse(final WorkbookWorksheetCollectionResponse response) { final IWorkbookWorksheetCollectionRequestBuilder builder; if (response.nextLink != null) { diff --git a/src/main/java/com/microsoft/graph/requests/extensions/WorkforceIntegrationCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/extensions/WorkforceIntegrationCollectionRequest.java index b07b8a146b3..1d4150613ff 100644 --- a/src/main/java/com/microsoft/graph/requests/extensions/WorkforceIntegrationCollectionRequest.java +++ b/src/main/java/com/microsoft/graph/requests/extensions/WorkforceIntegrationCollectionRequest.java @@ -106,6 +106,27 @@ public IWorkforceIntegrationCollectionRequest top(final int value) { return (WorkforceIntegrationCollectionRequest)this; } + /** + * Sets the skip value for the request + * + * @param value of the number of items to skip + * @return the updated request + */ + public IWorkforceIntegrationCollectionRequest skip(final int value) { + addQueryOption(new com.microsoft.graph.options.QueryOption("$skip", value + "")); + return (WorkforceIntegrationCollectionRequest)this; + } + + + /** + * Add Skip token for pagination + * @param skipToken - Token for pagination + * @return the updated request + */ + public IWorkforceIntegrationCollectionRequest skipToken(final String skipToken) { + addQueryOption(new QueryOption("$skiptoken", skipToken)); + return (IWorkforceIntegrationCollectionRequest)this; + } public IWorkforceIntegrationCollectionPage buildFromResponse(final WorkforceIntegrationCollectionResponse response) { final IWorkforceIntegrationCollectionRequestBuilder builder; if (response.nextLink != null) {