io.swagger.client.model.SubaccountSummary 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;
/**
* SubaccountSummary
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-29T15:32:30.861Z")
public class SubaccountSummary {
@SerializedName("EmailsSentToday")
private Integer emailsSentToday = null;
@SerializedName("EmailsSentThisMonth")
private Integer emailsSentThisMonth = null;
public SubaccountSummary emailsSentToday(Integer emailsSentToday) {
this.emailsSentToday = emailsSentToday;
return this;
}
/**
* Get emailsSentToday
* @return emailsSentToday
**/
@ApiModelProperty(required = true, value = "")
public Integer getEmailsSentToday() {
return emailsSentToday;
}
public void setEmailsSentToday(Integer emailsSentToday) {
this.emailsSentToday = emailsSentToday;
}
public SubaccountSummary emailsSentThisMonth(Integer emailsSentThisMonth) {
this.emailsSentThisMonth = emailsSentThisMonth;
return this;
}
/**
* Get emailsSentThisMonth
* @return emailsSentThisMonth
**/
@ApiModelProperty(required = true, value = "")
public Integer getEmailsSentThisMonth() {
return emailsSentThisMonth;
}
public void setEmailsSentThisMonth(Integer emailsSentThisMonth) {
this.emailsSentThisMonth = emailsSentThisMonth;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SubaccountSummary subaccountSummary = (SubaccountSummary) o;
return Objects.equals(this.emailsSentToday, subaccountSummary.emailsSentToday) &&
Objects.equals(this.emailsSentThisMonth, subaccountSummary.emailsSentThisMonth);
}
@Override
public int hashCode() {
return Objects.hash(emailsSentToday, emailsSentThisMonth);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SubaccountSummary {\n");
sb.append(" emailsSentToday: ").append(toIndentedString(emailsSentToday)).append("\n");
sb.append(" emailsSentThisMonth: ").append(toIndentedString(emailsSentThisMonth)).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