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 @@ -84,6 +84,17 @@ public ICallRecordCollectionRequest expand(final String value) {
return (CallRecordCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ICallRecordCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (CallRecordCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,16 @@ public ICallRecordRequest expand(final String value) {
return (CallRecordRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ICallRecordRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (CallRecordRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ public interface ICallRecordCollectionRequest {
*/
ICallRecordCollectionRequest expand(final String value);

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
ICallRecordCollectionRequest filter(final String value);

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ public interface ISegmentCollectionRequest {
*/
ISegmentCollectionRequest expand(final String value);

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
ISegmentCollectionRequest filter(final String value);

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ public interface ISessionCollectionRequest {
*/
ISessionCollectionRequest expand(final String value);

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
ISessionCollectionRequest filter(final String value);

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public ISegmentCollectionRequest expand(final String value) {
return (SegmentCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ISegmentCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (SegmentCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public ISegmentRequest expand(final String value) {
return (SegmentRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ISegmentRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (SegmentRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public ISessionCollectionRequest expand(final String value) {
return (SessionCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ISessionCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (SessionCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,16 @@ public ISessionRequest expand(final String value) {
return (SessionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public ISessionRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (SessionRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,16 @@ public IAadUserConversationMemberRequest expand(final String value) {
return (AadUserConversationMemberRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAadUserConversationMemberRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AadUserConversationMemberRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public IActivityBasedTimeoutPolicyCollectionRequest expand(final String value) {
return (ActivityBasedTimeoutPolicyCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IActivityBasedTimeoutPolicyCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (ActivityBasedTimeoutPolicyCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IActivityBasedTimeoutPolicyRequest expand(final String value) {
return (ActivityBasedTimeoutPolicyRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IActivityBasedTimeoutPolicyRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (ActivityBasedTimeoutPolicyRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public IActivityHistoryItemCollectionRequest expand(final String value) {
return (ActivityHistoryItemCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IActivityHistoryItemCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (ActivityHistoryItemCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,16 @@ public IActivityHistoryItemRequest expand(final String value) {
return (ActivityHistoryItemRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IActivityHistoryItemRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (ActivityHistoryItemRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,15 @@ public IAdministrativeUnitDeltaCollectionRequest expand(final String value) {
return (IAdministrativeUnitDeltaCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAdministrativeUnitDeltaCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (IAdministrativeUnitDeltaCollectionRequest)this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAdministrativeUnitRequest expand(final String value) {
return (AdministrativeUnitRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAdministrativeUnitRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AdministrativeUnitRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public IAlertCollectionRequest expand(final String value) {
return (AlertCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAlertCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AlertCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAlertRequest expand(final String value) {
return (AlertRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAlertRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AlertRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAndroidCompliancePolicyRequest expand(final String value) {
return (AndroidCompliancePolicyRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAndroidCompliancePolicyRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AndroidCompliancePolicyRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAndroidCustomConfigurationRequest expand(final String value) {
return (AndroidCustomConfigurationRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAndroidCustomConfigurationRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AndroidCustomConfigurationRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAndroidGeneralDeviceConfigurationRequest expand(final String value) {
return (AndroidGeneralDeviceConfigurationRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAndroidGeneralDeviceConfigurationRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AndroidGeneralDeviceConfigurationRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,16 @@ public IAndroidLobAppRequest expand(final String value) {
return (AndroidLobAppRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAndroidLobAppRequest filter(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AndroidLobAppRequest)this;
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ public IAndroidManagedAppProtectionCollectionRequest expand(final String value)
return (AndroidManagedAppProtectionCollectionRequest)this;
}

/**
* Sets the filter clause for the request
*
* @param value the filter clause
* @return the updated request
*/
public IAndroidManagedAppProtectionCollectionRequest filter(final String value) {
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
return (AndroidManagedAppProtectionCollectionRequest)this;
}

/**
* Sets the select clause for the request
*
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.