UNPKG

uservoice-nodejs

Version:
19 lines (18 loc) 402 B
import { IModel } from './model'; export interface IAssetCreateRequest { data_base64: string; name: string; type: string; parent_id: number; parent_type: string; } export interface IAsset extends IModel { id: number; file_name: string; content_type: string; file_size: number; name: string; description: string; created_at: Date; updated_at: Date; }