mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
13 lines (12 loc) • 328 B
TypeScript
import { ICoords } from '../../../general/interfaces/i-coords';
export interface IPayioAddress {
city: string;
complement: string | null;
coords: ICoords;
country: string | null | undefined;
neighborhood: string;
postalCode: string;
state: string;
streetName: string;
streetNumber: string;
}