dev.bf2.ffm.ams.client.models.CertificateSerial Maven / Gradle / Ivy
/*
* Account Management Service API
* Manage user subscriptions and clusters
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.bf2.ffm.ams.client.models;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* CertificateSerial
*/
@JsonPropertyOrder({
CertificateSerial.JSON_PROPERTY_CREATED,
CertificateSerial.JSON_PROPERTY_EXPIRATION,
CertificateSerial.JSON_PROPERTY_ID,
CertificateSerial.JSON_PROPERTY_SERIAL,
CertificateSerial.JSON_PROPERTY_UPDATED
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class CertificateSerial {
public static final String JSON_PROPERTY_CREATED = "created";
private OffsetDateTime created;
public static final String JSON_PROPERTY_EXPIRATION = "expiration";
private OffsetDateTime expiration;
public static final String JSON_PROPERTY_ID = "id";
private Long id;
public static final String JSON_PROPERTY_SERIAL = "serial";
private Long serial;
public static final String JSON_PROPERTY_UPDATED = "updated";
private OffsetDateTime updated;
public CertificateSerial() {
}
public CertificateSerial created(OffsetDateTime created) {
this.created = created;
return this;
}
/**
* Get created
* @return created
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getCreated() {
return created;
}
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreated(OffsetDateTime created) {
this.created = created;
}
public CertificateSerial expiration(OffsetDateTime expiration) {
this.expiration = expiration;
return this;
}
/**
* Get expiration
* @return expiration
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_EXPIRATION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getExpiration() {
return expiration;
}
@JsonProperty(JSON_PROPERTY_EXPIRATION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setExpiration(OffsetDateTime expiration) {
this.expiration = expiration;
}
public CertificateSerial id(Long id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(Long id) {
this.id = id;
}
public CertificateSerial serial(Long serial) {
this.serial = serial;
return this;
}
/**
* Get serial
* @return serial
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_SERIAL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getSerial() {
return serial;
}
@JsonProperty(JSON_PROPERTY_SERIAL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSerial(Long serial) {
this.serial = serial;
}
public CertificateSerial updated(OffsetDateTime updated) {
this.updated = updated;
return this;
}
/**
* Get updated
* @return updated
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_UPDATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getUpdated() {
return updated;
}
@JsonProperty(JSON_PROPERTY_UPDATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUpdated(OffsetDateTime updated) {
this.updated = updated;
}
/**
* Return true if this CertificateSerial object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CertificateSerial certificateSerial = (CertificateSerial) o;
return Objects.equals(this.created, certificateSerial.created) &&
Objects.equals(this.expiration, certificateSerial.expiration) &&
Objects.equals(this.id, certificateSerial.id) &&
Objects.equals(this.serial, certificateSerial.serial) &&
Objects.equals(this.updated, certificateSerial.updated);
}
@Override
public int hashCode() {
return Objects.hash(created, expiration, id, serial, updated);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CertificateSerial {\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" expiration: ").append(toIndentedString(expiration)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" serial: ").append(toIndentedString(serial)).append("\n");
sb.append(" updated: ").append(toIndentedString(updated)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}