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

:accepted_at :: :integer

The time at which the customer accepted the Mandate.

:offline :: list(:map)

:online :: ExOAPI.Stripe.Schemas.OnlineAcceptance

:type :: :string

The type of customer acceptance information included with the Mandate. One of online or offline.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.CustomerAcceptance{
  accepted_at: integer() | nil,
  offline: [map()] | nil,
  online: ExOAPI.Stripe.Schemas.OnlineAcceptance.t() | nil,
  type: (:online | :offline) | nil
}

Link to this section Functions

Link to this function

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

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