com.microsoft.graph.requests.ServiceUpdateMessageMarkReadRequestBuilder Maven / Gradle / Ivy
// Template Source: BaseMethodRequestBuilder.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.requests.ServiceUpdateMessageMarkReadRequest;
import com.microsoft.graph.models.ServiceUpdateMessage;
import com.microsoft.graph.http.BaseActionRequestBuilder;
import com.microsoft.graph.models.ServiceUpdateMessageMarkReadParameterSet;
import com.microsoft.graph.core.IBaseClient;
import com.google.gson.JsonElement;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Service Update Message Mark Read Request Builder.
*/
public class ServiceUpdateMessageMarkReadRequestBuilder extends BaseActionRequestBuilder {
/**
* The request builder for this ServiceUpdateMessageMarkRead
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public ServiceUpdateMessageMarkReadRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions);
}
private ServiceUpdateMessageMarkReadParameterSet body;
/**
* The request builder for this ServiceUpdateMessageMarkRead
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
* @param parameters the parameters for the service method
*/
public ServiceUpdateMessageMarkReadRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions, @Nonnull final ServiceUpdateMessageMarkReadParameterSet parameters) {
super(requestUrl, client, requestOptions);
this.body = parameters;
}
/**
* Creates the ServiceUpdateMessageMarkReadRequest
*
* @param requestOptions the options for the request
* @return the ServiceUpdateMessageMarkReadRequest instance
*/
@Nonnull
public ServiceUpdateMessageMarkReadRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
return buildRequest(getOptions(requestOptions));
}
/**
* Creates the ServiceUpdateMessageMarkReadRequest with specific requestOptions instead of the existing requestOptions
*
* @param requestOptions the options for the request
* @return the ServiceUpdateMessageMarkReadRequest instance
*/
@Nonnull
public ServiceUpdateMessageMarkReadRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
final ServiceUpdateMessageMarkReadRequest request = new ServiceUpdateMessageMarkReadRequest(
getRequestUrl(),
getClient(),
requestOptions);
request.body = this.body;
return request;
}
}