com.microsoft.graph.requests.MessageReplyAllRequest Maven / Gradle / Ivy
// Template Source: BaseMethodRequest.java.tt
// ------------------------------------------------------------------------------
// 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;
import com.microsoft.graph.models.Message;
import com.microsoft.graph.requests.MessageReplyAllRequest;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.http.BaseRequest;
import com.microsoft.graph.http.HttpMethod;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.models.MessageReplyAllParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Message Reply All Request.
*/
public class MessageReplyAllRequest extends BaseRequest {
/**
* The request for this MessageReplyAll
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public MessageReplyAllRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions, Void.class);
}
/** The body for the method */
@Nullable
public MessageReplyAllParameterSet body;
/**
* Creates the MessageReplyAll
*
* @return a future for the operation
*/
@Nonnull
public java.util.concurrent.CompletableFuture postAsync() {
return this.sendAsync(HttpMethod.POST, body);
}
/**
* Creates the MessageReplyAll
*
* @throws ClientException an exception occurs if there was an error while the request was sent
*/
public void post() throws ClientException {
this.send(HttpMethod.POST, body);
}
}