com.microsoft.graph.models.WorkbookFunctionsAccrIntMParameterSet Maven / Gradle / Ivy
// Template Source: BaseMethodParameterSet.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.models;
import com.microsoft.graph.models.WorkbookFunctionResult;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.google.gson.JsonObject;
import java.util.EnumSet;
import java.util.ArrayList;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Workbook Functions Accr Int MParameter Set.
*/
public class WorkbookFunctionsAccrIntMParameterSet {
/**
* The issue.
*
*/
@SerializedName(value = "issue", alternate = {"Issue"})
@Expose
@Nullable
public com.google.gson.JsonElement issue;
/**
* The settlement.
*
*/
@SerializedName(value = "settlement", alternate = {"Settlement"})
@Expose
@Nullable
public com.google.gson.JsonElement settlement;
/**
* The rate.
*
*/
@SerializedName(value = "rate", alternate = {"Rate"})
@Expose
@Nullable
public com.google.gson.JsonElement rate;
/**
* The par.
*
*/
@SerializedName(value = "par", alternate = {"Par"})
@Expose
@Nullable
public com.google.gson.JsonElement par;
/**
* The basis.
*
*/
@SerializedName(value = "basis", alternate = {"Basis"})
@Expose
@Nullable
public com.google.gson.JsonElement basis;
/**
* Instiaciates a new WorkbookFunctionsAccrIntMParameterSet
*/
public WorkbookFunctionsAccrIntMParameterSet() {}
/**
* Instiaciates a new WorkbookFunctionsAccrIntMParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected WorkbookFunctionsAccrIntMParameterSet(@Nonnull final WorkbookFunctionsAccrIntMParameterSetBuilder builder) {
this.issue = builder.issue;
this.settlement = builder.settlement;
this.rate = builder.rate;
this.par = builder.par;
this.basis = builder.basis;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static WorkbookFunctionsAccrIntMParameterSetBuilder newBuilder() {
return new WorkbookFunctionsAccrIntMParameterSetBuilder();
}
/**
* Fluent builder for the WorkbookFunctionsAccrIntMParameterSet
*/
public static final class WorkbookFunctionsAccrIntMParameterSetBuilder {
/**
* The issue parameter value
*/
@Nullable
protected com.google.gson.JsonElement issue;
/**
* Sets the Issue
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSetBuilder withIssue(@Nullable final com.google.gson.JsonElement val) {
this.issue = val;
return this;
}
/**
* The settlement parameter value
*/
@Nullable
protected com.google.gson.JsonElement settlement;
/**
* Sets the Settlement
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSetBuilder withSettlement(@Nullable final com.google.gson.JsonElement val) {
this.settlement = val;
return this;
}
/**
* The rate parameter value
*/
@Nullable
protected com.google.gson.JsonElement rate;
/**
* Sets the Rate
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSetBuilder withRate(@Nullable final com.google.gson.JsonElement val) {
this.rate = val;
return this;
}
/**
* The par parameter value
*/
@Nullable
protected com.google.gson.JsonElement par;
/**
* Sets the Par
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSetBuilder withPar(@Nullable final com.google.gson.JsonElement val) {
this.par = val;
return this;
}
/**
* The basis parameter value
*/
@Nullable
protected com.google.gson.JsonElement basis;
/**
* Sets the Basis
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSetBuilder withBasis(@Nullable final com.google.gson.JsonElement val) {
this.basis = val;
return this;
}
/**
* Instanciates a new WorkbookFunctionsAccrIntMParameterSetBuilder
*/
@Nullable
protected WorkbookFunctionsAccrIntMParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public WorkbookFunctionsAccrIntMParameterSet build() {
return new WorkbookFunctionsAccrIntMParameterSet(this);
}
}
/**
* Gets the functions options from the properties that have been set
* @return a list of function options for the request
*/
@Nonnull
public java.util.List getFunctionOptions() {
final ArrayList result = new ArrayList<>();
if(this.issue != null) {
result.add(new com.microsoft.graph.options.FunctionOption("issue", issue));
}
if(this.settlement != null) {
result.add(new com.microsoft.graph.options.FunctionOption("settlement", settlement));
}
if(this.rate != null) {
result.add(new com.microsoft.graph.options.FunctionOption("rate", rate));
}
if(this.par != null) {
result.add(new com.microsoft.graph.options.FunctionOption("par", par));
}
if(this.basis != null) {
result.add(new com.microsoft.graph.options.FunctionOption("basis", basis));
}
return result;
}
}