Package com.stripe.param
Class TransferCreateParams.Builder
java.lang.Object
com.stripe.param.TransferCreateParams.Builder
- Enclosing class:
- TransferCreateParams
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddAllExpand
(List<String> elements) Add all elements to `expand` list.Add an element to `expand` list.build()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putAllMetadata
(Map<String, String> map) Add all map key/value pairs to `metadata` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.putMetadata
(String key, String value) Add a key/value pair to `metadata` map.A positive integer in cents (or local equivalent) representing how much to transfer.setCurrency
(String currency) Required. Three-letter ISO code for currency in lowercase.setDescription
(String description) An arbitrary string attached to the object.setDestination
(String destination) Required. The ID of a connected Stripe account.setSourceTransaction
(String sourceTransaction) You can use this parameter to transfer funds from a charge before they are added to your available balance.setSourceType
(TransferCreateParams.SourceType sourceType) The source balance to use for this transfer.setTransferGroup
(String transferGroup) A string that identifies this transaction as part of a group.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAmount
A positive integer in cents (or local equivalent) representing how much to transfer. -
setCurrency
Required. Three-letter ISO code for currency in lowercase. Must be a supported currency. -
setDescription
An arbitrary string attached to the object. Often useful for displaying to users. -
setDestination
Required. The ID of a connected Stripe account. See the Connect documentation for details. -
addExpand
Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeTransferCreateParams.expand
for the field documentation. -
addAllExpand
Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeTransferCreateParams.expand
for the field documentation. -
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. SeeTransferCreateParams.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. SeeTransferCreateParams.extraParams
for the field documentation. -
putMetadata
Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeTransferCreateParams.metadata
for the field documentation. -
putAllMetadata
Add all map key/value pairs to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeTransferCreateParams.metadata
for the field documentation. -
setSourceTransaction
You can use this parameter to transfer funds from a charge before they are added to your available balance. A pending balance will transfer immediately but the funds will not become available until the original charge becomes available. See the Connect documentation for details. -
setSourceType
The source balance to use for this transfer. One ofbank_account
,card
, orfpx
. For most users, this will default tocard
. -
setTransferGroup
A string that identifies this transaction as part of a group. See the Connect documentation for details.
-