Package com.stripe.param
Class QuoteCreateParams
java.lang.Object
com.stripe.net.ApiRequestParams
com.stripe.param.QuoteCreateParams
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
static enum
Add all map key/value pairs to `extraParams` map.static class
Required. Type of the account referenced in the request.static class
ID of the promotion code to create a new discount for.static class
Required. Theid
of the quote that will be cloned.static class
Required. Type of the account referenced in the request.static class
The number of intervals between subscription billings.static class
Nested classes/interfaces inherited from class com.stripe.net.ApiRequestParams
ApiRequestParams.EnumParam
-
Field Summary
Fields inherited from class com.stripe.net.ApiRequestParams
EXTRA_PARAMS_KEY
-
Method Summary
Modifier and TypeMethodDescriptionstatic QuoteCreateParams.Builder
builder()
The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account.A non-negative decimal between 0 and 100, with at most two decimal places.Settings for automatic tax lookup for this quote and resulting invoices and subscriptions.Eithercharge_automatically
, orsend_invoice
.The customer for which this quote belongs to.The tax rates that will apply to any line item that does not havetax_rates
set.A description that will be displayed on the quote PDF.The discounts applied to the quote.Specifies which fields in the response should be expanded.A future timestamp on which the quote will be canceled if inopen
ordraft
status.Map of extra parameters for custom features not available in this client library.A footer that will be displayed on the quote PDF.Clone an existing quote.A header that will be displayed on the quote PDF.All invoices will be billed using the specified settings.A list of line items the customer is being quoted for.Set of key-value pairs that you can attach to an object.The account on behalf of which to charge.When creating a subscription or subscription schedule, the specified configuration data will be used.ID of the test clock to attach to the quote.The data with which to automatically create a Transfer for each of the invoices.Methods inherited from class com.stripe.net.ApiRequestParams
paramsToMap, toMap
-
Method Details
-
builder
-
getApplicationFeeAmount
The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. There cannot be any line items with recurring prices when using this field. -
getApplicationFeePercent
A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account. There must be at least 1 line item with a recurring price to use this field. -
getAutomaticTax
Settings for automatic tax lookup for this quote and resulting invoices and subscriptions. -
getCollectionMethod
Eithercharge_automatically
, orsend_invoice
. When charging automatically, Stripe will attempt to pay invoices at the end of the subscription cycle or at invoice finalization using the default payment method attached to the subscription or customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription asactive
. Defaults tocharge_automatically
. -
getCustomer
The customer for which this quote belongs to. A customer is required before finalizing the quote. Once specified, it cannot be changed. -
getDefaultTaxRates
The tax rates that will apply to any line item that does not havetax_rates
set. -
getDescription
A description that will be displayed on the quote PDF. If no value is passed, the default description configured in your quote template settings will be used. -
getDiscounts
The discounts applied to the quote. You can only set up to one discount. -
getExpand
Specifies which fields in the response should be expanded. -
getExpiresAt
A future timestamp on which the quote will be canceled if inopen
ordraft
status. Measured in seconds since the Unix epoch. If no value is passed, the default expiration date configured in your quote template settings will be used. -
getExtraParams
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedName
value. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance. -
getFromQuote
Clone an existing quote. The new quote will be created instatus=draft
. When using this parameter, you cannot specify any other parameters except forexpires_at
. -
getHeader
A header that will be displayed on the quote PDF. If no value is passed, the default header configured in your quote template settings will be used. -
getInvoiceSettings
All invoices will be billed using the specified settings. -
getLineItems
A list of line items the customer is being quoted for. Each line item includes information about the product, the quantity, and the resulting cost. -
getMetadata
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value tometadata
. -
getOnBehalfOf
The account on behalf of which to charge. -
getSubscriptionData
When creating a subscription or subscription schedule, the specified configuration data will be used. There must be at least one line item with a recurring price for a subscription or subscription schedule to be created. A subscription schedule is created ifsubscription_data[effective_date]
is present and in the future, otherwise a subscription is created. -
getTestClock
ID of the test clock to attach to the quote. -
getTransferData
The data with which to automatically create a Transfer for each of the invoices.
-