/**
 * Interface defining the property object that describes the upload file.
 *
 * @see [UploadFile](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface UploadFile {
    id?: string;
    object?: string;
    objectId?: string;
    type?: string;
    file?: string;
    size: number;
    name?: string;
    tag?: string;
    notes?: string;
    thumbnail?: string;
    created?: Date;
}
