Untitled

 avatar
unknown
plain_text
a year ago
944 B
6
Indexable
import { CreatedBy } from './contact-owner.model';

/**
 * Client Contact response that is contained within SearchHttpResponse
 */
export interface ClientContact {
    /**
     * Unique Id of the record
     */
    id: number;
    /**
     * Contacts first name
     */
    first_name: string;
    /**
     * Contacts last name
     */
    last_name: string;
    /**
     * Primary phone field
     */
    phone: string;
    /**
     * Mobile field
     */
    mobile: string;
    /**
     * Date the record was added
     */
    created_date: string;
    /**
     * Date the record was last updated
     */
    last_update: string;
    /**
     * The optional email address of the contact
     */
    email_string?: string;
    /**
     * The optional job title of the contact
     */
    job_title?: string;
    /**
     * The optional owner of the contact
     */
    created_by?: CreatedBy;
}
Editor is loading...
Leave a Comment