import { ObjectStateEnum } from './ObjectStateEnum';
/** External contact for this pro service */
export interface ExternalContactNative {
    /** Creation date */
    creationDate: string;
    /** Contact display name */
    displayName: string;
    /** Contact email */
    externalEmailAddress: string;
    /** Contact first name */
    firstName?: string;
    /** Hide the contact in Global Address List */
    hiddenFromGAL: boolean;
    /** Contact id */
    id: number;
    /** Contact initals */
    initials?: string;
    /** Contact last name */
    lastName?: string;
    /** Contact state */
    state: ObjectStateEnum;
    /** Task pending id */
    taskPendingId: number;
}
//# sourceMappingURL=ExternalContactNative.d.ts.map