cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
18 lines (17 loc) • 509 B
TypeScript
import { IIFoodOrderDeliveryAddressCoordinates } from "./i-ifood-order-delivery-address-coordinates";
export interface IIFoodOrderDeliveryAddress {
reference?: string;
/**
* ISO 3166 country code (e.g. BR, CO, etc.)
*/
country: string;
streetName: string;
formattedAddress: string;
streetNumber: string;
city: string;
postalCode: string;
coordinates: IIFoodOrderDeliveryAddressCoordinates;
neighborhood?: string;
state: string;
complement?: string;
}