ListFilesParams

data class ListFilesParams(val fileType: FileType = FileType.ALL, val startPosition: Int? = null, val _startFileUrl: String? = null, val entryCount: Int, val maxThumbSize: Int = 0, val _detail: Boolean? = true, val _sort: SortOrder? = null, val _storage: Storage? = null)

list files request parameters

Constructors

Link copied to clipboard
constructor(fileType: FileType = FileType.ALL, startPosition: Int? = null, _startFileUrl: String? = null, entryCount: Int, maxThumbSize: Int = 0, _detail: Boolean? = true, _sort: SortOrder? = null, _storage: Storage? = null)

Properties

Link copied to clipboard
val _detail: Boolean? = true

Specifies whether or not to acquire the file details.

Link copied to clipboard
val _sort: SortOrder? = null

Specifies the sort order: “newest” (default) or “oldest”

Link copied to clipboard
val _startFileUrl: String? = null

First file to return to the list.

Link copied to clipboard
val _storage: Storage? = null

Specifies the storage.

Link copied to clipboard

Number of files to acquire. If the number of existing files is smaller than the specified number of files, all available files are only acquired.

Link copied to clipboard

File type to acquire. FileType.ALL: All types FileType.IMAGE: Still image FileType.VIDEO: movie

Link copied to clipboard
val maxThumbSize: Int = 0

"640": Acquire thumbnail, "0": Do not acquire thumbnail

Link copied to clipboard
val startPosition: Int? = null

Position to start acquiring the file list.