/**
 * 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;
}
