io.swagger.client.model.SMS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticemail-RESTful-API Show documentation
Show all versions of elasticemail-RESTful-API Show documentation
Send your emails with ElasticEmail API
The newest version!
/*
* elasticemail_Restful_api
* Send your emails with ElasticEmail API
*
* OpenAPI spec version: 3.0.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
*
*/
@ApiModel(description = "")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-29T15:32:30.861Z")
public class SMS {
@SerializedName("Body")
private String body = null;
@SerializedName("To")
private String to = null;
public SMS body(String body) {
this.body = body;
return this;
}
/**
* Body (text) of your message.
* @return body
**/
@ApiModelProperty(example = "Hello", required = true, value = "Body (text) of your message.")
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public SMS to(String to) {
this.to = to;
return this;
}
/**
* Ending date for search in YYYY-MM-DDThh:mm:ss format.
* @return to
**/
@ApiModelProperty(example = "2001-01-01T01:01:01", required = true, value = "Ending date for search in YYYY-MM-DDThh:mm:ss format.")
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SMS SMS = (SMS) o;
return Objects.equals(this.body, SMS.body) &&
Objects.equals(this.to, SMS.to);
}
@Override
public int hashCode() {
return Objects.hash(body, to);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SMS {\n");
sb.append(" body: ").append(toIndentedString(body)).append("\n");
sb.append(" to: ").append(toIndentedString(to)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy