PortalFolder

@Serializable
data class PortalFolder(val folderId: String, val username: String, val title: String, val creationDate: Instant? = null)

Represents a folder of content within the portal or organization. A user's content in a portal can be organized into folders.

Since

200.0.0

Constructors

Link copied to clipboard
constructor(folderId: String, username: String, title: String, creationDate: Instant? = null)

Properties

Link copied to clipboard
@SerialName(value = "created")
@Serializable(with = InstantMillisecondsSerializer::class)
val creationDate: Instant? = null

the date of creation of the folder

Link copied to clipboard
@SerialName(value = "id")
val folderId: String

the ID of the folder

Link copied to clipboard

the title of the folder

Link copied to clipboard

the username of the person that created the folder