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

:departure_at :: :integer

The time that the flight departed.

:passenger_name :: :string

The name of the passenger.

:refundable :: :boolean

Whether the ticket is refundable.

::segments :: ExOAPI.Stripe.Schemas.IssuingTransactionFlightDataLeg

:travel_agency :: :string

The travel agency that issued the ticket.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingTransactionFlightData{
  departure_at: integer() | nil,
  passenger_name: String.t() | nil,
  refundable: boolean() | nil,
  segments: [ExOAPI.Stripe.Schemas.IssuingTransactionFlightDataLeg.t()],
  travel_agency: 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()