StreamType

@objc(THEOplayerStreamType)
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

    @objc(THEOplayerStreamTypeVOD)
    case vod = 1
  • A Live stream.

    Declaration

    Swift

    @objc(THEOplayerStreamTypeLIVE)
    case live = 2
  • The raw value of type String.

    Declaration

    Swift

    public var _rawValue: String { get set }