Filter

public struct Filter : Codable

Filter to apply to the results, treated as an “AND” condition.

  • Undocumented

    Declaration

    Swift

    public init(operatorID: String, routeID: String? = nil, directionID: String? = nil)
  • Operator identifier

    Declaration

    Swift

    public let operatorID: String
  • Route identifier for the provided operator

    Declaration

    Swift

    public let routeID: String?
  • Direction for the provided route, if provided, routeID is also required

    Declaration

    Swift

    public let directionID: String?