Interface FileCommon

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

Hierarchy (view full)

Properties

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