/** * A contact person for a company. * @export * @class ContactModel */ export declare class ContactModel { /** * @type {number} * @memberof ContactModel */ id?: number | undefined; /** * @type {number} * @memberof ContactModel */ companyId?: number | undefined; /** * @type {string} * @memberof ContactModel */ contactCode: string; /** * @type {string} * @memberof ContactModel */ firstName?: string | undefined; /** * @type {string} * @memberof ContactModel */ middleName?: string | undefined; /** * @type {string} * @memberof ContactModel */ lastName?: string | undefined; /** * @type {string} * @memberof ContactModel */ title?: string | undefined; /** * @type {string} * @memberof ContactModel */ line1?: string | undefined; /** * @type {string} * @memberof ContactModel */ line2?: string | undefined; /** * @type {string} * @memberof ContactModel */ line3?: string | undefined; /** * @type {string} * @memberof ContactModel */ city?: string | undefined; /** * @type {string} * @memberof ContactModel */ region?: string | undefined; /** * @type {string} * @memberof ContactModel */ postalCode?: string | undefined; /** * @type {string} * @memberof ContactModel */ country?: string | undefined; /** * @type {string} * @memberof ContactModel */ email?: string | undefined; /** * @type {string} * @memberof ContactModel */ phone?: string | undefined; /** * @type {string} * @memberof ContactModel */ mobile?: string | undefined; /** * @type {string} * @memberof ContactModel */ fax?: string | undefined; /** * @type {Date} * @memberof ContactModel */ createdDate?: Date | undefined; /** * @type {number} * @memberof ContactModel */ createdUserId?: number | undefined; /** * @type {Date} * @memberof ContactModel */ modifiedDate?: Date | undefined; /** * @type {number} * @memberof ContactModel */ modifiedUserId?: number | undefined; }