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

:account :: ExOAPI.Stripe.Schemas.Account

The Connected account that incurred this charge.

:id :: :string

Unique identifier for the object.

:object :: :string

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

:source_transaction :: ExOAPI.Stripe.Schemas.SourceTransaction

The payment object that caused this tax to be inflicted.

:type :: :string

The type of tax (VAT).

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PlatformTaxFee{
  account: String.t() | nil,
  id: String.t() | nil,
  object: :platform_tax_fee | nil,
  source_transaction: String.t() | nil,
  type: String.t() | nil
}

Link to this section Functions

Link to this function

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

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