Model.InlineResponse2015 Maven / Gradle / Ivy
/*
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* 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 Model;
import java.util.Objects;
import java.util.Arrays;
import Model.Kmsegressv2keysasymKeyInformation;
import Model.Kmsegressv2keyssymClientReferenceInformation;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Egress Asymmetric Key Information Response.
*/
@ApiModel(description = "Egress Asymmetric Key Information Response. ")
public class InlineResponse2015 {
@SerializedName("submitTimeUtc")
private String submitTimeUtc = null;
@SerializedName("status")
private String status = null;
@SerializedName("clientReferenceInformation")
private Kmsegressv2keyssymClientReferenceInformation clientReferenceInformation = null;
@SerializedName("keyInformation")
private Kmsegressv2keysasymKeyInformation keyInformation = null;
public InlineResponse2015 submitTimeUtc(String submitTimeUtc) {
this.submitTimeUtc = submitTimeUtc;
return this;
}
/**
* Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` Example `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC.
* @return submitTimeUtc
**/
@ApiModelProperty(value = "Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` Example `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. ")
public String getSubmitTimeUtc() {
return submitTimeUtc;
}
public void setSubmitTimeUtc(String submitTimeUtc) {
this.submitTimeUtc = submitTimeUtc;
}
public InlineResponse2015 status(String status) {
this.status = status;
return this;
}
/**
* The status of the submitted transaction. Possible values: - ACCEPTED
* @return status
**/
@ApiModelProperty(value = "The status of the submitted transaction. Possible values: - ACCEPTED ")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public InlineResponse2015 clientReferenceInformation(Kmsegressv2keyssymClientReferenceInformation clientReferenceInformation) {
this.clientReferenceInformation = clientReferenceInformation;
return this;
}
/**
* Get clientReferenceInformation
* @return clientReferenceInformation
**/
@ApiModelProperty(value = "")
public Kmsegressv2keyssymClientReferenceInformation getClientReferenceInformation() {
return clientReferenceInformation;
}
public void setClientReferenceInformation(Kmsegressv2keyssymClientReferenceInformation clientReferenceInformation) {
this.clientReferenceInformation = clientReferenceInformation;
}
public InlineResponse2015 keyInformation(Kmsegressv2keysasymKeyInformation keyInformation) {
this.keyInformation = keyInformation;
return this;
}
/**
* Get keyInformation
* @return keyInformation
**/
@ApiModelProperty(value = "")
public Kmsegressv2keysasymKeyInformation getKeyInformation() {
return keyInformation;
}
public void setKeyInformation(Kmsegressv2keysasymKeyInformation keyInformation) {
this.keyInformation = keyInformation;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InlineResponse2015 inlineResponse2015 = (InlineResponse2015) o;
return Objects.equals(this.submitTimeUtc, inlineResponse2015.submitTimeUtc) &&
Objects.equals(this.status, inlineResponse2015.status) &&
Objects.equals(this.clientReferenceInformation, inlineResponse2015.clientReferenceInformation) &&
Objects.equals(this.keyInformation, inlineResponse2015.keyInformation);
}
@Override
public int hashCode() {
return Objects.hash(submitTimeUtc, status, clientReferenceInformation, keyInformation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InlineResponse2015 {\n");
sb.append(" submitTimeUtc: ").append(toIndentedString(submitTimeUtc)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" clientReferenceInformation: ").append(toIndentedString(clientReferenceInformation)).append("\n");
sb.append(" keyInformation: ").append(toIndentedString(keyInformation)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy