@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
21 lines (20 loc) • 437 B
TypeScript
/**
* 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;
}