Class OutboundSetupIntentUpdateParams.PayoutMethodData.Builder
java.lang.Object
com.stripe.param.v2.moneymanagement.OutboundSetupIntentUpdateParams.PayoutMethodData.Builder
- Enclosing class:
- OutboundSetupIntentUpdateParams.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 OutboundSetupIntentUpdateParams.PayoutMethodData.Builder setBankAccount(OutboundSetupIntentUpdateParams.PayoutMethodData.BankAccount bankAccount) The type specific details of the bank account payout method. -
setCard
public OutboundSetupIntentUpdateParams.PayoutMethodData.Builder setCard(OutboundSetupIntentUpdateParams.PayoutMethodData.Card card) The type specific details of the card payout method. -
putExtraParam
public OutboundSetupIntentUpdateParams.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. SeeOutboundSetupIntentUpdateParams.PayoutMethodData.extraParams
for the field documentation. -
putAllExtraParam
public OutboundSetupIntentUpdateParams.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. SeeOutboundSetupIntentUpdateParams.PayoutMethodData.extraParams
for the field documentation. -
setType
public OutboundSetupIntentUpdateParams.PayoutMethodData.Builder setType(OutboundSetupIntentUpdateParams.PayoutMethodData.Type type) Required. Closed Enum. The type of payout method to be created/updated.
-