Package com.stripe.param
Class BalanceTransactionListParams.Builder
- java.lang.Object
-
- com.stripe.param.BalanceTransactionListParams.Builder
-
- Enclosing class:
- BalanceTransactionListParams
public static class BalanceTransactionListParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BalanceTransactionListParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.BalanceTransactionListParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.BalanceTransactionListParamsbuild()Finalize and obtain parameter instance from this builder.BalanceTransactionListParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.BalanceTransactionListParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.BalanceTransactionListParams.BuildersetAvailableOn(BalanceTransactionListParams.AvailableOn availableOn)BalanceTransactionListParams.BuildersetAvailableOn(java.lang.Long availableOn)BalanceTransactionListParams.BuildersetCreated(BalanceTransactionListParams.Created created)BalanceTransactionListParams.BuildersetCreated(java.lang.Long created)BalanceTransactionListParams.BuildersetCurrency(java.lang.String currency)Only return transactions in a certain currency.BalanceTransactionListParams.BuildersetEndingBefore(java.lang.String endingBefore)A cursor for use in pagination.BalanceTransactionListParams.BuildersetLimit(java.lang.Long limit)A limit on the number of objects to be returned.BalanceTransactionListParams.BuildersetPayout(java.lang.String payout)For automatic Stripe payouts only, only returns transactions that were paid out on the specified payout ID.BalanceTransactionListParams.BuildersetSource(java.lang.String source)Only returns the original transaction.BalanceTransactionListParams.BuildersetStartingAfter(java.lang.String startingAfter)A cursor for use in pagination.BalanceTransactionListParams.BuildersetType(java.lang.String type)Only returns transactions of the given type.
-
-
-
Method Detail
-
build
public BalanceTransactionListParams build()
Finalize and obtain parameter instance from this builder.
-
setAvailableOn
public BalanceTransactionListParams.Builder setAvailableOn(BalanceTransactionListParams.AvailableOn availableOn)
-
setAvailableOn
public BalanceTransactionListParams.Builder setAvailableOn(java.lang.Long availableOn)
-
setCreated
public BalanceTransactionListParams.Builder setCreated(BalanceTransactionListParams.Created created)
-
setCreated
public BalanceTransactionListParams.Builder setCreated(java.lang.Long created)
-
setCurrency
public BalanceTransactionListParams.Builder setCurrency(java.lang.String currency)
Only return transactions in a certain currency. Three-letter ISO currency code, in lowercase. Must be a supported currency.
-
setEndingBefore
public BalanceTransactionListParams.Builder setEndingBefore(java.lang.String endingBefore)
A cursor for use in pagination.ending_beforeis an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting withobj_bar, your subsequent call can includeending_before=obj_barin order to fetch the previous page of the list.
-
addExpand
public BalanceTransactionListParams.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. SeeBalanceTransactionListParams.expandfor the field documentation.
-
addAllExpand
public BalanceTransactionListParams.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. SeeBalanceTransactionListParams.expandfor the field documentation.
-
putExtraParam
public BalanceTransactionListParams.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. SeeBalanceTransactionListParams.extraParamsfor the field documentation.
-
putAllExtraParam
public BalanceTransactionListParams.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. SeeBalanceTransactionListParams.extraParamsfor the field documentation.
-
setLimit
public BalanceTransactionListParams.Builder setLimit(java.lang.Long limit)
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
-
setPayout
public BalanceTransactionListParams.Builder setPayout(java.lang.String payout)
For automatic Stripe payouts only, only returns transactions that were paid out on the specified payout ID.
-
setSource
public BalanceTransactionListParams.Builder setSource(java.lang.String source)
Only returns the original transaction.
-
setStartingAfter
public BalanceTransactionListParams.Builder setStartingAfter(java.lang.String startingAfter)
A cursor for use in pagination.starting_afteris an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending withobj_foo, your subsequent call can includestarting_after=obj_fooin order to fetch the next page of the list.
-
setType
public BalanceTransactionListParams.Builder setType(java.lang.String type)
Only returns transactions of the given type. One of:adjustment,advance,advance_funding,anticipation_repayment,application_fee,application_fee_refund,charge,connect_collection_transfer,contribution,issuing_authorization_hold,issuing_authorization_release,issuing_dispute,issuing_transaction,payment,payment_failure_refund,payment_refund,payout,payout_cancel,payout_failure,refund,refund_failure,reserve_transaction,reserved_funds,stripe_fee,stripe_fx_fee,tax_fee,topup,topup_reversal,transfer,transfer_cancel,transfer_failure, ortransfer_refund.
-
-