Module python_odpt.models.flight_information_departure_type

Classes

class FlightInformationDepartureType (value, names=None, *, module=None, qualname=None, type=None, start=1)
Expand source code
class FlightInformationDepartureType(str, Enum):
    ODPTFLIGHTINFORMATIONDEPARTURE = "odpt:FlightInformationDeparture"

    def __str__(self) -> str:
        return str(self.value)

An enumeration.

Ancestors

  • builtins.str
  • enum.Enum

Class variables

var ODPTFLIGHTINFORMATIONDEPARTURE