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?
  • uid

    The unique identifier of the project.

    Declaration

    Swift

    public var uid: String?
  • id

    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.