import { IAddress } from '@tomei/general';
import { CustomerTypeEnum } from '../enum/customer-type.enum';
import { CustomerStatusEnum } from '../enum/customer-status.enum';
export interface IBaseSyncPayload {
    CustomerId: string;
    UserId?: string;
    Type: CustomerTypeEnum;
    Email: string;
    ContactNo: string;
    Status?: CustomerStatusEnum;
    SourceSystem: string;
    Address?: IAddress[];
}
