
com.microsoft.graph.requests.extensions.IUserGetMailTipsCollectionRequest 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.generated.MailTipsType;
import com.microsoft.graph.models.extensions.MailTips;
import java.util.EnumSet;
import java.util.Arrays;
import java.util.EnumSet;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The interface for the User Get Mail Tips Collection Request.
*/
public interface IUserGetMailTipsCollectionRequest {
void post(final ICallback callback);
IUserGetMailTipsCollectionPage post() throws ClientException;
/**
* Sets the select clause for the request
*
* @param value the select clause
* @return the updated request
*/
IUserGetMailTipsCollectionRequest select(final String value);
/**
* Sets the expand clause for the request
*
* @param value the expand clause
* @return the updated request
*/
IUserGetMailTipsCollectionRequest expand(final String value);
/**
* Sets the top value for the request
*
* @param value the max number of items to return
* @return the updated request
*/
IUserGetMailTipsCollectionRequest top(final int value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy