-
The ID of this offer, or completed snippet
Declaration
Swift
var snippetID: UUID
-
Each song the server works on collecting (via piecing together multiple song clips from users) gets an ID
Declaration
Swift
var songID: Int
-
The index into the Edit Decision List for this snippet. Not that there’s an actual EDL.
Declaration
Swift
var snippetIndex: Int
-
The user who has the reservation on this snippet.
Declaration
Swift
var user: UserHeader
-
The location of the uploaded video for this snippet. NIL if this snippet is an open offer for some user
Declaration
Swift
var videoURL: String?
-
Author must be the UserHeader for the snippet’s author.
Declaration
Swift
init(from snippet: MKSnippet, by author: UserHeader) throws