Expand description
Module for managing files and related operations. This module defines the structures and methods for managing files, including uploading, deleting, retrieving, and listing files. It includes:
FileData
: Struct representing the data of a file.FileListResponse
: Struct for the response from a request to list files.FileUploadRequest
: Struct for creating a request to upload a file.FileUploadResponse
: Struct for the response from a file upload request.FileDeleteRequest
: Struct for creating a request to delete a file.FileDeleteResponse
: Struct for the response from a file delete request.FileRetrieveRequest
: Struct for creating a request to retrieve a file.FileRetrieveResponse
: Struct for the response from a file retrieve request.FileRetrieveContentRequest
: Struct for creating a request to retrieve the content of a file.FileRetrieveContentResponse
: Struct for the response from a file content retrieve request.
Structsยง
- File
Data - Represents the data of a file.
- File
Delete Request - Represents a request to delete a file.
- File
Delete Response - Represents the response from a file delete request.
- File
List Response - Represents the response from a request to list files.
- File
Retrieve Content Request - Represents a request to retrieve the content of a file.
- File
Retrieve Content Response - Represents the response from a file content retrieve request.
- File
Retrieve Request - Represents a request to retrieve a file.
- File
Retrieve Response - Represents the response from a file retrieve request.
- File
Upload Request - Represents a request to upload a file.
- File
Upload Response - Represents the response from a file upload request.