AssetData type

Asset data type

Signature:

export declare type AssetData = {
    id: number;
    name: string;
    status: AssetStatus;
    type: AssetType;
    downloadUrl: string;
    convertedUrls: {
        filename: string;
        url: string;
    }[] | null;
    panoConvertedUrl: string | null;
    updatedAt: string;
};

References: AssetStatus, AssetType