ActionType

public enum ActionType : String, Codable, CaseIterable

Undocumented

  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Undocumented

    Declaration

    Swift

    case lock = "LOCK"
  • Undocumented

    Declaration

    Swift

    case unlock = "UNLOCK"
  • Undocumented

    Declaration

    Swift

    case cancel = "CANCEL"
  • Tells the app to show another trip when tapped; comes with an internal URL

    Declaration

    Swift

    case showTrip = "SHOW_RELATED_TRIP"
  • Tells the app to plan another trip, aka “request another”; no URL or external action provided

    Declaration

    Swift

    case planNext = "REQUESTANOTHER"
  • Tells the app to show the list of purchased tickets; no URL or external action provided

    Declaration

    Swift

    case showTickets = "SHOW_TICKETS"
  • Tells the app that the action will activate tickets; comes with an internal URL or external action

    Declaration

    Swift

    case activateTickets = "ACTIVATE_TICKETS"
  • Undocumented

    Declaration

    Swift

    case unknown