
com.microsoft.graph.requests.extensions.WorkbookFunctionsDbRequestBuilder 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.requests.extensions.IWorkbookFunctionsDbRequest;
import com.microsoft.graph.requests.extensions.WorkbookFunctionsDbRequest;
import com.microsoft.graph.models.extensions.WorkbookFunctionResult;
import com.microsoft.graph.core.BaseActionRequestBuilder;
import com.microsoft.graph.core.BaseFunctionRequestBuilder;
import com.microsoft.graph.core.IBaseClient;
import com.google.gson.JsonElement;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Workbook Functions Db Request Builder.
*/
public class WorkbookFunctionsDbRequestBuilder extends BaseActionRequestBuilder implements IWorkbookFunctionsDbRequestBuilder {
/**
* The request builder for this WorkbookFunctionsDb
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
* @param cost the cost
* @param salvage the salvage
* @param life the life
* @param period the period
* @param month the month
*/
public WorkbookFunctionsDbRequestBuilder(final String requestUrl, final IBaseClient client, final java.util.List extends com.microsoft.graph.options.Option> requestOptions, final com.google.gson.JsonElement cost, final com.google.gson.JsonElement salvage, final com.google.gson.JsonElement life, final com.google.gson.JsonElement period, final com.google.gson.JsonElement month) {
super(requestUrl, client, requestOptions);
bodyParams.put("cost", cost);
bodyParams.put("salvage", salvage);
bodyParams.put("life", life);
bodyParams.put("period", period);
bodyParams.put("month", month);
}
/**
* Creates the IWorkbookFunctionsDbRequest
*
* @return the IWorkbookFunctionsDbRequest instance
*/
public IWorkbookFunctionsDbRequest buildRequest() {
return buildRequest(getOptions());
}
/**
* Creates the IWorkbookFunctionsDbRequest with specific requestOptions instead of the existing requestOptions
*
* @param requestOptions the options for the request
* @return the IWorkbookFunctionsDbRequest instance
*/
public IWorkbookFunctionsDbRequest buildRequest(final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
WorkbookFunctionsDbRequest request = new WorkbookFunctionsDbRequest(
getRequestUrl(),
getClient(),
requestOptions
);
if (hasParameter("cost")) {
request.body.cost = getParameter("cost");
}
if (hasParameter("salvage")) {
request.body.salvage = getParameter("salvage");
}
if (hasParameter("life")) {
request.body.life = getParameter("life");
}
if (hasParameter("period")) {
request.body.period = getParameter("period");
}
if (hasParameter("month")) {
request.body.month = getParameter("month");
}
return request;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy