mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
15 lines (14 loc) • 493 B
TypeScript
import { CoordsEntity } from '../../../general/entities/coords.entity';
import { INatipayAddress } from '../interfaces/i-address';
export declare class NatiapyAddressEntity implements INatipayAddress {
city: string;
complement: string | null;
coords: CoordsEntity;
country: string | null | undefined;
neighborhood: string;
postalCode: string;
state: string;
streetName: string;
streetNumber: string;
constructor(data?: Partial<NatiapyAddressEntity>);
}