mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
19 lines (18 loc) • 658 B
TypeScript
import { CustomerEntity } from '../../../customer';
import { IAddress } from '../../../general';
import { ICustomerMobyo } from '../interfaces/i-customer-mobyo';
import { IPrivacySetting } from '../interfaces/i-customer-privacy';
export declare class CustomerMobyoEntity extends CustomerEntity implements ICustomerMobyo {
active: boolean;
addresses: IAddress[];
companyId: string;
containerId: string;
engines: string[];
isTest: boolean;
ordersCountOnRestaurant: number;
uid: string;
version: string;
birthday: Date | null;
privacySettings: IPrivacySetting;
constructor(data?: Partial<CustomerMobyoEntity>);
}