View Source ExOAPI.Stripe.Schemas.SubscriptionScheduleAddInvoiceItem (exoapi_stripe v0.1.4)

description: An Add Invoice Item describes the prices and quantities that will be added as pending invoice items when entering a phase.

:price :: ExOAPI.Stripe.Schemas.DeletedPrice | ExOAPI.Stripe.Schemas.Price | :string

ID of the price used to generate the invoice item.

:quantity :: :integer

The quantity of the invoice item.

::tax_rates :: ExOAPI.Stripe.Schemas.TaxRate

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.SubscriptionScheduleAddInvoiceItem{
  price: ExOAPI.EctoTypes.AnyOf.t() | nil,
  quantity: integer() | nil,
  tax_rates: [ExOAPI.Stripe.Schemas.TaxRate.t()]
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()