com.microsoft.graph.models.WorkbookFunctionsCoupDaysParameterSet 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 Coup Days Parameter Set.
*/
public class WorkbookFunctionsCoupDaysParameterSet {
/**
* 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 frequency.
*
*/
@SerializedName(value = "frequency", alternate = {"Frequency"})
@Expose
@Nullable
public com.google.gson.JsonElement frequency;
/**
* The basis.
*
*/
@SerializedName(value = "basis", alternate = {"Basis"})
@Expose
@Nullable
public com.google.gson.JsonElement basis;
/**
* Instiaciates a new WorkbookFunctionsCoupDaysParameterSet
*/
public WorkbookFunctionsCoupDaysParameterSet() {}
/**
* Instiaciates a new WorkbookFunctionsCoupDaysParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected WorkbookFunctionsCoupDaysParameterSet(@Nonnull final WorkbookFunctionsCoupDaysParameterSetBuilder builder) {
this.settlement = builder.settlement;
this.maturity = builder.maturity;
this.frequency = builder.frequency;
this.basis = builder.basis;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static WorkbookFunctionsCoupDaysParameterSetBuilder newBuilder() {
return new WorkbookFunctionsCoupDaysParameterSetBuilder();
}
/**
* Fluent builder for the WorkbookFunctionsCoupDaysParameterSet
*/
public static final class WorkbookFunctionsCoupDaysParameterSetBuilder {
/**
* 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 WorkbookFunctionsCoupDaysParameterSetBuilder 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 WorkbookFunctionsCoupDaysParameterSetBuilder withMaturity(@Nullable final com.google.gson.JsonElement val) {
this.maturity = val;
return this;
}
/**
* The frequency parameter value
*/
@Nullable
protected com.google.gson.JsonElement frequency;
/**
* Sets the Frequency
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookFunctionsCoupDaysParameterSetBuilder withFrequency(@Nullable final com.google.gson.JsonElement val) {
this.frequency = 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 WorkbookFunctionsCoupDaysParameterSetBuilder withBasis(@Nullable final com.google.gson.JsonElement val) {
this.basis = val;
return this;
}
/**
* Instanciates a new WorkbookFunctionsCoupDaysParameterSetBuilder
*/
@Nullable
protected WorkbookFunctionsCoupDaysParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public WorkbookFunctionsCoupDaysParameterSet build() {
return new WorkbookFunctionsCoupDaysParameterSet(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.frequency != null) {
result.add(new com.microsoft.graph.options.FunctionOption("frequency", frequency));
}
if(this.basis != null) {
result.add(new com.microsoft.graph.options.FunctionOption("basis", basis));
}
return result;
}
}