Streams
public struct Streams : Codable, Identifiable, Hashable
The streaming details of a video item
-
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 moreDeclaration
Swift
public struct Audio : Codable, Identifiable, Hashable -
The subtitles details struct
See moreDeclaration
Swift
public struct Subtitle : Codable, Identifiable, Hashable -
The video details struct
See moreDeclaration
Swift
public struct Video : Codable, Identifiable, Hashable
View on GitHub
Streams Structure Reference