Class AllocatedAmounts.Builder
-
- All Implemented Interfaces:
public final class AllocatedAmounts.BuilderA builder for AllocatedAmounts.
-
-
Method Summary
-
-
Method Detail
-
bankCardAmount
final AllocatedAmounts.Builder bankCardAmount(Long bankCardAmount)
Amount allocated to bank card/credit card (in cents)
-
bankCardAmount
final AllocatedAmounts.Builder bankCardAmount(JsonField<Long> bankCardAmount)
Sets Builder.bankCardAmount to an arbitrary JSON value.
You should usually call Builder.bankCardAmount with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
ebtCashAmount
final AllocatedAmounts.Builder ebtCashAmount(Long ebtCashAmount)
Amount allocated to EBT Cash benefits (in cents)
-
ebtCashAmount
final AllocatedAmounts.Builder ebtCashAmount(JsonField<Long> ebtCashAmount)
Sets Builder.ebtCashAmount to an arbitrary JSON value.
You should usually call Builder.ebtCashAmount with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
snapAmount
final AllocatedAmounts.Builder snapAmount(Long snapAmount)
Amount allocated to SNAP benefits (in cents)
-
snapAmount
final AllocatedAmounts.Builder snapAmount(JsonField<Long> snapAmount)
Sets Builder.snapAmount to an arbitrary JSON value.
You should usually call Builder.snapAmount with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AllocatedAmounts.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AllocatedAmounts.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AllocatedAmounts.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AllocatedAmounts.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AllocatedAmounts.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AllocatedAmounts build()
Returns an immutable instance of AllocatedAmounts.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.bankCardAmount() .ebtCashAmount() .snapAmount()
-
-
-
-