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

:amount_subtotal :: :integer

Total before any discounts or taxes are applied.

:amount_total :: :integer

Total after discounts and taxes are applied.

::data :: ExOAPI.Stripe.Schemas.Item

:has_more :: :boolean

True if this list has another page of items after this one that can be fetched.

:object :: :string

String representing the object's type. Objects of the same type share the same value. Always has the value list.

:url :: :string

The URL where this list can be accessed.

:total_details :: ExOAPI.Stripe.Schemas.QuotesResourceTotalDetails

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.QuotesResourceUpfront{
  amount_subtotal: integer() | nil,
  amount_total: integer() | nil,
  line_items: map() | nil,
  total_details: ExOAPI.Stripe.Schemas.QuotesResourceTotalDetails.t() | nil
}

Link to this section Functions

Link to this function

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

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