Contact

Contact Model

{
    record_id?: string;
    organization_id: number;
    created_by_user_id: number;

    record_sub_type? = RecordSubTypeEnum.person;

    access_type = RecordAccessTypeEnum.default;

    name: string; // Max length 100
    designation?: string; // Max length 50
    avatar_url?: string;

    assigned_user?: UserModel;

    parent?: ContactTypeaheadModel;

    address?: string;       //4000 chars
    address_lat?: number;
    address_lng?: number;

    emails: ContactEmailModel[] = [];
    phones: ContactPhoneModel[] = [];

    url_details?: ContactUrlModel;

    projects: ProjectRecordModel[] = [];

    followers = new Array<OrganizationUserModel>();

    files: FileModel[] = [];

    custom_field_values: CustomFieldValueModel[] = [];

    archived: boolean = false;

    created_at: Date;
    modified_at: Date;
}

RecordSubTypeEnum

ContactEmailModel

ContactPhoneModel

ContactUrlModel

ContactTypeaheadModel

More Information

Last updated