StreamType

public enum StreamType : Int
extension StreamType: Codable

The enum for Stream type, can either be live or vod.

  • vod

    A video on demand.

    Declaration

    Swift

    case vod = 1
  • A Live stream.

    Declaration

    Swift

    case live = 2
  • The raw value of type String.

    Declaration

    Swift

    public var _rawValue: String { get set }