GetFolderResult

data class GetFolderResult(val createTime: String, val displayName: String, val lifecycleState: String, val name: String, val parent: String)

Constructors

Link copied to clipboard
constructor(createTime: String, displayName: String, lifecycleState: String, name: String, parent: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Timestamp when the Folder was created. Assigned by the server.

Link copied to clipboard

The folder's display name. A folder's display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters. This is captured by the regular expression: [\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?.

Link copied to clipboard

The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder.

Link copied to clipboard

The resource name of the Folder. Its format is folders/{folder_id}, for example: "folders/1234".

Link copied to clipboard

The Folder's parent's resource name. Updates to the folder's parent must be performed via MoveFolder.