Class AccountGetInterestPaymentsResponse.Builder
-
- All Implemented Interfaces:
public final class AccountGetInterestPaymentsResponse.BuilderA builder for AccountGetInterestPaymentsResponse.
-
-
Method Summary
-
-
Method Detail
-
amount
final AccountGetInterestPaymentsResponse.Builder amount(Double amount)
Amount of interest paid.
-
amount
final AccountGetInterestPaymentsResponse.Builder amount(JsonField<Double> amount)
Sets Builder.amount to an arbitrary JSON value.
You should usually call Builder.amount with a well-typed Double value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
currency
final AccountGetInterestPaymentsResponse.Builder currency(String currency)
Currency in which the interest was paid (e.g. USD).
-
currency
final AccountGetInterestPaymentsResponse.Builder currency(JsonField<String> currency)
Sets Builder.currency to an arbitrary JSON value.
You should usually call Builder.currency with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
paymentDate
final AccountGetInterestPaymentsResponse.Builder paymentDate(LocalDate paymentDate)
Date of interest payment in US Eastern time zone. ISO 8601 format, YYYY-MM-DD.
-
paymentDate
final AccountGetInterestPaymentsResponse.Builder paymentDate(JsonField<LocalDate> paymentDate)
Sets Builder.paymentDate to an arbitrary JSON value.
You should usually call Builder.paymentDate with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AccountGetInterestPaymentsResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AccountGetInterestPaymentsResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AccountGetInterestPaymentsResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AccountGetInterestPaymentsResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AccountGetInterestPaymentsResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AccountGetInterestPaymentsResponse build()
Returns an immutable instance of AccountGetInterestPaymentsResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.amount() .currency() .paymentDate()
-
-
-
-