com.microsoft.graph.models.WorkbookFunctionsPriceMatParameterSet 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 Price Mat Parameter Set.
*/
public class WorkbookFunctionsPriceMatParameterSet {
/**
* The settlement.
*
*/
@SerializedName(value = "settlement", alternate = {"Settlement"})
@Expose
@Nullable
public com.google.gson.JsonElement settlement;
/**
* The maturity.
*
*/
@SerializedName(value = "maturity", alternate = {"Maturity"})
@Expose
@Nullable
public com.google.gson.JsonElement maturity;
/**
* The issue.
*
*/
@SerializedName(value = "issue", alternate = {"Issue"})
@Expose
@Nullable
public com.google.gson.JsonElement issue;
/**
* The rate.
*
*/
@SerializedName(value = "rate", alternate = {"Rate"})
@Expose
@Nullable
public com.google.gson.JsonElement rate;
/**
* The yld.
*
*/
@SerializedName(value = "yld", alternate = {"Yld"})
@Expose
@Nullable
public com.google.gson.JsonElement yld;
/**
* The basis.
*
*/
@SerializedName(value = "basis", alternate = {"Basis"})
@Expose
@Nullable
public com.google.gson.JsonElement basis;
/**
* Instiaciates a new WorkbookFunctionsPriceMatParameterSet
*/
public WorkbookFunctionsPriceMatParameterSet() {}
/**
* Instiaciates a new WorkbookFunctionsPriceMatParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected WorkbookFunctionsPriceMatParameterSet(@Nonnull final WorkbookFunctionsPriceMatParameterSetBuilder builder) {
this.settlement = builder.settlement;
this.maturity = builder.maturity;
this.issue = builder.issue;
this.rate = builder.rate;
this.yld = builder.yld;
this.basis = builder.basis;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static WorkbookFunctionsPriceMatParameterSetBuilder newBuilder() {
return new WorkbookFunctionsPriceMatParameterSetBuilder();
}
/**
* Fluent builder for the WorkbookFunctionsPriceMatParameterSet
*/
public static final class WorkbookFunctionsPriceMatParameterSetBuilder {
/**
* 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 WorkbookFunctionsPriceMatParameterSetBuilder withSettlement(@Nullable final com.google.gson.JsonElement val) {
this.settlement = val;
return this;
}
/**
* The maturity parameter value
*/
@Nullable
protected com.google.gson.JsonElement maturity;
/**
* Sets the Maturity
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsPriceMatParameterSetBuilder withMaturity(@Nullable final com.google.gson.JsonElement val) {
this.maturity = val;
return this;
}
/**
* 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 WorkbookFunctionsPriceMatParameterSetBuilder withIssue(@Nullable final com.google.gson.JsonElement val) {
this.issue = 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 WorkbookFunctionsPriceMatParameterSetBuilder withRate(@Nullable final com.google.gson.JsonElement val) {
this.rate = val;
return this;
}
/**
* The yld parameter value
*/
@Nullable
protected com.google.gson.JsonElement yld;
/**
* Sets the Yld
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsPriceMatParameterSetBuilder withYld(@Nullable final com.google.gson.JsonElement val) {
this.yld = 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 WorkbookFunctionsPriceMatParameterSetBuilder withBasis(@Nullable final com.google.gson.JsonElement val) {
this.basis = val;
return this;
}
/**
* Instanciates a new WorkbookFunctionsPriceMatParameterSetBuilder
*/
@Nullable
protected WorkbookFunctionsPriceMatParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public WorkbookFunctionsPriceMatParameterSet build() {
return new WorkbookFunctionsPriceMatParameterSet(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.settlement != null) {
result.add(new com.microsoft.graph.options.FunctionOption("settlement", settlement));
}
if(this.maturity != null) {
result.add(new com.microsoft.graph.options.FunctionOption("maturity", maturity));
}
if(this.issue != null) {
result.add(new com.microsoft.graph.options.FunctionOption("issue", issue));
}
if(this.rate != null) {
result.add(new com.microsoft.graph.options.FunctionOption("rate", rate));
}
if(this.yld != null) {
result.add(new com.microsoft.graph.options.FunctionOption("yld", yld));
}
if(this.basis != null) {
result.add(new com.microsoft.graph.options.FunctionOption("basis", basis));
}
return result;
}
}