Vana SDK - v0.1.0
    Preparing search index...

    Interface UploadFileResult

    Contains the result of a successful file upload operation.

    This interface provides the essential information returned after uploading a file to a storage provider, including access URL, size verification, and encryption details when applicable.

    interface UploadFileResult {
        url: string;
        size: number;
        checksum?: string;
        encryption?: EncryptionInfo;
    }

    Hierarchy (View Summary)

    Index

    Properties

    url: string

    Public URL where the uploaded file can be accessed.

    size: number

    Actual file size in bytes after upload processing.

    checksum?: string

    Hash value for verifying file integrity after upload.

    encryption?: EncryptionInfo

    Encryption metadata when file was encrypted before storage.