com.microsoft.graph.models.ReportRootGetUserArchivedPrintJobsParameterSet 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.ArchivedPrintJob;
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 Report Root Get User Archived Print Jobs Parameter Set.
*/
public class ReportRootGetUserArchivedPrintJobsParameterSet {
/**
* The user Id.
*
*/
@SerializedName(value = "userId", alternate = {"UserId"})
@Expose
@Nullable
public String userId;
/**
* The start Date Time.
*
*/
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime startDateTime;
/**
* The end Date Time.
*
*/
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime endDateTime;
/**
* Instiaciates a new ReportRootGetUserArchivedPrintJobsParameterSet
*/
public ReportRootGetUserArchivedPrintJobsParameterSet() {}
/**
* Instiaciates a new ReportRootGetUserArchivedPrintJobsParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected ReportRootGetUserArchivedPrintJobsParameterSet(@Nonnull final ReportRootGetUserArchivedPrintJobsParameterSetBuilder builder) {
this.userId = builder.userId;
this.startDateTime = builder.startDateTime;
this.endDateTime = builder.endDateTime;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static ReportRootGetUserArchivedPrintJobsParameterSetBuilder newBuilder() {
return new ReportRootGetUserArchivedPrintJobsParameterSetBuilder();
}
/**
* Fluent builder for the ReportRootGetUserArchivedPrintJobsParameterSet
*/
public static final class ReportRootGetUserArchivedPrintJobsParameterSetBuilder {
/**
* The userId parameter value
*/
@Nullable
protected String userId;
/**
* Sets the UserId
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ReportRootGetUserArchivedPrintJobsParameterSetBuilder withUserId(@Nullable final String val) {
this.userId = val;
return this;
}
/**
* The startDateTime parameter value
*/
@Nullable
protected java.time.OffsetDateTime startDateTime;
/**
* Sets the StartDateTime
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ReportRootGetUserArchivedPrintJobsParameterSetBuilder withStartDateTime(@Nullable final java.time.OffsetDateTime val) {
this.startDateTime = val;
return this;
}
/**
* The endDateTime parameter value
*/
@Nullable
protected java.time.OffsetDateTime endDateTime;
/**
* Sets the EndDateTime
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ReportRootGetUserArchivedPrintJobsParameterSetBuilder withEndDateTime(@Nullable final java.time.OffsetDateTime val) {
this.endDateTime = val;
return this;
}
/**
* Instanciates a new ReportRootGetUserArchivedPrintJobsParameterSetBuilder
*/
@Nullable
protected ReportRootGetUserArchivedPrintJobsParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public ReportRootGetUserArchivedPrintJobsParameterSet build() {
return new ReportRootGetUserArchivedPrintJobsParameterSet(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.userId != null) {
result.add(new com.microsoft.graph.options.FunctionOption("userId", userId));
}
if(this.startDateTime != null) {
result.add(new com.microsoft.graph.options.FunctionOption("startDateTime", startDateTime));
}
if(this.endDateTime != null) {
result.add(new com.microsoft.graph.options.FunctionOption("endDateTime", endDateTime));
}
return result;
}
}