All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.fireblocks.sdk.model.WriteCallFunctionDto 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.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.StringJoiner;
/** WriteCallFunctionDto */
@JsonPropertyOrder({
WriteCallFunctionDto.JSON_PROPERTY_VAULT_ACCOUNT_ID,
WriteCallFunctionDto.JSON_PROPERTY_ABI_FUNCTION,
WriteCallFunctionDto.JSON_PROPERTY_AMOUNT,
WriteCallFunctionDto.JSON_PROPERTY_FEE_LEVEL,
WriteCallFunctionDto.JSON_PROPERTY_FEE,
WriteCallFunctionDto.JSON_PROPERTY_NOTE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class WriteCallFunctionDto {
public static final String JSON_PROPERTY_VAULT_ACCOUNT_ID = "vaultAccountId";
private String vaultAccountId;
public static final String JSON_PROPERTY_ABI_FUNCTION = "abiFunction";
private WriteAbiFunction abiFunction;
public static final String JSON_PROPERTY_AMOUNT = "amount";
private String amount;
/**
* Fee level for the write function transaction. interchangeable with the 'fee' field
*/
public enum FeeLevelEnum {
LOW("LOW"),
MEDIUM("MEDIUM"),
HIGH("HIGH");
private String value;
FeeLevelEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static FeeLevelEnum fromValue(String value) {
for (FeeLevelEnum b : FeeLevelEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_FEE_LEVEL = "feeLevel";
private FeeLevelEnum feeLevel;
public static final String JSON_PROPERTY_FEE = "fee";
private String fee;
public static final String JSON_PROPERTY_NOTE = "note";
private String note;
public WriteCallFunctionDto() {}
public WriteCallFunctionDto vaultAccountId(String vaultAccountId) {
this.vaultAccountId = vaultAccountId;
return this;
}
/**
* The vault account id this contract was deploy from
*
* @return vaultAccountId
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_VAULT_ACCOUNT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getVaultAccountId() {
return vaultAccountId;
}
@JsonProperty(JSON_PROPERTY_VAULT_ACCOUNT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setVaultAccountId(String vaultAccountId) {
this.vaultAccountId = vaultAccountId;
}
public WriteCallFunctionDto abiFunction(WriteAbiFunction abiFunction) {
this.abiFunction = abiFunction;
return this;
}
/**
* Get abiFunction
*
* @return abiFunction
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ABI_FUNCTION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public WriteAbiFunction getAbiFunction() {
return abiFunction;
}
@JsonProperty(JSON_PROPERTY_ABI_FUNCTION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAbiFunction(WriteAbiFunction abiFunction) {
this.abiFunction = abiFunction;
}
public WriteCallFunctionDto amount(String amount) {
this.amount = amount;
return this;
}
/**
* Amount in base asset. Being used in payable functions
*
* @return amount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAmount() {
return amount;
}
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAmount(String amount) {
this.amount = amount;
}
public WriteCallFunctionDto feeLevel(FeeLevelEnum feeLevel) {
this.feeLevel = feeLevel;
return this;
}
/**
* Fee level for the write function transaction. interchangeable with the 'fee' field
*
* @return feeLevel
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FEE_LEVEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public FeeLevelEnum getFeeLevel() {
return feeLevel;
}
@JsonProperty(JSON_PROPERTY_FEE_LEVEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFeeLevel(FeeLevelEnum feeLevel) {
this.feeLevel = feeLevel;
}
public WriteCallFunctionDto fee(String fee) {
this.fee = fee;
return this;
}
/**
* Max fee amount for the write function transaction. interchangeable with the
* 'feeLevel' field
*
* @return fee
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FEE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFee() {
return fee;
}
@JsonProperty(JSON_PROPERTY_FEE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFee(String fee) {
this.fee = fee;
}
public WriteCallFunctionDto note(String note) {
this.note = note;
return this;
}
/**
* Custom note, not sent to the blockchain, that describes the transaction at your Fireblocks
* workspace
*
* @return note
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NOTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getNote() {
return note;
}
@JsonProperty(JSON_PROPERTY_NOTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNote(String note) {
this.note = note;
}
/** Return true if this WriteCallFunctionDto object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WriteCallFunctionDto writeCallFunctionDto = (WriteCallFunctionDto) o;
return Objects.equals(this.vaultAccountId, writeCallFunctionDto.vaultAccountId)
&& Objects.equals(this.abiFunction, writeCallFunctionDto.abiFunction)
&& Objects.equals(this.amount, writeCallFunctionDto.amount)
&& Objects.equals(this.feeLevel, writeCallFunctionDto.feeLevel)
&& Objects.equals(this.fee, writeCallFunctionDto.fee)
&& Objects.equals(this.note, writeCallFunctionDto.note);
}
@Override
public int hashCode() {
return Objects.hash(vaultAccountId, abiFunction, amount, feeLevel, fee, note);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WriteCallFunctionDto {\n");
sb.append(" vaultAccountId: ").append(toIndentedString(vaultAccountId)).append("\n");
sb.append(" abiFunction: ").append(toIndentedString(abiFunction)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" feeLevel: ").append(toIndentedString(feeLevel)).append("\n");
sb.append(" fee: ").append(toIndentedString(fee)).append("\n");
sb.append(" note: ").append(toIndentedString(note)).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 `vaultAccountId` to the URL query string
if (getVaultAccountId() != null) {
joiner.add(
String.format(
"%svaultAccountId%s=%s",
prefix,
suffix,
URLEncoder.encode(
String.valueOf(getVaultAccountId()),
StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `abiFunction` to the URL query string
if (getAbiFunction() != null) {
joiner.add(getAbiFunction().toUrlQueryString(prefix + "abiFunction" + suffix));
}
// add `amount` to the URL query string
if (getAmount() != null) {
joiner.add(
String.format(
"%samount%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getAmount()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `feeLevel` to the URL query string
if (getFeeLevel() != null) {
joiner.add(
String.format(
"%sfeeLevel%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getFeeLevel()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `fee` to the URL query string
if (getFee() != null) {
joiner.add(
String.format(
"%sfee%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getFee()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
// add `note` to the URL query string
if (getNote() != null) {
joiner.add(
String.format(
"%snote%s=%s",
prefix,
suffix,
URLEncoder.encode(String.valueOf(getNote()), StandardCharsets.UTF_8)
.replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}