Streams

public struct Streams : Codable, Identifiable, Hashable

The streaming details of a video item

  • id

    Make it identifiable

    Declaration

    Swift

    public var id: UUID
  • The array of audio details

    Declaration

    Swift

    public var audio: [Audio]
  • The array of subtitles details

    Declaration

    Swift

    public var subtitle: [Subtitle]
  • The array of video details

    Declaration

    Swift

    public var video: [Video]
  • The audio details struct

    See more

    Declaration

    Swift

    public struct Audio : Codable, Identifiable, Hashable
  • The subtitles details struct

    See more

    Declaration

    Swift

    public struct Subtitle : Codable, Identifiable, Hashable
  • The video details struct

    See more

    Declaration

    Swift

    public struct Video : Codable, Identifiable, Hashable