Class OutboundSetupIntentCreateParams.PayoutMethodData.Builder
java.lang.Object
com.stripe.param.v2.moneymanagement.OutboundSetupIntentCreateParams.PayoutMethodData.Builder
- Enclosing class:
- OutboundSetupIntentCreateParams.PayoutMethodData
-
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.The type specific details of the bank account payout method.The type specific details of the card payout method.Required. Closed Enum.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setBankAccount
public OutboundSetupIntentCreateParams.PayoutMethodData.Builder setBankAccount(OutboundSetupIntentCreateParams.PayoutMethodData.BankAccount bankAccount) The type specific details of the bank account payout method. -
setCard
public OutboundSetupIntentCreateParams.PayoutMethodData.Builder setCard(OutboundSetupIntentCreateParams.PayoutMethodData.Card card) The type specific details of the card payout method. -
putExtraParam
public OutboundSetupIntentCreateParams.PayoutMethodData.Builder putExtraParam(String key, Object value) 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. SeeOutboundSetupIntentCreateParams.PayoutMethodData.extraParams
for the field documentation. -
putAllExtraParam
public OutboundSetupIntentCreateParams.PayoutMethodData.Builder putAllExtraParam(Map<String, Object> map) 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. SeeOutboundSetupIntentCreateParams.PayoutMethodData.extraParams
for the field documentation. -
setType
public OutboundSetupIntentCreateParams.PayoutMethodData.Builder setType(OutboundSetupIntentCreateParams.PayoutMethodData.Type type) Required. Closed Enum. The type of payout method to be created.
-