
com.microsoft.graph.requests.extensions.IUserCollectionRequest Maven / Gradle / Ivy
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.requests.extensions;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.concurrency.ICallback;
import com.microsoft.graph.models.extensions.User;
import com.microsoft.graph.models.extensions.AssignedLicense;
import com.microsoft.graph.models.extensions.AttendeeBase;
import com.microsoft.graph.models.extensions.LocationConstraint;
import com.microsoft.graph.models.extensions.TimeConstraint;
import com.microsoft.graph.models.extensions.MeetingTimeSuggestionsResult;
import com.microsoft.graph.models.generated.MailTipsType;
import com.microsoft.graph.models.extensions.MailTips;
import java.util.EnumSet;
import com.microsoft.graph.models.extensions.Message;
import com.microsoft.graph.models.generated.ExchangeIdFormat;
import com.microsoft.graph.models.extensions.ConvertIdResult;
import com.microsoft.graph.models.extensions.Reminder;
import com.microsoft.graph.models.extensions.ManagedAppDiagnosticStatus;
import com.microsoft.graph.models.extensions.ManagedAppPolicy;
import java.util.Arrays;
import java.util.EnumSet;
import com.microsoft.graph.http.IBaseCollectionPage;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The interface for the User Collection Request.
*/
public interface IUserCollectionRequest {
void get(final ICallback callback);
IUserCollectionPage get() throws ClientException;
void post(final User newUser, final ICallback callback);
User post(final User newUser) throws ClientException;
/**
* Sets the expand clause for the request
*
* @param value the expand clause
* @return the updated request
*/
IUserCollectionRequest expand(final String value);
/**
* Sets the select clause for the request
*
* @param value the select clause
* @return the updated request
*/
IUserCollectionRequest select(final String value);
/**
* Sets the top value for the request
*
* @param value the max number of items to return
* @return the updated request
*/
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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy