com.spotinst.sdkjava.model.ApiEventLog Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Date;
/**
* Created by danielsarisrael on 09/05/2021.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ApiEventLog {
//region Members
private String code;
private String message;
private String severity;
private Date createdAt;
private String link;
//endregion
//region Getter & Setter
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getSeverity() {
return severity;
}
public void setSeverity(String severity) {
this.severity = severity;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy