Mayson Monorepo Documentation
    Preparing search index...
    interface Phase {
        add_invoice_items?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.AddInvoiceItem[];
        application_fee_percent?: number;
        automatic_tax?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.AutomaticTax;
        billing_cycle_anchor?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.BillingCycleAnchor;
        billing_thresholds?: Emptyable<
            Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.BillingThresholds,
        >;
        collection_method?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.CollectionMethod;
        currency?: string;
        default_payment_method?: string;
        default_tax_rates?: Emptyable<string[]>;
        description?: string;
        discounts?: Emptyable<
            Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.Discount[],
        >;
        duration?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.Duration;
        end_date?: number
        | "now";
        invoice_settings?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.InvoiceSettings;
        items: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.Item[];
        metadata?: MetadataParam;
        on_behalf_of?: string;
        proration_behavior?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.ProrationBehavior;
        start_date?: number | "now";
        transfer_data?: Stripe.InvoiceCreatePreviewParams.ScheduleDetails.Phase.TransferData;
        trial?: boolean;
        trial_end?: number | "now";
    }
    Index

    Properties

    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.

    application_fee_percent?: number

    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.

    Automatic tax settings for this phase.

    Can be set to phase_start to set the anchor to the start of the phase or automatic to automatically change it if needed. Cannot be set to phase_start if this phase specifies a trial. For more information, see the billing cycle documentation.

    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.

    Either charge_automatically, or send_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 as active. Defaults to charge_automatically on creation.

    currency?: string

    Three-letter ISO currency code, in lowercase. Must be a supported currency.

    default_payment_method?: string

    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.

    default_tax_rates?: Emptyable<string[]>

    A list of Tax Rate ids. These Tax Rates will set the Subscription's default_tax_rates, which means they will be the Invoice's default_tax_rates for any Invoices issued by the Subscription during this Phase.

    description?: string

    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.

    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.

    The number of intervals the phase should last. If set, end_date must not be set.

    end_date?: number | "now"

    The date at which this phase of the subscription schedule ends. If set, duration must not be set.

    All invoices will be billed using the specified settings.

    List of configuration items, each with an attached price, to apply during this phase of the subscription schedule.

    metadata?: MetadataParam

    Set of key-value pairs that you can attach to a phase. Metadata on a schedule's phase will update the underlying subscription's metadata when the phase is entered, adding new keys and replacing existing keys in the subscription's metadata. Individual keys in the subscription's metadata can be unset by posting an empty value to them in the phase's metadata. To unset all keys in the subscription's metadata, update the subscription directly or unset every key individually from the phase's metadata.

    on_behalf_of?: string

    The account on behalf of which to charge, for each of the associated subscription's invoices.

    Controls whether the subscription schedule should create prorations when transitioning to this phase if there is a difference in billing configuration. It's different from the request-level proration_behavior parameter which controls what happens if the update request affects the billing configuration (item price, quantity, etc.) of the current phase.

    start_date?: number | "now"

    The date at which this phase of the subscription schedule starts or now. Must be set on the first phase.

    The data with which to automatically create a Transfer for each of the associated subscription's invoices.

    trial?: boolean

    If set to true the entire phase is counted as a trial and the customer will not be charged for any fees.

    trial_end?: number | "now"

    Sets the phase to trialing from the start date to this date. Must be before the phase end date, can not be combined with trial