Represents one file record returned by GET /user/file.

interface ESPFileAPIRecord {
    description?: string;
    entity_id?: string;
    entity_type?: string;
    file_id: string;
    file_md5?: string;
    file_name?: string;
    file_type?: string;
    file_url?: string;
    metadata?: string | Record<string, unknown>;
    public?: boolean;
    s3_key?: string;
    timestamp?: string;
    user_id?: string;
    user_name?: string;
}

Properties

description?: string
entity_id?: string
entity_type?: string
file_id: string
file_md5?: string
file_name?: string
file_type?: string
file_url?: string
metadata?: string | Record<string, unknown>
public?: boolean
s3_key?: string
timestamp?: string
user_id?: string
user_name?: string