com.microsoft.graph.models.WorkbookRangeRowsBelowParameterSet 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.WorkbookRange;
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 Range Rows Below Parameter Set.
*/
public class WorkbookRangeRowsBelowParameterSet {
/**
* The count.
*
*/
@SerializedName(value = "count", alternate = {"Count"})
@Expose
@Nullable
public Integer count;
/**
* Instiaciates a new WorkbookRangeRowsBelowParameterSet
*/
public WorkbookRangeRowsBelowParameterSet() {}
/**
* Instiaciates a new WorkbookRangeRowsBelowParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected WorkbookRangeRowsBelowParameterSet(@Nonnull final WorkbookRangeRowsBelowParameterSetBuilder builder) {
this.count = builder.count;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static WorkbookRangeRowsBelowParameterSetBuilder newBuilder() {
return new WorkbookRangeRowsBelowParameterSetBuilder();
}
/**
* Fluent builder for the WorkbookRangeRowsBelowParameterSet
*/
public static final class WorkbookRangeRowsBelowParameterSetBuilder {
/**
* The count parameter value
*/
@Nullable
protected Integer count;
/**
* Sets the Count
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public WorkbookRangeRowsBelowParameterSetBuilder withCount(@Nullable final Integer val) {
this.count = val;
return this;
}
/**
* Instanciates a new WorkbookRangeRowsBelowParameterSetBuilder
*/
@Nullable
protected WorkbookRangeRowsBelowParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public WorkbookRangeRowsBelowParameterSet build() {
return new WorkbookRangeRowsBelowParameterSet(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.count != null) {
result.add(new com.microsoft.graph.options.FunctionOption("count", count));
}
return result;
}
}