SimplifiedFolderDto

data class SimplifiedFolderDto(val id: String? = null, val name: String? = null, val color: String? = null, val updatedAt: OffsetDateTime? = null, val createdAt: OffsetDateTime? = null)

Parameters

id

The id of the folder

name

The name for this folder. A user may not have two folders with the same name.

color

Six hex digits representing the color of this folder.

updatedAt
createdAt

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, color: String? = null, updatedAt: OffsetDateTime? = null, createdAt: OffsetDateTime? = null)

Properties

Link copied to clipboard
@SerializedName(value = "color")
val color: String? = null
Link copied to clipboard
@SerializedName(value = "createdAt")
val createdAt: OffsetDateTime? = null
Link copied to clipboard
@SerializedName(value = "id")
val id: String? = null
Link copied to clipboard
@SerializedName(value = "name")
val name: String? = null
Link copied to clipboard
@SerializedName(value = "updatedAt")
val updatedAt: OffsetDateTime? = null