Class TransactionEntryListParams.Builder
java.lang.Object
com.stripe.param.v2.moneymanagement.TransactionEntryListParams.Builder
- Enclosing class:
- TransactionEntryListParams
-
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.setCreated
(Instant created) Filter for Transactions created at an exact time.setCreatedGt
(Instant createdGt) Filter for Transactions created after the specified timestamp.setCreatedGte
(Instant createdGte) Filter for Transactions created at or after the specified timestamp.setCreatedLt
(Instant createdLt) Filter for Transactions created before the specified timestamp.setCreatedLte
(Instant createdLte) Filter for Transactions created at or before the specified timestamp.The page limit.setTransaction
(String transaction) Filter for TransactionEntries belonging to a Transaction.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCreated
Filter for Transactions created at an exact time. -
setCreatedGt
Filter for Transactions created after the specified timestamp. -
setCreatedGte
Filter for Transactions created at or after the specified timestamp. -
setCreatedLt
Filter for Transactions created before the specified timestamp. -
setCreatedLte
Filter for Transactions created at or before the specified timestamp. -
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. SeeTransactionEntryListParams.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. SeeTransactionEntryListParams.extraParams
for the field documentation. -
setLimit
The page limit. -
setTransaction
Filter for TransactionEntries belonging to a Transaction.
-