com.fireblocks.sdk.model.TransferOperationPreviewOutput 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.math.BigDecimal;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.StringJoiner;
/** TransferOperationPreviewOutput */
@JsonPropertyOrder({
TransferOperationPreviewOutput.JSON_PROPERTY_AMOUNT,
TransferOperationPreviewOutput.JSON_PROPERTY_FEE,
TransferOperationPreviewOutput.JSON_PROPERTY_IS_SIGN_REQUIRED,
TransferOperationPreviewOutput.JSON_PROPERTY_TIME_SECONDS
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TransferOperationPreviewOutput {
public static final String JSON_PROPERTY_AMOUNT = "amount";
private AssetAmount amount;
public static final String JSON_PROPERTY_FEE = "fee";
private AssetAmount fee;
public static final String JSON_PROPERTY_IS_SIGN_REQUIRED = "isSignRequired";
private Boolean isSignRequired;
public static final String JSON_PROPERTY_TIME_SECONDS = "timeSeconds";
private BigDecimal timeSeconds;
public TransferOperationPreviewOutput() {}
public TransferOperationPreviewOutput amount(AssetAmount amount) {
this.amount = amount;
return this;
}
/**
* Get amount
*
* @return amount
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public AssetAmount getAmount() {
return amount;
}
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAmount(AssetAmount amount) {
this.amount = amount;
}
public TransferOperationPreviewOutput fee(AssetAmount fee) {
this.fee = fee;
return this;
}
/**
* Get fee
*
* @return fee
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_FEE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public AssetAmount getFee() {
return fee;
}
@JsonProperty(JSON_PROPERTY_FEE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setFee(AssetAmount fee) {
this.fee = fee;
}
public TransferOperationPreviewOutput isSignRequired(Boolean isSignRequired) {
this.isSignRequired = isSignRequired;
return this;
}
/**
* Get isSignRequired
*
* @return isSignRequired
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_IS_SIGN_REQUIRED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Boolean getIsSignRequired() {
return isSignRequired;
}
@JsonProperty(JSON_PROPERTY_IS_SIGN_REQUIRED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setIsSignRequired(Boolean isSignRequired) {
this.isSignRequired = isSignRequired;
}
public TransferOperationPreviewOutput timeSeconds(BigDecimal timeSeconds) {
this.timeSeconds = timeSeconds;
return this;
}
/**
* Get timeSeconds
*
* @return timeSeconds
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TIME_SECONDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BigDecimal getTimeSeconds() {
return timeSeconds;
}
@JsonProperty(JSON_PROPERTY_TIME_SECONDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTimeSeconds(BigDecimal timeSeconds) {
this.timeSeconds = timeSeconds;
}
/** Return true if this TransferOperationPreviewOutput object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TransferOperationPreviewOutput transferOperationPreviewOutput =
(TransferOperationPreviewOutput) o;
return Objects.equals(this.amount, transferOperationPreviewOutput.amount)
&& Objects.equals(this.fee, transferOperationPreviewOutput.fee)
&& Objects.equals(
this.isSignRequired, transferOperationPreviewOutput.isSignRequired)
&& Objects.equals(this.timeSeconds, transferOperationPreviewOutput.timeSeconds);
}
@Override
public int hashCode() {
return Objects.hash(amount, fee, isSignRequired, timeSeconds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TransferOperationPreviewOutput {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" fee: ").append(toIndentedString(fee)).append("\n");
sb.append(" isSignRequired: ").append(toIndentedString(isSignRequired)).append("\n");
sb.append(" timeSeconds: ").append(toIndentedString(timeSeconds)).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 `amount` to the URL query string
if (getAmount() != null) {
joiner.add(getAmount().toUrlQueryString(prefix + "amount" + suffix));
}
// add `fee` to the URL query string
if (getFee() != null) {
joiner.add(getFee().toUrlQueryString(prefix + "fee" + suffix));
}
// add `isSignRequired` to the URL query string
if (getIsSignRequired() != null) {
joiner.add(
String.format(
"%sisSignRequired%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getIsSignRequired()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `timeSeconds` to the URL query string
if (getTimeSeconds() != null) {
joiner.add(
String.format(
"%stimeSeconds%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getTimeSeconds()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}