FolderCreateRequestDto

data class FolderCreateRequestDto(val name: String, val color: String)

Parameters

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, e.g. cc0000 or 9b1515.

Constructors

Link copied to clipboard
constructor(name: String, color: String)

Properties

Link copied to clipboard
@SerializedName(value = "color")
val color: String
Link copied to clipboard
@SerializedName(value = "name")
val name: String