FolderListItemDto

data class FolderListItemDto(id: String, name: String, color: String, updatedAt: OffsetDateTime, createdAt: OffsetDateTime, count: Int, totals: List<FolderListItemTotalsDto>?)

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 * @param count * @param totals

Constructors

FolderListItemDto
Link copied to clipboard
fun FolderListItemDto(id: String, name: String, color: String, updatedAt: OffsetDateTime, createdAt: OffsetDateTime, count: Int, totals: List<FolderListItemTotalsDto>? = null)
The id of the folder

Properties

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