import { ObjectStateEnum } from './ObjectStateEnum';
/** External contact for this exchange service */
export interface ExchangeExternalContact {
    /** 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;
    /** If specified, indicates to which organization this external contact belongs (Exchange 2010 only) */
    organization2010?: string;
    /** Contact state */
    state: ObjectStateEnum;
    /** Task pending id */
    taskPendingId: number;
}
//# sourceMappingURL=ExchangeExternalContact.d.ts.map