FilePath

data class FilePath(val type: FilePath.Type, val fileId: String, val index: Int)(source)

A path to a file.

Parameters

type

The type of the file path. Always file_path.

fileId

The ID of the file.

index

The index of the file in the list of files.

Constructors

Link copied to clipboard
constructor(type: FilePath.Type, fileId: String, index: Int)

Types

Link copied to clipboard

The type of the file path. Always file_path.

Properties

Link copied to clipboard
@SerialName(value = "file_id")
val fileId: String
Link copied to clipboard
@SerialName(value = "index")
val index: Int
Link copied to clipboard
@SerialName(value = "type")
val type: FilePath.Type