All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fireblocks.sdk.model.CreatePayoutRequest 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.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.StringJoiner;

/** CreatePayoutRequest */
@JsonPropertyOrder({
    CreatePayoutRequest.JSON_PROPERTY_PAYMENT_ACCOUNT,
    CreatePayoutRequest.JSON_PROPERTY_INSTRUCTION_SET
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class CreatePayoutRequest {
    public static final String JSON_PROPERTY_PAYMENT_ACCOUNT = "paymentAccount";
    private PaymentAccount paymentAccount;

    public static final String JSON_PROPERTY_INSTRUCTION_SET = "instructionSet";
    private List instructionSet = new ArrayList<>();

    public CreatePayoutRequest() {}

    public CreatePayoutRequest paymentAccount(PaymentAccount paymentAccount) {
        this.paymentAccount = paymentAccount;
        return this;
    }

    /**
     * Get paymentAccount
     *
     * @return paymentAccount
     */
    @jakarta.annotation.Nonnull
    @JsonProperty(JSON_PROPERTY_PAYMENT_ACCOUNT)
    @JsonInclude(value = JsonInclude.Include.ALWAYS)
    public PaymentAccount getPaymentAccount() {
        return paymentAccount;
    }

    @JsonProperty(JSON_PROPERTY_PAYMENT_ACCOUNT)
    @JsonInclude(value = JsonInclude.Include.ALWAYS)
    public void setPaymentAccount(PaymentAccount paymentAccount) {
        this.paymentAccount = paymentAccount;
    }

    public CreatePayoutRequest instructionSet(List instructionSet) {
        this.instructionSet = instructionSet;
        return this;
    }

    public CreatePayoutRequest addInstructionSetItem(PayoutInstruction instructionSetItem) {
        if (this.instructionSet == null) {
            this.instructionSet = new ArrayList<>();
        }
        this.instructionSet.add(instructionSetItem);
        return this;
    }

    /**
     * Get instructionSet
     *
     * @return instructionSet
     */
    @jakarta.annotation.Nonnull
    @JsonProperty(JSON_PROPERTY_INSTRUCTION_SET)
    @JsonInclude(value = JsonInclude.Include.ALWAYS)
    public List getInstructionSet() {
        return instructionSet;
    }

    @JsonProperty(JSON_PROPERTY_INSTRUCTION_SET)
    @JsonInclude(value = JsonInclude.Include.ALWAYS)
    public void setInstructionSet(List instructionSet) {
        this.instructionSet = instructionSet;
    }

    /** Return true if this CreatePayoutRequest object is equal to o. */
    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        CreatePayoutRequest createPayoutRequest = (CreatePayoutRequest) o;
        return Objects.equals(this.paymentAccount, createPayoutRequest.paymentAccount)
                && Objects.equals(this.instructionSet, createPayoutRequest.instructionSet);
    }

    @Override
    public int hashCode() {
        return Objects.hash(paymentAccount, instructionSet);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class CreatePayoutRequest {\n");
        sb.append("    paymentAccount: ").append(toIndentedString(paymentAccount)).append("\n");
        sb.append("    instructionSet: ").append(toIndentedString(instructionSet)).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 `paymentAccount` to the URL query string
        if (getPaymentAccount() != null) {
            joiner.add(getPaymentAccount().toUrlQueryString(prefix + "paymentAccount" + suffix));
        }

        // add `instructionSet` to the URL query string
        if (getInstructionSet() != null) {
            for (int i = 0; i < getInstructionSet().size(); i++) {
                if (getInstructionSet().get(i) != null) {
                    joiner.add(
                            getInstructionSet()
                                    .get(i)
                                    .toUrlQueryString(
                                            String.format(
                                                    "%sinstructionSet%s%s",
                                                    prefix,
                                                    suffix,
                                                    "".equals(suffix)
                                                            ? ""
                                                            : String.format(
                                                                    "%s%d%s",
                                                                    containerPrefix,
                                                                    i,
                                                                    containerSuffix))));
                }
            }
        }

        return joiner.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy