ProjectConfiguration

public struct ProjectConfiguration : Codable

Undocumented

  • url

    The URL where the project is located

    Declaration

    Swift

    public var url: URL
  • The project name that works as a unique idetifier for the project

    Declaration

    Swift

    public var projectName: String
  • A timestamp for the creation of the project

    Declaration

    Swift

    public var creationTimestamp: String
  • A timestamp for the last time the project was updated or changed by the program

    Declaration

    Swift

    public var lastUpdated: String
  • All services of this project identified by thier service name and service configuration url

    Declaration

    Swift

    public var repositories: [String : URL]
  • Undocumented

    Declaration

    Swift

    public init(url: URL, projectName: String, lastUpdated: String)