UNPKG

@stadiamaps/api

Version:
60 lines 2.05 kB
/** * Stadia Maps Geospatial APIs * The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. * * The version of the OpenAPI document: 10.1.2 * Contact: support@stadiamaps.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Structured address components. * @export * @interface AddressComponentsV2 */ export interface AddressComponentsV2 { /** * The cross street address component (rarely used). * @type {string} * @memberof AddressComponentsV2 */ crossStreet?: string | null; /** * The house / building number. * * Note that, despite the name, this is not strictly numeric. * Values such as 30-1 and 11A may be valid building/house numbers in some areas. * @type {string} * @memberof AddressComponentsV2 */ number?: string | null; /** * The postal code. * @type {string} * @memberof AddressComponentsV2 */ postalCode?: string | null; /** * The street component of the address. * @type {string} * @memberof AddressComponentsV2 */ street?: string | null; /** * The unit number (where available). * @type {string} * @memberof AddressComponentsV2 */ unit?: string | null; } /** * Check if a given object implements the AddressComponentsV2 interface. */ export declare function instanceOfAddressComponentsV2(value: object): value is AddressComponentsV2; export declare function AddressComponentsV2FromJSON(json: any): AddressComponentsV2; export declare function AddressComponentsV2FromJSONTyped(json: any, ignoreDiscriminator: boolean): AddressComponentsV2; export declare function AddressComponentsV2ToJSON(json: any): AddressComponentsV2; export declare function AddressComponentsV2ToJSONTyped(value?: AddressComponentsV2 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AddressComponentsV2.d.ts.map