public class PersonCollectionRequest extends com.microsoft.graph.http.BaseEntityCollectionRequest<Person,PersonCollectionResponse,PersonCollectionPage>
| Constructor and Description |
|---|
PersonCollectionRequest(java.lang.String requestUrl,
com.microsoft.graph.core.IBaseClient<?> client,
java.util.List<? extends com.microsoft.graph.options.Option> requestOptions)
The request builder for this collection of Person
|
| Modifier and Type | Method and Description |
|---|---|
PersonCollectionRequest |
count()
Sets the count value to true for the request
|
PersonCollectionRequest |
count(boolean value)
Sets the count value for the request
|
PersonCollectionRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
PersonCollectionRequest |
filter(java.lang.String value)
Sets the filter clause for the request
|
PersonCollectionRequest |
orderBy(java.lang.String value)
Sets the order by clause for the request
|
Person |
post(Person newPerson)
Creates a new Person
|
java.util.concurrent.CompletableFuture<Person> |
postAsync(Person newPerson)
Creates a new Person
|
PersonCollectionRequest |
select(java.lang.String value)
Sets the select clause for the request
|
PersonCollectionRequest |
skip(int value)
Sets the skip value for the request
|
PersonCollectionRequest |
skipToken(java.lang.String skipToken)
Add Skip token for pagination
|
PersonCollectionRequest |
top(int value)
Sets the top value for the request
|
get, getAsync, postaddCountOption, addExpandOption, addFilterOption, addFunctionOption, addHeader, addOrderByOption, addQueryOption, addSelectOption, addSkipOption, addSkipTokenOption, addTopOption, buildFromResponse, getBaseRequest, getCollectionPageClass, getDelay, getHeaders, getHttpMethod, getHttpRequest, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, send, sendAsync, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches, withHttpMethodpublic PersonCollectionRequest(@Nonnull
java.lang.String requestUrl,
@Nonnull
com.microsoft.graph.core.IBaseClient<?> client,
@Nullable
java.util.List<? extends com.microsoft.graph.options.Option> requestOptions)
requestUrl - the request URLclient - the service clientrequestOptions - the options for this request@Nonnull public java.util.concurrent.CompletableFuture<Person> postAsync(@Nonnull Person newPerson)
newPerson - the Person to create@Nonnull public Person post(@Nonnull Person newPerson) throws com.microsoft.graph.core.ClientException
newPerson - the Person to createcom.microsoft.graph.core.ClientException@Nonnull public PersonCollectionRequest expand(@Nonnull java.lang.String value)
value - the expand clause@Nonnull public PersonCollectionRequest filter(@Nonnull java.lang.String value)
value - the filter clause@Nonnull public PersonCollectionRequest orderBy(@Nonnull java.lang.String value)
value - the order by clause@Nonnull public PersonCollectionRequest select(@Nonnull java.lang.String value)
value - the select clause@Nonnull public PersonCollectionRequest top(int value)
value - the max number of items to return@Nonnull public PersonCollectionRequest count(boolean value)
value - whether or not to return the count of objects with the request@Nonnull public PersonCollectionRequest count()
@Nonnull public PersonCollectionRequest skip(int value)
value - of the number of items to skip@Nonnull public PersonCollectionRequest skipToken(@Nonnull java.lang.String skipToken)
skipToken - - Token for pagination