io.swagger.client.model.EventLog 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 io.swagger.client.model.RecipientEvent;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.threeten.bp.OffsetDateTime;
/**
* Event logs for selected date range
*/
@ApiModel(description = "Event logs for selected date range")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-29T15:32:30.861Z")
public class EventLog {
@SerializedName("From")
private OffsetDateTime from = null;
@SerializedName("To")
private OffsetDateTime to = null;
@SerializedName("Recipients")
private List recipients = new ArrayList();
public EventLog from(OffsetDateTime from) {
this.from = from;
return this;
}
/**
* Starting date for search in YYYY-MM-DDThh:mm:ss format.
* @return from
**/
@ApiModelProperty(example = "2001-01-01T01:01:01", value = "Starting date for search in YYYY-MM-DDThh:mm:ss format.")
public OffsetDateTime getFrom() {
return from;
}
public void setFrom(OffsetDateTime from) {
this.from = from;
}
public EventLog to(OffsetDateTime 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", value = "Ending date for search in YYYY-MM-DDThh:mm:ss format.")
public OffsetDateTime getTo() {
return to;
}
public void setTo(OffsetDateTime to) {
this.to = to;
}
public EventLog recipients(List recipients) {
this.recipients = recipients;
return this;
}
public EventLog addRecipientsItem(RecipientEvent recipientsItem) {
this.recipients.add(recipientsItem);
return this;
}
/**
* Number of recipients
* @return recipients
**/
@ApiModelProperty(required = true, value = "Number of recipients")
public List getRecipients() {
return recipients;
}
public void setRecipients(List recipients) {
this.recipients = recipients;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EventLog eventLog = (EventLog) o;
return Objects.equals(this.from, eventLog.from) &&
Objects.equals(this.to, eventLog.to) &&
Objects.equals(this.recipients, eventLog.recipients);
}
@Override
public int hashCode() {
return Objects.hash(from, to, recipients);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EventLog {\n");
sb.append(" from: ").append(toIndentedString(from)).append("\n");
sb.append(" to: ").append(toIndentedString(to)).append("\n");
sb.append(" recipients: ").append(toIndentedString(recipients)).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