@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
30 lines (29 loc) • 691 B
TypeScript
/**
* Interface defining the property object that describes the organization.
* @see [Organization](https://github.com/goboomtown/entities-ts/tree/master/docs/dtos)
*
* @OvationCXMApi
*/
export interface Organization {
id?: string;
name?: string;
nameLegal?: string;
nickname?: string;
chatId?: string;
description?: string;
street1?: string;
street2?: string;
city?: string;
state?: string;
zipcode?: string;
latitude?: number;
longitude?: number;
externalId?: string;
defaultOrgTeamId?: string;
email?: string;
phone?: string;
website?: string;
avatar?: string;
created?: string;
updated?: string;
}