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

:expires_at :: :integer

The timestamp after which the boleto expires.

:hosted_voucher_url :: :string

The URL to the hosted boleto voucher page, which allows customers to view the boleto voucher.

:number :: :string

The boleto number.

:pdf :: :string

The URL to the downloadable boleto voucher PDF.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentIntentNextActionBoleto{
  expires_at: integer() | nil,
  hosted_voucher_url: String.t() | nil,
  number: String.t() | nil,
  pdf: 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()