org.finra.herd.sdk.model.StatusTimeline Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
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 org.joda.time.DateTime;
/**
* StatusTimeline
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class StatusTimeline {
@JsonProperty("creationTime")
private DateTime creationTime = null;
@JsonProperty("readyTime")
private DateTime readyTime = null;
@JsonProperty("endTime")
private DateTime endTime = null;
public StatusTimeline creationTime(DateTime creationTime) {
this.creationTime = creationTime;
return this;
}
/**
* The creation date and time of the cluster
* @return creationTime
**/
@ApiModelProperty(value = "The creation date and time of the cluster")
public DateTime getCreationTime() {
return creationTime;
}
public void setCreationTime(DateTime creationTime) {
this.creationTime = creationTime;
}
public StatusTimeline readyTime(DateTime readyTime) {
this.readyTime = readyTime;
return this;
}
/**
* The date and time when the cluster was ready to execute steps
* @return readyTime
**/
@ApiModelProperty(value = "The date and time when the cluster was ready to execute steps")
public DateTime getReadyTime() {
return readyTime;
}
public void setReadyTime(DateTime readyTime) {
this.readyTime = readyTime;
}
public StatusTimeline endTime(DateTime endTime) {
this.endTime = endTime;
return this;
}
/**
* The date and time when the cluster was terminated
* @return endTime
**/
@ApiModelProperty(value = "The date and time when the cluster was terminated")
public DateTime getEndTime() {
return endTime;
}
public void setEndTime(DateTime endTime) {
this.endTime = endTime;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StatusTimeline statusTimeline = (StatusTimeline) o;
return Objects.equals(this.creationTime, statusTimeline.creationTime) &&
Objects.equals(this.readyTime, statusTimeline.readyTime) &&
Objects.equals(this.endTime, statusTimeline.endTime);
}
@Override
public int hashCode() {
return Objects.hash(creationTime, readyTime, endTime);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StatusTimeline {\n");
sb.append(" creationTime: ").append(toIndentedString(creationTime)).append("\n");
sb.append(" readyTime: ").append(toIndentedString(readyTime)).append("\n");
sb.append(" endTime: ").append(toIndentedString(endTime)).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 ");
}
}