Class PostRewardBankModel
- java.lang.Object
-
- app.cybrid.cybrid_api_bank.client.model.PostRewardBankModel
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-03-31T15:52:12.657204Z[Etc/UTC]") public class PostRewardBankModel extends Object
PostRewardBankModel
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CUSTOMER_GUIDstatic StringJSON_PROPERTY_DELIVER_AMOUNTstatic StringJSON_PROPERTY_RECEIVE_AMOUNTstatic StringJSON_PROPERTY_SYMBOL
-
Constructor Summary
Constructors Constructor Description PostRewardBankModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PostRewardBankModelcustomerGuid(String customerGuid)PostRewardBankModeldeliverAmount(BigInteger deliverAmount)booleanequals(Object o)StringgetCustomerGuid()The unique identifier for the customer.BigIntegergetDeliverAmount()The amount to be delivered in base units of the currency: currency is \"counter_asset\" for buy and \"asset\" for sell.BigIntegergetReceiveAmount()The amount to be received in base units of the currency: currency is \"asset\" for buy and \"counter_asset\" for sell.StringgetSymbol()Symbol the quote is being requested for.inthashCode()PostRewardBankModelreceiveAmount(BigInteger receiveAmount)voidsetCustomerGuid(String customerGuid)voidsetDeliverAmount(BigInteger deliverAmount)voidsetReceiveAmount(BigInteger receiveAmount)voidsetSymbol(String symbol)PostRewardBankModelsymbol(String symbol)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CUSTOMER_GUID
public static final String JSON_PROPERTY_CUSTOMER_GUID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SYMBOL
public static final String JSON_PROPERTY_SYMBOL
- See Also:
- Constant Field Values
-
JSON_PROPERTY_RECEIVE_AMOUNT
public static final String JSON_PROPERTY_RECEIVE_AMOUNT
- See Also:
- Constant Field Values
-
JSON_PROPERTY_DELIVER_AMOUNT
public static final String JSON_PROPERTY_DELIVER_AMOUNT
- See Also:
- Constant Field Values
-
-
Method Detail
-
customerGuid
public PostRewardBankModel customerGuid(String customerGuid)
-
getCustomerGuid
@Nonnull public String getCustomerGuid()
The unique identifier for the customer.- Returns:
- customerGuid
-
setCustomerGuid
public void setCustomerGuid(String customerGuid)
-
symbol
public PostRewardBankModel symbol(String symbol)
-
getSymbol
@Nonnull public String getSymbol()
Symbol the quote is being requested for. Format is \"asset-counter_asset\" in uppercase. See the Symbols API for a complete list of cryptocurrencies supported.- Returns:
- symbol
-
setSymbol
public void setSymbol(String symbol)
-
receiveAmount
public PostRewardBankModel receiveAmount(BigInteger receiveAmount)
-
getReceiveAmount
@Nullable public BigInteger getReceiveAmount()
The amount to be received in base units of the currency: currency is \"asset\" for buy and \"counter_asset\" for sell.- Returns:
- receiveAmount
-
setReceiveAmount
public void setReceiveAmount(BigInteger receiveAmount)
-
deliverAmount
public PostRewardBankModel deliverAmount(BigInteger deliverAmount)
-
getDeliverAmount
@Nullable public BigInteger getDeliverAmount()
The amount to be delivered in base units of the currency: currency is \"counter_asset\" for buy and \"asset\" for sell.- Returns:
- deliverAmount
-
setDeliverAmount
public void setDeliverAmount(BigInteger deliverAmount)
-
-