Project
public struct Project : XMLRepresentable
Undocumented
-
The sequence contained in the project.
Declaration
Swift
public var sequence: Sequence
-
The name of the project.
Declaration
Swift
public var name: String?
-
The unique identifier of the project.
Declaration
Swift
public var uid: String?
-
The identifier of the project.
Declaration
Swift
public var id: String?
-
The date modified of the project.
Declaration
Swift
public var dateModified: Date?
-
Initializes a new project.
Declaration
Swift
public init(name: String? = nil, uid: String? = nil, dateModified: Date? = nil, sequence: Sequence)
Parameters
name
The name of the project.
uid
The unique identifer of the project.
dateModified
The date modified of the project.
sequence
The sequence contained in the project.