Packages
Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/stripe/params/subscription_schedule_create_params.ex
# File generated from our OpenAPI spec
defmodule Stripe.Params.SubscriptionScheduleCreateParams do
@moduledoc "Parameters for subscription schedule create."
@typedoc """
* `billing_mode` - Controls how prorations and invoices for subscriptions are calculated and orchestrated.
* `customer` - The identifier of the customer to create the subscription schedule for. Max length: 5000.
* `customer_account` - The identifier of the account to create the subscription schedule for. Max length: 5000.
* `default_settings` - Object representing the subscription schedule's default settings.
* `end_behavior` - Behavior of the subscription schedule and underlying subscription when it ends. Possible values are `release` or `cancel` with the default being `release`. `release` will end the subscription schedule and keep the underlying subscription running. `cancel` will end the subscription schedule and cancel the underlying subscription. Possible values: `cancel`, `none`, `release`, `renew`.
* `expand` - Specifies which fields in the response should be expanded.
* `from_subscription` - Migrate an existing subscription to be managed by a subscription schedule. If this parameter is set, a subscription schedule will be created using the subscription's item(s), set to auto-renew using the subscription's interval. When using this parameter, other parameters (such as phase values) cannot be set. To create a subscription schedule with other modifications, we recommend making two separate API calls. Max length: 5000.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) 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 to `metadata`.
* `phases` - List representing phases of the subscription schedule. Each phase can be customized to have different durations, plans, and coupons. If there are multiple phases, the `end_date` of one phase will always equal the `start_date` of the next phase.
* `start_date` - When the subscription schedule starts. We recommend using `now` so that it starts the subscription immediately. You can also use a Unix timestamp to backdate the subscription so that it starts on a past date, or set a future date for the subscription to start on.
"""
@type t :: %__MODULE__{
billing_mode: __MODULE__.BillingMode.t() | nil,
customer: String.t() | nil,
customer_account: String.t() | nil,
default_settings: __MODULE__.DefaultSettings.t() | nil,
end_behavior: String.t() | nil,
expand: [String.t()] | nil,
from_subscription: String.t() | nil,
metadata: map() | nil,
phases: [__MODULE__.Phases.t()] | nil,
start_date: map() | nil
}
defstruct [
:billing_mode,
:customer,
:customer_account,
:default_settings,
:end_behavior,
:expand,
:from_subscription,
:metadata,
:phases,
:start_date
]
defmodule BillingMode do
@moduledoc "Nested parameters."
@typedoc """
* `flexible` - Configure behavior for flexible billing mode.
* `type` - Controls the calculation and orchestration of prorations and invoices for subscriptions. If no value is passed, the default is `flexible`. Possible values: `classic`, `flexible`.
"""
@type t :: %__MODULE__{
flexible: __MODULE__.Flexible.t() | nil,
type: String.t() | nil
}
defstruct [:flexible, :type]
defmodule Flexible do
@moduledoc "Nested parameters."
@typedoc """
* `proration_discounts` - Controls how invoices and invoice items display proration amounts and discount amounts. Possible values: `included`, `itemized`.
"""
@type t :: %__MODULE__{
proration_discounts: String.t() | nil
}
defstruct [:proration_discounts]
end
end
defmodule DefaultSettings do
@moduledoc "Nested parameters."
@typedoc """
* `application_fee_percent` - 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](https://stripe.com/docs/connect/subscriptions#collecting-fees-on-subscriptions).
* `automatic_tax` - Default settings for automatic tax computation.
* `billing_cycle_anchor` - 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](https://docs.stripe.com/billing/subscriptions/billing-cycle). Possible values: `automatic`, `phase_start`.
* `billing_thresholds` - 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.
* `collection_method` - 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. Possible values: `charge_automatically`, `send_invoice`.
* `default_payment_method` - 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. Max length: 5000.
* `description` - 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.
* `invoice_settings` - All invoices will be billed using the specified settings.
* `on_behalf_of` - The account on behalf of which to charge, for each of the associated subscription's invoices.
* `transfer_data` - The data with which to automatically create a Transfer for each of the associated subscription's invoices.
"""
@type t :: %__MODULE__{
application_fee_percent: float() | nil,
automatic_tax: __MODULE__.AutomaticTax.t() | nil,
billing_cycle_anchor: String.t() | nil,
billing_thresholds: map() | nil,
collection_method: String.t() | nil,
default_payment_method: String.t() | nil,
description: map() | nil,
invoice_settings: __MODULE__.InvoiceSettings.t() | nil,
on_behalf_of: map() | nil,
transfer_data: map() | nil
}
defstruct [
:application_fee_percent,
:automatic_tax,
:billing_cycle_anchor,
:billing_thresholds,
:collection_method,
:default_payment_method,
:description,
:invoice_settings,
:on_behalf_of,
:transfer_data
]
defmodule AutomaticTax do
@moduledoc "Nested parameters."
@typedoc """
* `enabled` - Enabled automatic tax calculation which will automatically compute tax rates on all invoices generated by the subscription.
* `liability` - The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
"""
@type t :: %__MODULE__{
enabled: boolean() | nil,
liability: __MODULE__.Liability.t() | nil
}
defstruct [:enabled, :liability]
defmodule Liability do
@moduledoc "Nested parameters."
@typedoc """
* `account` - The connected account being referenced when `type` is `account`.
* `type` - Type of the account referenced in the request. Possible values: `account`, `self`.
"""
@type t :: %__MODULE__{
account: String.t() | nil,
type: String.t() | nil
}
defstruct [:account, :type]
end
end
defmodule InvoiceSettings do
@moduledoc "Nested parameters."
@typedoc """
* `account_tax_ids` - The account tax IDs associated with the subscription schedule. Will be set on invoices generated by the subscription schedule.
* `days_until_due` - Number of days within which a customer must pay invoices generated by this subscription schedule. This value will be `null` for subscription schedules where `collection_method=charge_automatically`.
* `issuer` - The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
"""
@type t :: %__MODULE__{
account_tax_ids: map() | nil,
days_until_due: integer() | nil,
issuer: __MODULE__.Issuer.t() | nil
}
defstruct [:account_tax_ids, :days_until_due, :issuer]
defmodule Issuer do
@moduledoc "Nested parameters."
@typedoc """
* `account` - The connected account being referenced when `type` is `account`.
* `type` - Type of the account referenced in the request. Possible values: `account`, `self`.
"""
@type t :: %__MODULE__{
account: String.t() | nil,
type: String.t() | nil
}
defstruct [:account, :type]
end
end
end
defmodule Phases do
@moduledoc "Nested parameters."
@typedoc """
* `add_invoice_items` - 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` - 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](https://stripe.com/docs/connect/subscriptions#collecting-fees-on-subscriptions).
* `automatic_tax` - Automatic tax settings for this phase.
* `billing_cycle_anchor` - 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](https://docs.stripe.com/billing/subscriptions/billing-cycle). Possible values: `automatic`, `phase_start`.
* `billing_thresholds` - 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.
* `collection_method` - 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. Possible values: `charge_automatically`, `send_invoice`.
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `default_payment_method` - 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. Max length: 5000.
* `default_tax_rates` - A list of [Tax Rate](https://docs.stripe.com/api/tax_rates) ids. These Tax Rates will set the Subscription's [`default_tax_rates`](https://docs.stripe.com/api/subscriptions/create#create_subscription-default_tax_rates), which means they will be the Invoice's [`default_tax_rates`](https://docs.stripe.com/api/invoices/create#create_invoice-default_tax_rates) for any Invoices issued by the Subscription during this Phase.
* `description` - 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.
* `discounts` - 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.
* `duration` - The number of intervals the phase should last. If set, `end_date` must not be set.
* `end_date` - The date at which this phase of the subscription schedule ends. If set, `duration` must not be set. Format: Unix timestamp.
* `invoice_settings` - All invoices will be billed using the specified settings.
* `items` - List of configuration items, each with an attached price, to apply during this phase of the subscription schedule.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) 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` - The account on behalf of which to charge, for each of the associated subscription's invoices.
* `proration_behavior` - Controls whether the subscription schedule should create [prorations](https://docs.stripe.com/billing/subscriptions/prorations) when transitioning to this phase if there is a difference in billing configuration. It's different from the request-level [proration_behavior](https://docs.stripe.com/api/subscription_schedules/update#update_subscription_schedule-proration_behavior) parameter which controls what happens if the update request affects the billing configuration (item price, quantity, etc.) of the current phase. Possible values: `always_invoice`, `create_prorations`, `none`.
* `transfer_data` - The data with which to automatically create a Transfer for each of the associated subscription's invoices.
* `trial` - If set to true the entire phase is counted as a trial and the customer will not be charged for any fees.
* `trial_end` - 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` Format: Unix timestamp.
"""
@type t :: %__MODULE__{
add_invoice_items: [__MODULE__.AddInvoiceItems.t()] | nil,
application_fee_percent: float() | nil,
automatic_tax: __MODULE__.AutomaticTax.t() | nil,
billing_cycle_anchor: String.t() | nil,
billing_thresholds: map() | nil,
collection_method: String.t() | nil,
currency: String.t() | nil,
default_payment_method: String.t() | nil,
default_tax_rates: map() | nil,
description: map() | nil,
discounts: map() | nil,
duration: __MODULE__.Duration.t() | nil,
end_date: integer() | nil,
invoice_settings: __MODULE__.InvoiceSettings.t() | nil,
items: [__MODULE__.Items.t()] | nil,
metadata: %{String.t() => String.t()} | nil,
on_behalf_of: String.t() | nil,
proration_behavior: String.t() | nil,
transfer_data: __MODULE__.TransferData.t() | nil,
trial: boolean() | nil,
trial_end: integer() | nil
}
defstruct [
:add_invoice_items,
:application_fee_percent,
:automatic_tax,
:billing_cycle_anchor,
:billing_thresholds,
:collection_method,
:currency,
:default_payment_method,
:default_tax_rates,
:description,
:discounts,
:duration,
:end_date,
:invoice_settings,
:items,
:metadata,
:on_behalf_of,
:proration_behavior,
:transfer_data,
:trial,
:trial_end
]
defmodule AddInvoiceItems do
@moduledoc "Nested parameters."
@typedoc """
* `discounts` - The coupons to redeem into discounts for the item.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) 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 to `metadata`.
* `period` - The period associated with this invoice item. If not set, `period.start.type` defaults to `max_item_period_start` and `period.end.type` defaults to `min_item_period_end`.
* `price` - The ID of the price object. One of `price` or `price_data` is required. Max length: 5000.
* `price_data` - Data used to generate a new [Price](https://docs.stripe.com/api/prices) object inline. One of `price` or `price_data` is required.
* `quantity` - Quantity for this item. Defaults to 1.
* `tax_rates` - The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
"""
@type t :: %__MODULE__{
discounts: [__MODULE__.Discounts.t()] | nil,
metadata: %{String.t() => String.t()} | nil,
period: __MODULE__.Period.t() | nil,
price: String.t() | nil,
price_data: __MODULE__.PriceData.t() | nil,
quantity: integer() | nil,
tax_rates: map() | nil
}
defstruct [:discounts, :metadata, :period, :price, :price_data, :quantity, :tax_rates]
defmodule Discounts do
@moduledoc "Nested parameters."
@typedoc """
* `coupon` - ID of the coupon to create a new discount for. Max length: 5000.
* `discount` - ID of an existing discount on the object (or one of its ancestors) to reuse. Max length: 5000.
* `promotion_code` - ID of the promotion code to create a new discount for. Max length: 5000.
"""
@type t :: %__MODULE__{
coupon: String.t() | nil,
discount: String.t() | nil,
promotion_code: String.t() | nil
}
defstruct [:coupon, :discount, :promotion_code]
end
defmodule Period do
@moduledoc "Nested parameters."
@typedoc """
* `end` - End of the invoice item period.
* `start` - Start of the invoice item period.
"""
@type t :: %__MODULE__{
end: __MODULE__.End.t() | nil,
start: __MODULE__.Start.t() | nil
}
defstruct [:end, :start]
defmodule End do
@moduledoc "Nested parameters."
@typedoc """
* `timestamp` - A precise Unix timestamp for the end of the invoice item period. Must be greater than or equal to `period.start`. Format: Unix timestamp.
* `type` - Select how to calculate the end of the invoice item period. Possible values: `min_item_period_end`, `phase_end`, `timestamp`.
"""
@type t :: %__MODULE__{
timestamp: integer() | nil,
type: String.t() | nil
}
defstruct [:timestamp, :type]
end
defmodule Start do
@moduledoc "Nested parameters."
@typedoc """
* `timestamp` - A precise Unix timestamp for the start of the invoice item period. Must be less than or equal to `period.end`. Format: Unix timestamp.
* `type` - Select how to calculate the start of the invoice item period. Possible values: `max_item_period_start`, `phase_start`, `timestamp`.
"""
@type t :: %__MODULE__{
timestamp: integer() | nil,
type: String.t() | nil
}
defstruct [:timestamp, :type]
end
end
defmodule PriceData do
@moduledoc "Nested parameters."
@typedoc """
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `product` - The ID of the [Product](https://docs.stripe.com/api/products) that this [Price](https://docs.stripe.com/api/prices) will belong to. Max length: 5000.
* `tax_behavior` - Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed. Possible values: `exclusive`, `inclusive`, `unspecified`.
* `unit_amount` - A positive integer in cents (or local equivalent) (or 0 for a free price) representing how much to charge or a negative integer representing the amount to credit to the customer.
* `unit_amount_decimal` - Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set. Format: decimal string.
"""
@type t :: %__MODULE__{
currency: String.t() | nil,
product: String.t() | nil,
tax_behavior: String.t() | nil,
unit_amount: integer() | nil,
unit_amount_decimal: String.t() | nil
}
defstruct [:currency, :product, :tax_behavior, :unit_amount, :unit_amount_decimal]
end
end
defmodule AutomaticTax do
@moduledoc "Nested parameters."
@typedoc """
* `enabled` - Enabled automatic tax calculation which will automatically compute tax rates on all invoices generated by the subscription.
* `liability` - The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
"""
@type t :: %__MODULE__{
enabled: boolean() | nil,
liability: __MODULE__.Liability.t() | nil
}
defstruct [:enabled, :liability]
defmodule Liability do
@moduledoc "Nested parameters."
@typedoc """
* `account` - The connected account being referenced when `type` is `account`.
* `type` - Type of the account referenced in the request. Possible values: `account`, `self`.
"""
@type t :: %__MODULE__{
account: String.t() | nil,
type: String.t() | nil
}
defstruct [:account, :type]
end
end
defmodule Duration do
@moduledoc "Nested parameters."
@typedoc """
* `interval` - Specifies phase duration. Either `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `interval_count` - The multiplier applied to the interval.
"""
@type t :: %__MODULE__{
interval: String.t() | nil,
interval_count: integer() | nil
}
defstruct [:interval, :interval_count]
end
defmodule InvoiceSettings do
@moduledoc "Nested parameters."
@typedoc """
* `account_tax_ids` - The account tax IDs associated with this phase of the subscription schedule. Will be set on invoices generated by this phase of the subscription schedule.
* `days_until_due` - Number of days within which a customer must pay invoices generated by this subscription schedule. This value will be `null` for subscription schedules where `billing=charge_automatically`.
* `issuer` - The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
"""
@type t :: %__MODULE__{
account_tax_ids: map() | nil,
days_until_due: integer() | nil,
issuer: __MODULE__.Issuer.t() | nil
}
defstruct [:account_tax_ids, :days_until_due, :issuer]
defmodule Issuer do
@moduledoc "Nested parameters."
@typedoc """
* `account` - The connected account being referenced when `type` is `account`.
* `type` - Type of the account referenced in the request. Possible values: `account`, `self`.
"""
@type t :: %__MODULE__{
account: String.t() | nil,
type: String.t() | nil
}
defstruct [:account, :type]
end
end
defmodule Items do
@moduledoc "Nested parameters."
@typedoc """
* `billing_thresholds` - 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.
* `discounts` - The coupons to redeem into discounts for the subscription item.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to a configuration item. Metadata on a configuration item will update the underlying subscription item's `metadata` when the phase is entered, adding new keys and replacing existing keys. Individual keys in the subscription item's `metadata` can be unset by posting an empty value to them in the configuration item's `metadata`. To unset all keys in the subscription item's `metadata`, update the subscription item directly or unset every key individually from the configuration item's `metadata`.
* `plan` - The plan ID to subscribe to. You may specify the same ID in `plan` and `price`. Max length: 5000.
* `price` - The ID of the price object. Max length: 5000.
* `price_data` - Data used to generate a new [Price](https://docs.stripe.com/api/prices) object inline.
* `quantity` - Quantity for the given price. Can be set only if the price's `usage_type` is `licensed` and not `metered`.
* `tax_rates` - A list of [Tax Rate](https://docs.stripe.com/api/tax_rates) ids. These Tax Rates will override the [`default_tax_rates`](https://docs.stripe.com/api/subscriptions/create#create_subscription-default_tax_rates) on the Subscription. When updating, pass an empty string to remove previously-defined tax rates.
"""
@type t :: %__MODULE__{
billing_thresholds: map() | nil,
discounts: map() | nil,
metadata: %{String.t() => String.t()} | nil,
plan: String.t() | nil,
price: String.t() | nil,
price_data: __MODULE__.PriceData.t() | nil,
quantity: integer() | nil,
tax_rates: map() | nil
}
defstruct [
:billing_thresholds,
:discounts,
:metadata,
:plan,
:price,
:price_data,
:quantity,
:tax_rates
]
defmodule PriceData do
@moduledoc "Nested parameters."
@typedoc """
* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Format: ISO 4217 currency code.
* `product` - The ID of the [Product](https://docs.stripe.com/api/products) that this [Price](https://docs.stripe.com/api/prices) will belong to. Max length: 5000.
* `recurring` - The recurring components of a price such as `interval` and `interval_count`.
* `tax_behavior` - Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed. Possible values: `exclusive`, `inclusive`, `unspecified`.
* `unit_amount` - A positive integer in cents (or local equivalent) (or 0 for a free price) representing how much to charge.
* `unit_amount_decimal` - Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set. Format: decimal string.
"""
@type t :: %__MODULE__{
currency: String.t() | nil,
product: String.t() | nil,
recurring: __MODULE__.Recurring.t() | nil,
tax_behavior: String.t() | nil,
unit_amount: integer() | nil,
unit_amount_decimal: String.t() | nil
}
defstruct [
:currency,
:product,
:recurring,
:tax_behavior,
:unit_amount,
:unit_amount_decimal
]
defmodule Recurring do
@moduledoc "Nested parameters."
@typedoc """
* `interval` - Specifies billing frequency. Either `day`, `week`, `month` or `year`. Possible values: `day`, `month`, `week`, `year`.
* `interval_count` - The number of intervals between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months. Maximum of three years interval allowed (3 years, 36 months, or 156 weeks).
"""
@type t :: %__MODULE__{
interval: String.t() | nil,
interval_count: integer() | nil
}
defstruct [:interval, :interval_count]
end
end
end
defmodule TransferData do
@moduledoc "Nested parameters."
@typedoc """
* `amount_percent` - 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 destination account. By default, the entire amount is transferred to the destination.
* `destination` - ID of an existing, connected Stripe account.
"""
@type t :: %__MODULE__{
amount_percent: float() | nil,
destination: String.t() | nil
}
defstruct [:amount_percent, :destination]
end
end
end