io.logicdrop.openapi.models.EmailResult 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.time.OffsetDateTime;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* EmailResult
*/
@JsonPropertyOrder({
EmailResult.JSON_PROPERTY_ID,
EmailResult.JSON_PROPERTY_SUBJECT,
EmailResult.JSON_PROPERTY_CREATED,
EmailResult.JSON_PROPERTY_SENT,
EmailResult.JSON_PROPERTY_SUCCESS,
EmailResult.JSON_PROPERTY_MESSAGE
})
public class EmailResult {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_SUBJECT = "subject";
private String subject;
public static final String JSON_PROPERTY_CREATED = "created";
private OffsetDateTime created;
public static final String JSON_PROPERTY_SENT = "sent";
private OffsetDateTime sent;
public static final String JSON_PROPERTY_SUCCESS = "success";
private Boolean success;
public static final String JSON_PROPERTY_MESSAGE = "message";
private String message;
public EmailResult id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public EmailResult 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 EmailResult created(OffsetDateTime created) {
this.created = created;
return this;
}
/**
* Get created
* @return created
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getCreated() {
return created;
}
public void setCreated(OffsetDateTime created) {
this.created = created;
}
public EmailResult sent(OffsetDateTime sent) {
this.sent = sent;
return this;
}
/**
* Get sent
* @return sent
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public OffsetDateTime getSent() {
return sent;
}
public void setSent(OffsetDateTime sent) {
this.sent = sent;
}
public EmailResult success(Boolean success) {
this.success = success;
return this;
}
/**
* Get success
* @return success
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SUCCESS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getSuccess() {
return success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public EmailResult message(String message) {
this.message = message;
return this;
}
/**
* Get message
* @return message
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmailResult emailResult = (EmailResult) o;
return Objects.equals(this.id, emailResult.id) &&
Objects.equals(this.subject, emailResult.subject) &&
Objects.equals(this.created, emailResult.created) &&
Objects.equals(this.sent, emailResult.sent) &&
Objects.equals(this.success, emailResult.success) &&
Objects.equals(this.message, emailResult.message);
}
@Override
public int hashCode() {
return Objects.hash(id, subject, created, sent, success, message);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmailResult {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" subject: ").append(toIndentedString(subject)).append("\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" sent: ").append(toIndentedString(sent)).append("\n");
sb.append(" success: ").append(toIndentedString(success)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).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 ");
}
}