Class InboundTransferCreateParams.Builder
java.lang.Object
com.stripe.param.v2.moneymanagement.InboundTransferCreateParams.Builder
- Enclosing class:
- InboundTransferCreateParams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.Required. The amount, in specified currency, by which the FinancialAccount balance will increase due to the InboundTransfer.setDescription
(String description) An optional, freeform description field intended to store metadata.Required. Object containing details about where the funds will originate from.Required. Object containing details about where the funds will land.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAmount
Required. The amount, in specified currency, by which the FinancialAccount balance will increase due to the InboundTransfer. -
setDescription
An optional, freeform description field intended to store metadata. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeInboundTransferCreateParams.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeInboundTransferCreateParams.extraParams
for the field documentation. -
setFrom
Required. Object containing details about where the funds will originate from. -
setTo
Required. Object containing details about where the funds will land.
-