cecon-interfaces
Version:
Interfaces de Projetos Cecon
23 lines (22 loc) • 686 B
TypeScript
import { IAddress, IDeliveryArea } from '../interfaces';
import { CoordsEntity } from './coords.entity';
export declare class AddressEntity implements IAddress {
city: string;
complement: string | null;
coords: CoordsEntity;
country: string;
deliveryArea: IDeliveryArea | null;
formattedAddress: string | null;
id: string | null;
isDefault: boolean;
name: string | null;
neighborhood: string;
postalCode: string;
reference: string | null;
state: string;
streetName: string;
streetNumber: string;
mobyoDeliveryFee: number | null;
mobyoDeliveryFeeOnline: number | null;
constructor(data?: Partial<AddressEntity>);
}