mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
18 lines (17 loc) • 548 B
TypeScript
import { AddressEntity, CoordsEntity } from '../../general';
import { OrderTotalEntity } from '../../order';
import { IVoucherCustomer } from '../interfaces';
export declare class VoucherCustomerEntity implements IVoucherCustomer {
customerId: string;
cords: CoordsEntity;
address: AddressEntity;
phoneNumber: string;
meta: string;
id: string;
itensCount: number;
total: OrderTotalEntity;
averageAmount: number;
createdAt: Date;
updatedAt: Date;
constructor(data?: Partial<VoucherCustomerEntity>);
}