cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 588 B
TypeScript
import { ICoords } from './i-coords';
import { IDeliveryArea } from './i-delivery-area';
export interface IAddress {
city: string;
complement: string | null;
neighborhood: string;
country: string;
id: string | null;
formattedAddress: string | null;
postalCode: string;
state: string;
deliveryArea: IDeliveryArea | null;
streetName: string;
name: string | null;
reference: string | null;
isDefault: boolean;
streetNumber: string;
coords: ICoords;
mobyoDeliveryFee: number | null;
mobyoDeliveryFeeOnline: number | null;
}