FolderListItemDto

data class FolderListItemDto(val id: String, val name: String, val color: String, val updatedAt: OffsetDateTime, val createdAt: OffsetDateTime, val count: Int, val totals: List<FolderListItemTotalsDto>? = 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
count
totals

Constructors

Link copied to clipboard
constructor(id: String, name: String, color: String, updatedAt: OffsetDateTime, createdAt: OffsetDateTime, count: Int, totals: List<FolderListItemTotalsDto>? = null)

Properties

Link copied to clipboard
@SerializedName(value = "color")
val color: String
Link copied to clipboard
@SerializedName(value = "count")
val count: Int
Link copied to clipboard
@SerializedName(value = "createdAt")
val createdAt: OffsetDateTime
Link copied to clipboard
@SerializedName(value = "id")
val id: String
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "totals")
val totals: List<FolderListItemTotalsDto>? = null
Link copied to clipboard
@SerializedName(value = "updatedAt")
val updatedAt: OffsetDateTime