Package com.stripe.param
Class InvoiceListParams.Builder
- java.lang.Object
-
- com.stripe.param.InvoiceListParams.Builder
-
- Enclosing class:
- InvoiceListParams
public static class InvoiceListParams.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InvoiceListParams.BuilderaddAllExpand(java.util.List<java.lang.String> elements)Add all elements to `expand` list.InvoiceListParams.BuilderaddExpand(java.lang.String element)Add an element to `expand` list.InvoiceListParamsbuild()Finalize and obtain parameter instance from this builder.InvoiceListParams.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.InvoiceListParams.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.InvoiceListParams.BuildersetCollectionMethod(InvoiceListParams.CollectionMethod collectionMethod)The collection method of the invoice to retrieve.InvoiceListParams.BuildersetCreated(InvoiceListParams.Created created)InvoiceListParams.BuildersetCreated(java.lang.Long created)InvoiceListParams.BuildersetCustomer(java.lang.String customer)Only return invoices for the customer specified by this customer ID.InvoiceListParams.BuildersetDueDate(InvoiceListParams.DueDate dueDate)InvoiceListParams.BuildersetDueDate(java.lang.Long dueDate)InvoiceListParams.BuildersetEndingBefore(java.lang.String endingBefore)A cursor for use in pagination.InvoiceListParams.BuildersetLimit(java.lang.Long limit)A limit on the number of objects to be returned.InvoiceListParams.BuildersetStartingAfter(java.lang.String startingAfter)A cursor for use in pagination.InvoiceListParams.BuildersetStatus(InvoiceListParams.Status status)The status of the invoice, one ofdraft,open,paid,uncollectible, orvoid.InvoiceListParams.BuildersetSubscription(java.lang.String subscription)Only return invoices for the subscription specified by this subscription ID.
-
-
-
Method Detail
-
build
public InvoiceListParams build()
Finalize and obtain parameter instance from this builder.
-
setCollectionMethod
public InvoiceListParams.Builder setCollectionMethod(InvoiceListParams.CollectionMethod collectionMethod)
The collection method of the invoice to retrieve. Eithercharge_automaticallyorsend_invoice.
-
setCreated
public InvoiceListParams.Builder setCreated(InvoiceListParams.Created created)
-
setCreated
public InvoiceListParams.Builder setCreated(java.lang.Long created)
-
setCustomer
public InvoiceListParams.Builder setCustomer(java.lang.String customer)
Only return invoices for the customer specified by this customer ID.
-
setDueDate
public InvoiceListParams.Builder setDueDate(InvoiceListParams.DueDate dueDate)
-
setDueDate
public InvoiceListParams.Builder setDueDate(java.lang.Long dueDate)
-
setEndingBefore
public InvoiceListParams.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 InvoiceListParams.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. SeeInvoiceListParams.expandfor the field documentation.
-
addAllExpand
public InvoiceListParams.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. SeeInvoiceListParams.expandfor the field documentation.
-
putExtraParam
public InvoiceListParams.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. SeeInvoiceListParams.extraParamsfor the field documentation.
-
putAllExtraParam
public InvoiceListParams.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. SeeInvoiceListParams.extraParamsfor the field documentation.
-
setLimit
public InvoiceListParams.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.
-
setStartingAfter
public InvoiceListParams.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.
-
setStatus
public InvoiceListParams.Builder setStatus(InvoiceListParams.Status status)
-
setSubscription
public InvoiceListParams.Builder setSubscription(java.lang.String subscription)
Only return invoices for the subscription specified by this subscription ID.
-
-