@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 718 B
TypeScript
/** Address with GPS coordinates */
export interface AddressWithCoordinates {
/** City name */
city: string;
/** Distance from original source, if applicable */
distance?: string;
/** INSEE code */
inseeCode: string;
/** Latitude */
latitude: string;
/** Longitude */
longitude: string;
/** Street code, an unique identifier of the street */
streetCode?: string;
/** Street name */
streetName?: string;
/** Street number, usually a number and an indication if applicable (B for bis, T for ter, etc...) and hidden for unlisted number */
streetNumber?: string;
/** ZIP code */
zipCode: string;
}
//# sourceMappingURL=AddressWithCoordinates.d.ts.map