com.seeq.model.LogMessage 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;
/**
* LogMessage
*/
public class LogMessage {
@JsonProperty("level")
private String level = null;
@JsonProperty("message")
private String message = null;
@JsonProperty("source")
private String source = null;
@JsonProperty("time")
private String time = null;
public LogMessage level(String level) {
this.level = level;
return this;
}
/**
* Get level
* @return level
**/
@Schema(description = "")
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public LogMessage message(String message) {
this.message = message;
return this;
}
/**
* Get message
* @return message
**/
@Schema(description = "")
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public LogMessage source(String source) {
this.source = source;
return this;
}
/**
* Get source
* @return source
**/
@Schema(description = "")
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public LogMessage time(String time) {
this.time = time;
return this;
}
/**
* Get time
* @return time
**/
@Schema(description = "")
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LogMessage logMessage = (LogMessage) o;
return Objects.equals(this.level, logMessage.level) &&
Objects.equals(this.message, logMessage.message) &&
Objects.equals(this.source, logMessage.source) &&
Objects.equals(this.time, logMessage.time);
}
@Override
public int hashCode() {
return Objects.hash(level, message, source, time);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LogMessage {\n");
sb.append(" level: ").append(toIndentedString(level)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" time: ").append(toIndentedString(time)).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 ");
}
}