SimplifiedFolderDto

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

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
  • @param createdAt

Constructors

SimplifiedFolderDto
Link copied to clipboard
fun SimplifiedFolderDto(id: String? = null, name: String? = null, color: String? = null, updatedAt: OffsetDateTime? = null, createdAt: OffsetDateTime? = null)
The id of the folder

Properties

color
Link copied to clipboard
@SerializedName(value = color)
val color: String? = null
Six hex digits representing the color of this folder.
createdAt
Link copied to clipboard
@SerializedName(value = createdAt)
val createdAt: OffsetDateTime? = null
id
Link copied to clipboard
@SerializedName(value = id)
val id: String? = null
The id of the folder
name
Link copied to clipboard
@SerializedName(value = name)
val name: String? = null
The name for this folder.
updatedAt
Link copied to clipboard
@SerializedName(value = updatedAt)
val updatedAt: OffsetDateTime? = null
  • @param createdAt