Interface FileCommon

interface FileCommon {
    description: string;
    headers: {
        contentType: FileContentType;
    };
    id: number;
    name: string;
    org: number;
    org_name: string;
    public: boolean;
    searchable_description: string;
    tags: string[];
    thumbnail_url?: string;
    url: string;
}

Properties

description: string
headers: {
    contentType: FileContentType;
}
id: number
name: string
org: number
org_name: string
public: boolean
searchable_description: string
tags: string[]
thumbnail_url?: string
url: string