Package com.stripe.param
Class SubscriptionScheduleCreateParams.Phase
java.lang.Object
com.stripe.param.SubscriptionScheduleCreateParams.Phase
- Enclosing class:
- SubscriptionScheduleCreateParams
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
Same asunit_amount
, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places.static enum
Add all map key/value pairs to `extraParams` map.static class
Required. Type of the account referenced in the request.static class
static enum
static class
Indicates if thebilling_cycle_anchor
should be reset when a threshold is reached.static class
ID of the promotion code to create a new discount for.static class
Required. Type of the account referenced in the request.static enum
static class
The number of intervals between subscription billings. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of prices and quantities that will generate invoice items appended to the next invoice for this phase.A non-negative decimal between 0 and 100, with at most two decimal places.Automatic tax settings for this phase.Can be set tophase_start
to set the anchor to the start of the phase orautomatic
to automatically change it if needed.Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period.Eithercharge_automatically
, orsend_invoice
.The ID of the coupon to apply to this phase of the subscription schedule.Three-letter ISO currency code, in lowercase.ID of the default payment method for the subscription schedule.A list of Tax Rate ids.Subscription description, meant to be displayable to the customer.The coupons to redeem into discounts for the schedule phase.The date at which this phase of the subscription schedule ends.Map of extra parameters for custom features not available in this client library.All invoices will be billed using the specified settings.getItems()
Required. List of configuration items, each with an attached price, to apply during this phase of the subscription schedule.Integer representing the multiplier applied to the price interval.Set of key-value pairs that you can attach to a phase.The account on behalf of which to charge, for each of the associated subscription's invoices.Whether the subscription schedule will create prorations when transitioning to this phase.The data with which to automatically create a Transfer for each of the associated subscription's invoices.getTrial()
If set to true the entire phase is counted as a trial and the customer will not be charged for any fees.Sets the phase to trialing from the start date to this date.
-
Method Details
-
builder
-
getAddInvoiceItems
A list of prices and quantities that will generate invoice items appended to the next invoice for this phase. You may pass up to 20 items. -
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. The request must be made by a platform account on a connected account in order to set an application fee percentage. For more information, see the application fees documentation. -
getAutomaticTax
Automatic tax settings for this phase. -
getBillingCycleAnchor
Can be set tophase_start
to set the anchor to the start of the phase orautomatic
to automatically change it if needed. Cannot be set tophase_start
if this phase specifies a trial. For more information, see the billing cycle documentation. -
getBillingThresholds
Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. Pass an empty string to remove previously-defined thresholds. -
getCollectionMethod
Eithercharge_automatically
, orsend_invoice
. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription asactive
. Defaults tocharge_automatically
on creation. -
getCoupon
The ID of the coupon to apply to this phase of the subscription schedule. This field has been deprecated and will be removed in a future API version. Usediscounts
instead. -
getCurrency
Three-letter ISO currency code, in lowercase. Must be a supported currency. -
getDefaultPaymentMethod
ID of the default payment method for the subscription schedule. It must belong to the customer associated with the subscription schedule. If not set, invoices will use the default payment method in the customer's invoice settings. -
getDefaultTaxRates
A list of Tax Rate ids. These Tax Rates will set the Subscription'sdefault_tax_rates
, which means they will be the Invoice'sdefault_tax_rates
for any Invoices issued by the Subscription during this Phase. -
getDescription
Subscription description, meant to be displayable to the customer. Use this field to optionally store an explanation of the subscription for rendering in Stripe surfaces and certain local payment methods UIs. -
getDiscounts
The coupons to redeem into discounts for the schedule phase. If not specified, inherits the discount from the subscription's customer. Pass an empty string to avoid inheriting any discounts. -
getEndDate
The date at which this phase of the subscription schedule ends. If set,iterations
must not be set. -
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. -
getItems
Required. List of configuration items, each with an attached price, to apply during this phase of the subscription schedule. -
getIterations
Integer representing the multiplier applied to the price interval. For example,iterations=2
applied to a price withinterval=month
andinterval_count=3
results in a phase of duration2 * 3 months = 6 months
. If set,end_date
must not be set. -
getMetadata
Set of key-value pairs that you can attach to a phase. Metadata on a schedule's phase will update the underlying subscription'smetadata
when the phase is entered, adding new keys and replacing existing keys in the subscription'smetadata
. Individual keys in the subscription'smetadata
can be unset by posting an empty value to them in the phase'smetadata
. To unset all keys in the subscription'smetadata
, update the subscription directly or unset every key individually from the phase'smetadata
. -
getOnBehalfOf
The account on behalf of which to charge, for each of the associated subscription's invoices. -
getProrationBehavior
Whether the subscription schedule will create prorations when transitioning to this phase. The default value iscreate_prorations
. This setting controls prorations when a phase is started asynchronously and it is persisted as a field on the phase. It's different from the request-level proration_behavior parameter which controls what happens if the update request affects the billing configuration of the current phase. -
getTransferData
The data with which to automatically create a Transfer for each of the associated subscription's invoices. -
getTrial
If set to true the entire phase is counted as a trial and the customer will not be charged for any fees. -
getTrialEnd
Sets the phase to trialing from the start date to this date. Must be before the phase end date, can not be combined withtrial
-