Package com.stripe.param
Class PayoutCreateParams.Builder
- java.lang.Object
-
- com.stripe.param.PayoutCreateParams.Builder
-
- Enclosing class:
- PayoutCreateParams
public static class PayoutCreateParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PayoutCreateParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.PayoutCreateParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.PayoutCreateParamsbuild()Finalize and obtain parameter instance from this builder.PayoutCreateParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.PayoutCreateParams.BuilderputAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)Add all map key/value pairs to `metadata` map.PayoutCreateParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.PayoutCreateParams.BuilderputMetadata(java.lang.String key, java.lang.String value)Add a key/value pair to `metadata` map.PayoutCreateParams.BuildersetAmount(java.lang.Long amount)A positive integer in cents representing how much to payout.PayoutCreateParams.BuildersetCurrency(java.lang.String currency)Three-letter ISO currency code, in lowercase.PayoutCreateParams.BuildersetDescription(java.lang.String description)An arbitrary string attached to the object.PayoutCreateParams.BuildersetDestination(java.lang.String destination)The ID of a bank account or a card to send the payout to.PayoutCreateParams.BuildersetMethod(PayoutCreateParams.Method method)The method used to send this payout, which can bestandardorinstant.PayoutCreateParams.BuildersetSourceType(PayoutCreateParams.SourceType sourceType)The balance type of your Stripe balance to draw this payout from.PayoutCreateParams.BuildersetStatementDescriptor(java.lang.String statementDescriptor)A string to be displayed on the recipient's bank or card statement.
-
-
-
Method Detail
-
build
public PayoutCreateParams build()
Finalize and obtain parameter instance from this builder.
-
setAmount
public PayoutCreateParams.Builder setAmount(java.lang.Long amount)
A positive integer in cents representing how much to payout.
-
setCurrency
public PayoutCreateParams.Builder setCurrency(java.lang.String currency)
Three-letter ISO currency code, in lowercase. Must be a supported currency.
-
setDescription
public PayoutCreateParams.Builder setDescription(java.lang.String description)
An arbitrary string attached to the object. Often useful for displaying to users.
-
setDestination
public PayoutCreateParams.Builder setDestination(java.lang.String destination)
The ID of a bank account or a card to send the payout to. If no destination is supplied, the default external account for the specified currency will be used.
-
addExpand
public PayoutCreateParams.Builder addExpand(java.lang.String element)
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. SeePayoutCreateParams.expandfor the field documentation.
-
addAllExpand
public PayoutCreateParams.Builder addAllExpand(java.util.List<java.lang.String> elements)
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. SeePayoutCreateParams.expandfor the field documentation.
-
putExtraParam
public PayoutCreateParams.Builder putExtraParam(java.lang.String key, java.lang.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. SeePayoutCreateParams.extraParamsfor the field documentation.
-
putAllExtraParam
public PayoutCreateParams.Builder putAllExtraParam(java.util.Map<java.lang.String,java.lang.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. SeePayoutCreateParams.extraParamsfor the field documentation.
-
putMetadata
public PayoutCreateParams.Builder putMetadata(java.lang.String key, java.lang.String value)
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. SeePayoutCreateParams.metadatafor the field documentation.
-
putAllMetadata
public PayoutCreateParams.Builder putAllMetadata(java.util.Map<java.lang.String,java.lang.String> map)
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. SeePayoutCreateParams.metadatafor the field documentation.
-
setMethod
public PayoutCreateParams.Builder setMethod(PayoutCreateParams.Method method)
The method used to send this payout, which can bestandardorinstant.instantis only supported for payouts to debit cards. (See Instant payouts for marketplaces for more information.)
-
setSourceType
public PayoutCreateParams.Builder setSourceType(PayoutCreateParams.SourceType sourceType)
The balance type of your Stripe balance to draw this payout from. Balances for different payment sources are kept separately. You can find the amounts with the balances API. One ofbank_account,card, orfpx.
-
setStatementDescriptor
public PayoutCreateParams.Builder setStatementDescriptor(java.lang.String statementDescriptor)
A string to be displayed on the recipient's bank or card statement. This may be at most 22 characters. Attempting to use astatement_descriptorlonger than 22 characters will return an error. Note: Most banks will truncate this information and/or display it inconsistently. Some may not display it at all.
-
-