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

:arrival_airport_code :: :string

The three-letter IATA airport code of the flight's destination.

:carrier :: :string

The airline carrier code.

:departure_airport_code :: :string

The three-letter IATA airport code that the flight departed from.

:flight_number :: :string

The flight number.

:service_class :: :string

The flight's service class.

:stopover_allowed :: :boolean

Whether a stopover is allowed on this flight.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingTransactionFlightDataLeg{
  arrival_airport_code: String.t() | nil,
  carrier: String.t() | nil,
  departure_airport_code: String.t() | nil,
  flight_number: String.t() | nil,
  service_class: String.t() | nil,
  stopover_allowed: boolean() | nil
}

Link to this section Functions

Link to this function

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

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