Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.