import { TypeEnum } from './contact/TypeEnum';
/** Customer contact service relative information */
export interface Contact {
    /** Customer code */
    customerCode: string;
    /** Type of customer contact */
    type: TypeEnum;
}
//# sourceMappingURL=Contact.d.ts.map