Page
public struct Page : Codable, Equatable
Sub page of video, identified by unique cid.
-
Unique identifier of this page.
Declaration
Swift
public let cid: Int
-
Index of the page.
Declaration
Swift
public let page: Int
-
Name of the page.
Declaration
Swift
public let pageName: String
-
Length in seconds.
Declaration
Swift
public let duration: Int
-
Video dimension.
Declaration
Swift
public let dimension: Dimension
-
Where from, such as
vupload
.Declaration
Swift
public let source: String
-
???
Declaration
Swift
public let vid: String
-
???
Declaration
Swift
public let weblink: String
-
Check if two video pages are the same.
Declaration
Swift
public static func == (lhs: Page, rhs: Page) -> Bool
Parameters
lhs
A page of a video.
rhs
Another page, of the same or another video.
Return Value
true if they have the same cid, false otherwise.