Class AccountGetInterestPaymentsResponse
-
- All Implemented Interfaces:
public final class AccountGetInterestPaymentsResponseAn object representing an interest payment from stablecoin holdings.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classAccountGetInterestPaymentsResponse.BuilderA builder for AccountGetInterestPaymentsResponse.
-
Method Summary
Modifier and Type Method Description final Doubleamount()Amount of interest paid. final Stringcurrency()Currency in which the interest was paid (e.g. final LocalDatepaymentDate()Date of interest payment in US Eastern time zone. final JsonField<Double>_amount()Returns the raw JSON value of amount. final JsonField<String>_currency()Returns the raw JSON value of currency. final JsonField<LocalDate>_paymentDate()Returns the raw JSON value of paymentDate. final Map<String, JsonValue>_additionalProperties()final AccountGetInterestPaymentsResponse.BuildertoBuilder()final AccountGetInterestPaymentsResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static AccountGetInterestPaymentsResponse.Builderbuilder()Returns a mutable builder for constructing an instance of AccountGetInterestPaymentsResponse. -
-
Method Detail
-
paymentDate
final LocalDate paymentDate()
Date of interest payment in US Eastern time zone. ISO 8601 format, YYYY-MM-DD.
-
_amount
final JsonField<Double> _amount()
Returns the raw JSON value of amount.
Unlike amount, this method doesn't throw if the JSON field has an unexpected type.
-
_currency
final JsonField<String> _currency()
Returns the raw JSON value of currency.
Unlike currency, this method doesn't throw if the JSON field has an unexpected type.
-
_paymentDate
final JsonField<LocalDate> _paymentDate()
Returns the raw JSON value of paymentDate.
Unlike paymentDate, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final AccountGetInterestPaymentsResponse.Builder toBuilder()
-
validate
final AccountGetInterestPaymentsResponse validate()
-
builder
final static AccountGetInterestPaymentsResponse.Builder builder()
Returns a mutable builder for constructing an instance of AccountGetInterestPaymentsResponse.
The following fields are required:
.amount() .currency() .paymentDate()
-
-
-
-