Project
data class Project( @Json(name = "id") val id: String, @Json(name = "displayName") val displayName: String? = null, @Json(name = "description") val description: String? = null)
A project.
Parameters
id
The unique identifier for the project. Must not contain whitespace.
displayName
The label used when displaying the project.
description
The description of the project group.