com.seeq.model.ExportItemV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* 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 com.seeq.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.v3.oas.annotations.media.Schema;
/**
* A list of Series and Capsules to be exported
*/
@Schema(description = "A list of Series and Capsules to be exported")
public class ExportItemV1 {
@JsonProperty("end")
private String end = null;
@JsonProperty("id")
private String id = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("start")
private String start = null;
public ExportItemV1 end(String end) {
this.end = end;
return this;
}
/**
* The ISO 8601 end time
* @return end
**/
@Schema(required = true, description = "The ISO 8601 end time")
public String getEnd() {
return end;
}
public void setEnd(String end) {
this.end = end;
}
public ExportItemV1 id(String id) {
this.id = id;
return this;
}
/**
* The unique id of a signal or condition
* @return id
**/
@Schema(required = true, description = "The unique id of a signal or condition")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public ExportItemV1 name(String name) {
this.name = name;
return this;
}
/**
* Human readable name. Null or whitespace names are not permitted.
* @return name
**/
@Schema(required = true, description = "Human readable name. Null or whitespace names are not permitted.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ExportItemV1 start(String start) {
this.start = start;
return this;
}
/**
* The ISO 8601 start time
* @return start
**/
@Schema(required = true, description = "The ISO 8601 start time")
public String getStart() {
return start;
}
public void setStart(String start) {
this.start = start;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ExportItemV1 exportItemV1 = (ExportItemV1) o;
return Objects.equals(this.end, exportItemV1.end) &&
Objects.equals(this.id, exportItemV1.id) &&
Objects.equals(this.name, exportItemV1.name) &&
Objects.equals(this.start, exportItemV1.start);
}
@Override
public int hashCode() {
return Objects.hash(end, id, name, start);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExportItemV1 {\n");
sb.append(" end: ").append(toIndentedString(end)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" start: ").append(toIndentedString(start)).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 ");
}
}