Project

public struct Project

A struct representation of a project in the harvest system.

  • A unique identifier for this Project

    Declaration

    Swift

    public var identifier: Int?
  • A unique identifier that denotes which client this project belongs to

    Declaration

    Swift

    public var clientIdentifier: Int?
  • A bool to indicate whether or not the project is active. If false, the project is archived

    Declaration

    Swift

    public var active: Bool?
  • The name of the project

    Declaration

    Swift

    public var name: String?
  • The number of hours budgeted for this project

    Declaration

    Swift

    public var budgetHours: Int?
  • Any notes assosciated with the project

    Declaration

    Swift

    public var notes: String?