Package com.stripe.param.checkout
Class SessionCreateParams.SubscriptionData
java.lang.Object
com.stripe.param.checkout.SessionCreateParams.SubscriptionData
- Enclosing class:
- SessionCreateParams
Specifies whether the rate is considered inclusive of taxes or exclusive of taxes.
One of
inclusive
, exclusive
, or unspecified
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
static enum
Required. Indicates how the subscription should change when the trial ends if the user did not provide a payment method.static class
Required. Type of the account referenced in the request.static class
Add all map key/value pairs to `extraParams` map. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A non-negative decimal between 0 and 100, with at most two decimal places.A future timestamp to anchor the subscription's billing cycle for new subscriptions.The tax rates that will apply to any subscription item that does not havetax_rates
set.The subscription's description, meant to be displayable to the customer.Map of extra parameters for custom features not available in this client library.All invoices will be billed using the specified settings.Set of key-value pairs that you can attach to an object.The account on behalf of which to charge, for each of the subscription's invoices.Determines how to handle prorations resulting from thebilling_cycle_anchor
.If specified, the funds from the subscription's invoices will be transferred to the destination and the ID of the resulting transfers will be found on the resulting charges.Unix timestamp representing the end of the trial period the customer will get before being charged for the first time.Integer representing the number of trial period days before the customer is charged for the first time.Settings related to subscription trials.
-
Method Details
-
builder
-
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. To use an application fee percent, the request must be made on behalf of another account, using theStripe-Account
header or an OAuth key. For more information, see the application fees documentation. -
getBillingCycleAnchor
A future timestamp to anchor the subscription's billing cycle for new subscriptions. -
getDefaultTaxRates
The tax rates that will apply to any subscription item that does not havetax_rates
set. Invoices created will have theirdefault_tax_rates
populated from the subscription. -
getDescription
The subscription's description, meant to be displayable to the customer. Use this field to optionally store an explanation of the subscription for rendering in the customer portal. -
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. -
getInvoiceSettings
All invoices will be billed using the specified settings. -
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, for each of the subscription's invoices. -
getProrationBehavior
Determines how to handle prorations resulting from thebilling_cycle_anchor
. If no value is passed, the default iscreate_prorations
. -
getTransferData
If specified, the funds from the subscription's invoices will be transferred to the destination and the ID of the resulting transfers will be found on the resulting charges. -
getTrialEnd
Unix timestamp representing the end of the trial period the customer will get before being charged for the first time. Has to be at least 48 hours in the future. -
getTrialPeriodDays
Integer representing the number of trial period days before the customer is charged for the first time. Has to be at least 1. -
getTrialSettings
Settings related to subscription trials.
-