Class OutboundTransferListParams.Builder
java.lang.Object
com.stripe.param.v2.moneymanagement.OutboundTransferListParams.Builder
- Enclosing class:
- OutboundTransferListParams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddAllStatus
(List<OutboundTransferListParams.Status> elements) Add all elements to `status` list.Add an element to `status` list.build()
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 objects created at the specified timestamp.setCreatedGt
(Instant createdGt) Filter for objects created after the specified timestamp.setCreatedGte
(Instant createdGte) Filter for objects created on or after the specified timestamp.setCreatedLt
(Instant createdLt) Filter for objects created before the specified timestamp.setCreatedLte
(Instant createdLte) Filter for objects created on or before the specified timestamp.The maximum number of results to return.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCreated
Filter for objects created at the specified timestamp. Must be an RFC 3339 date & time value, for example: 2022-09-18T13:22:00Z. -
setCreatedGt
Filter for objects created after the specified timestamp. Must be an RFC 3339 date & time value, for example: 2022-09-18T13:22:00Z. -
setCreatedGte
Filter for objects created on or after the specified timestamp. Must be an RFC 3339 date & time value, for example: 2022-09-18T13:22:00Z. -
setCreatedLt
Filter for objects created before the specified timestamp. Must be an RFC 3339 date & time value, for example: 2022-09-18T13:22:00Z. -
setCreatedLte
Filter for objects created on or before the specified timestamp. Must be an RFC 3339 date & time value, for example: 2022-09-18T13:22:00Z. -
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. SeeOutboundTransferListParams.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. SeeOutboundTransferListParams.extraParams
for the field documentation. -
setLimit
The maximum number of results to return. -
addStatus
Add an element to `status` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeOutboundTransferListParams.status
for the field documentation. -
addAllStatus
public OutboundTransferListParams.Builder addAllStatus(List<OutboundTransferListParams.Status> elements) Add all elements to `status` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeOutboundTransferListParams.status
for the field documentation.
-