com.fireblocks.sdk.model.TransferOperationFailureData Maven / Gradle / Ivy
/*
* Fireblocks API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.6.2
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.fireblocks.sdk.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.StringJoiner;
/** TransferOperationFailureData */
@JsonPropertyOrder({
TransferOperationFailureData.JSON_PROPERTY_TX_ID,
TransferOperationFailureData.JSON_PROPERTY_TX_STATUS,
TransferOperationFailureData.JSON_PROPERTY_TX_SUB_STATUS
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TransferOperationFailureData {
public static final String JSON_PROPERTY_TX_ID = "txId";
private String txId;
public static final String JSON_PROPERTY_TX_STATUS = "txStatus";
private String txStatus;
public static final String JSON_PROPERTY_TX_SUB_STATUS = "txSubStatus";
private String txSubStatus;
public TransferOperationFailureData() {}
public TransferOperationFailureData txId(String txId) {
this.txId = txId;
return this;
}
/**
* Get txId
*
* @return txId
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TX_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getTxId() {
return txId;
}
@JsonProperty(JSON_PROPERTY_TX_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTxId(String txId) {
this.txId = txId;
}
public TransferOperationFailureData txStatus(String txStatus) {
this.txStatus = txStatus;
return this;
}
/**
* Get txStatus
*
* @return txStatus
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TX_STATUS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getTxStatus() {
return txStatus;
}
@JsonProperty(JSON_PROPERTY_TX_STATUS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTxStatus(String txStatus) {
this.txStatus = txStatus;
}
public TransferOperationFailureData txSubStatus(String txSubStatus) {
this.txSubStatus = txSubStatus;
return this;
}
/**
* Get txSubStatus
*
* @return txSubStatus
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TX_SUB_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTxSubStatus() {
return txSubStatus;
}
@JsonProperty(JSON_PROPERTY_TX_SUB_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTxSubStatus(String txSubStatus) {
this.txSubStatus = txSubStatus;
}
/** Return true if this TransferOperationFailure_data object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferOperationFailureData transferOperationFailureData =
(TransferOperationFailureData) o;
return Objects.equals(this.txId, transferOperationFailureData.txId)
&& Objects.equals(this.txStatus, transferOperationFailureData.txStatus)
&& Objects.equals(this.txSubStatus, transferOperationFailureData.txSubStatus);
}
@Override
public int hashCode() {
return Objects.hash(txId, txStatus, txSubStatus);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferOperationFailureData {\n");
sb.append(" txId: ").append(toIndentedString(txId)).append("\n");
sb.append(" txStatus: ").append(toIndentedString(txStatus)).append("\n");
sb.append(" txSubStatus: ").append(toIndentedString(txSubStatus)).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 ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `txId` to the URL query string
if (getTxId() != null) {
joiner.add(
String.format(
"%stxId%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getTxId()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `txStatus` to the URL query string
if (getTxStatus() != null) {
joiner.add(
String.format(
"%stxStatus%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getTxStatus()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `txSubStatus` to the URL query string
if (getTxSubStatus() != null) {
joiner.add(
String.format(
"%stxSubStatus%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getTxSubStatus()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}