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.

Constructors

Link copied to clipboard
constructor(@Json(name = "id") id: String, @Json(name = "displayName") displayName: String? = null, @Json(name = "description") description: String? = null)

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
val displayName: String? = null
Link copied to clipboard
val id: String