io.logicdrop.openapi.models.EmailMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparks-openapi-models Show documentation
Show all versions of sparks-openapi-models Show documentation
Logicdrop Sparks OpenAPI client
/*
* Sparks OpenAPI
* Generated documentation for the Logicdrop Sparks API and OpenAPI clients. Logicdrop Sparks lets users build rules, analyze data, and automate documents. Use it to make decisions faster, generate documents better, and learn from your data. ### Documentation - [User Documentation](https://docs.logicdrop.com) ### Modules - [Sparks Compute](https://docs.logicdrop.com/rules/introduction) - [Sparks Decision Tables](https://docs.logicdrop.com/rules/authoring-decision-tables) - [Sparks Documents](https://docs.logicdrop.com/documents/introduction) ### Clients - [OpenAPI Clients](https://docs.logicdrop.com/development/sample-clients) ### Security - [Authorizing API Requests](https://docs.logicdrop.com/development/authorization)
*
* The version of the OpenAPI document: v_VERSION_, build# _BUILD_
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.logicdrop.openapi.models;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* EmailMessage
*/
@JsonPropertyOrder({
EmailMessage.JSON_PROPERTY_PROJECT,
EmailMessage.JSON_PROPERTY_TEMPLATE,
EmailMessage.JSON_PROPERTY_VERSION,
EmailMessage.JSON_PROPERTY_FROM,
EmailMessage.JSON_PROPERTY_REPLY_TO,
EmailMessage.JSON_PROPERTY_TO,
EmailMessage.JSON_PROPERTY_CC,
EmailMessage.JSON_PROPERTY_BCC,
EmailMessage.JSON_PROPERTY_PRIORITY,
EmailMessage.JSON_PROPERTY_SUBJECT,
EmailMessage.JSON_PROPERTY_BODY,
EmailMessage.JSON_PROPERTY_PROPERTIES,
EmailMessage.JSON_PROPERTY_ATTACHMENTS
})
public class EmailMessage {
public static final String JSON_PROPERTY_PROJECT = "project";
private String project;
public static final String JSON_PROPERTY_TEMPLATE = "template";
private String template;
public static final String JSON_PROPERTY_VERSION = "version";
private String version;
public static final String JSON_PROPERTY_FROM = "from";
private String from;
public static final String JSON_PROPERTY_REPLY_TO = "replyTo";
private String replyTo;
public static final String JSON_PROPERTY_TO = "to";
private List to = null;
public static final String JSON_PROPERTY_CC = "cc";
private List cc = null;
public static final String JSON_PROPERTY_BCC = "bcc";
private List bcc = null;
public static final String JSON_PROPERTY_PRIORITY = "priority";
private Integer priority;
public static final String JSON_PROPERTY_SUBJECT = "subject";
private String subject;
public static final String JSON_PROPERTY_BODY = "body";
private String body;
public static final String JSON_PROPERTY_PROPERTIES = "properties";
private Map properties = null;
public static final String JSON_PROPERTY_ATTACHMENTS = "attachments";
private Map attachments = null;
public EmailMessage project(String project) {
this.project = project;
return this;
}
/**
* Get project
* @return project
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PROJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getProject() {
return project;
}
public void setProject(String project) {
this.project = project;
}
public EmailMessage template(String template) {
this.template = template;
return this;
}
/**
* Get template
* @return template
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_TEMPLATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTemplate() {
return template;
}
public void setTemplate(String template) {
this.template = template;
}
public EmailMessage version(String version) {
this.version = version;
return this;
}
/**
* Get version
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public EmailMessage from(String from) {
this.from = from;
return this;
}
/**
* Get from
* @return from
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_FROM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFrom() {
return from;
}
public void setFrom(String from) {
this.from = from;
}
public EmailMessage replyTo(String replyTo) {
this.replyTo = replyTo;
return this;
}
/**
* Get replyTo
* @return replyTo
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_REPLY_TO)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getReplyTo() {
return replyTo;
}
public void setReplyTo(String replyTo) {
this.replyTo = replyTo;
}
public EmailMessage to(List to) {
this.to = to;
return this;
}
public EmailMessage addToItem(String toItem) {
if (this.to == null) {
this.to = new ArrayList<>();
}
this.to.add(toItem);
return this;
}
/**
* Get to
* @return to
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_TO)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTo() {
return to;
}
public void setTo(List to) {
this.to = to;
}
public EmailMessage cc(List cc) {
this.cc = cc;
return this;
}
public EmailMessage addCcItem(String ccItem) {
if (this.cc == null) {
this.cc = new ArrayList<>();
}
this.cc.add(ccItem);
return this;
}
/**
* Get cc
* @return cc
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getCc() {
return cc;
}
public void setCc(List cc) {
this.cc = cc;
}
public EmailMessage bcc(List bcc) {
this.bcc = bcc;
return this;
}
public EmailMessage addBccItem(String bccItem) {
if (this.bcc == null) {
this.bcc = new ArrayList<>();
}
this.bcc.add(bccItem);
return this;
}
/**
* Get bcc
* @return bcc
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_BCC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getBcc() {
return bcc;
}
public void setBcc(List bcc) {
this.bcc = bcc;
}
public EmailMessage priority(Integer priority) {
this.priority = priority;
return this;
}
/**
* Get priority
* @return priority
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getPriority() {
return priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public EmailMessage subject(String subject) {
this.subject = subject;
return this;
}
/**
* Get subject
* @return subject
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SUBJECT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
public EmailMessage body(String body) {
this.body = body;
return this;
}
/**
* Get body
* @return body
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_BODY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public EmailMessage properties(Map properties) {
this.properties = properties;
return this;
}
public EmailMessage putPropertiesItem(String key, Object propertiesItem) {
if (this.properties == null) {
this.properties = new HashMap<>();
}
this.properties.put(key, propertiesItem);
return this;
}
/**
* Get properties
* @return properties
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PROPERTIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public EmailMessage attachments(Map attachments) {
this.attachments = attachments;
return this;
}
public EmailMessage putAttachmentsItem(String key, String attachmentsItem) {
if (this.attachments == null) {
this.attachments = new HashMap<>();
}
this.attachments.put(key, attachmentsItem);
return this;
}
/**
* Get attachments
* @return attachments
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_ATTACHMENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getAttachments() {
return attachments;
}
public void setAttachments(Map attachments) {
this.attachments = attachments;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmailMessage emailMessage = (EmailMessage) o;
return Objects.equals(this.project, emailMessage.project) &&
Objects.equals(this.template, emailMessage.template) &&
Objects.equals(this.version, emailMessage.version) &&
Objects.equals(this.from, emailMessage.from) &&
Objects.equals(this.replyTo, emailMessage.replyTo) &&
Objects.equals(this.to, emailMessage.to) &&
Objects.equals(this.cc, emailMessage.cc) &&
Objects.equals(this.bcc, emailMessage.bcc) &&
Objects.equals(this.priority, emailMessage.priority) &&
Objects.equals(this.subject, emailMessage.subject) &&
Objects.equals(this.body, emailMessage.body) &&
Objects.equals(this.properties, emailMessage.properties) &&
Objects.equals(this.attachments, emailMessage.attachments);
}
@Override
public int hashCode() {
return Objects.hash(project, template, version, from, replyTo, to, cc, bcc, priority, subject, body, properties, attachments);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmailMessage {\n");
sb.append(" project: ").append(toIndentedString(project)).append("\n");
sb.append(" template: ").append(toIndentedString(template)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" from: ").append(toIndentedString(from)).append("\n");
sb.append(" replyTo: ").append(toIndentedString(replyTo)).append("\n");
sb.append(" to: ").append(toIndentedString(to)).append("\n");
sb.append(" cc: ").append(toIndentedString(cc)).append("\n");
sb.append(" bcc: ").append(toIndentedString(bcc)).append("\n");
sb.append(" priority: ").append(toIndentedString(priority)).append("\n");
sb.append(" subject: ").append(toIndentedString(subject)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).append("\n");
sb.append(" properties: ").append(toIndentedString(properties)).append("\n");
sb.append(" attachments: ").append(toIndentedString(attachments)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}