
com.microsoft.graph.requests.extensions.WorkbookFunctionsDec2BinRequest 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.models.extensions.WorkbookFunctionsDec2BinBody;
import com.microsoft.graph.models.extensions.WorkbookFunctionResult;
import com.microsoft.graph.requests.extensions.IWorkbookFunctionsDec2BinRequest;
import com.microsoft.graph.requests.extensions.WorkbookFunctionsDec2BinRequest;
import com.microsoft.graph.http.BaseCollectionRequest;
import com.microsoft.graph.http.BaseRequest;
import com.microsoft.graph.http.HttpMethod;
import com.microsoft.graph.concurrency.ICallback;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequest;
import com.microsoft.graph.http.HttpMethod;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Workbook Functions Dec2Bin Request.
*/
public class WorkbookFunctionsDec2BinRequest extends BaseRequest implements IWorkbookFunctionsDec2BinRequest {
protected final WorkbookFunctionsDec2BinBody body;
/**
* The request for this WorkbookFunctionsDec2Bin
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public WorkbookFunctionsDec2BinRequest(final String requestUrl, final IBaseClient client, final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions, WorkbookFunctionResult.class);
body = new WorkbookFunctionsDec2BinBody();
}
public void post(final ICallback callback) {
send(HttpMethod.POST, callback, body);
}
public WorkbookFunctionResult post() throws ClientException {
return send(HttpMethod.POST, body);
}
/**
* Sets the select clause for the request
*
* @param value the select clause
* @return the updated request
*/
public IWorkbookFunctionsDec2BinRequest select(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$select", value));
return (WorkbookFunctionsDec2BinRequest)this;
}
/**
* Sets the top value for the request
*
* @param value the max number of items to return
* @return the updated request
*/
public IWorkbookFunctionsDec2BinRequest top(final int value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$top", value+""));
return (WorkbookFunctionsDec2BinRequest)this;
}
/**
* Sets the expand clause for the request
*
* @param value the expand clause
* @return the updated request
*/
public IWorkbookFunctionsDec2BinRequest expand(final String value) {
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$expand", value));
return (WorkbookFunctionsDec2BinRequest)this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy