com.seeq.model.SendLogsInputV1 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;
/**
* SendLogsInputV1
*/
public class SendLogsInputV1 {
@JsonProperty("description")
private String description = null;
@JsonProperty("email")
private String email = null;
@JsonProperty("name")
private String name = null;
public SendLogsInputV1 description(String description) {
this.description = description;
return this;
}
/**
* The description to be sent with the logs
* @return description
**/
@Schema(required = true, description = "The description to be sent with the logs")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public SendLogsInputV1 email(String email) {
this.email = email;
return this;
}
/**
* The log sender's email
* @return email
**/
@Schema(required = true, description = "The log sender's email")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public SendLogsInputV1 name(String name) {
this.name = name;
return this;
}
/**
* The log sender's name
* @return name
**/
@Schema(description = "The log sender's name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SendLogsInputV1 sendLogsInputV1 = (SendLogsInputV1) o;
return Objects.equals(this.description, sendLogsInputV1.description) &&
Objects.equals(this.email, sendLogsInputV1.email) &&
Objects.equals(this.name, sendLogsInputV1.name);
}
@Override
public int hashCode() {
return Objects.hash(description, email, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SendLogsInputV1 {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 ");
}
}