com.microsoft.graph.models.MessageReplyAllParameterSet 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.Message;
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 Message Reply All Parameter Set.
*/
public class MessageReplyAllParameterSet {
/**
* The message.
*
*/
@SerializedName(value = "message", alternate = {"Message"})
@Expose
@Nullable
public Message message;
/**
* The comment.
*
*/
@SerializedName(value = "comment", alternate = {"Comment"})
@Expose
@Nullable
public String comment;
/**
* Instiaciates a new MessageReplyAllParameterSet
*/
public MessageReplyAllParameterSet() {}
/**
* Instiaciates a new MessageReplyAllParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected MessageReplyAllParameterSet(@Nonnull final MessageReplyAllParameterSetBuilder builder) {
this.message = builder.message;
this.comment = builder.comment;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static MessageReplyAllParameterSetBuilder newBuilder() {
return new MessageReplyAllParameterSetBuilder();
}
/**
* Fluent builder for the MessageReplyAllParameterSet
*/
public static final class MessageReplyAllParameterSetBuilder {
/**
* The message parameter value
*/
@Nullable
protected Message message;
/**
* Sets the Message
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public MessageReplyAllParameterSetBuilder withMessage(@Nullable final Message val) {
this.message = val;
return this;
}
/**
* The comment parameter value
*/
@Nullable
protected String comment;
/**
* Sets the Comment
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public MessageReplyAllParameterSetBuilder withComment(@Nullable final String val) {
this.comment = val;
return this;
}
/**
* Instanciates a new MessageReplyAllParameterSetBuilder
*/
@Nullable
protected MessageReplyAllParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public MessageReplyAllParameterSet build() {
return new MessageReplyAllParameterSet(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.message != null) {
result.add(new com.microsoft.graph.options.FunctionOption("message", message));
}
if(this.comment != null) {
result.add(new com.microsoft.graph.options.FunctionOption("comment", comment));
}
return result;
}
}