@stadiamaps/api
Version:
Stadia Maps Geospatial APIs
48 lines • 1.62 kB
TypeScript
/**
* 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.0.1
* 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.
*/
/**
*
* @export
* @interface GeocodingMeta
*/
export interface GeocodingMeta {
/**
*
* @type {string}
* @memberof GeocodingMeta
*/
attribution: string;
/**
* Errors encountered serving the request (if any).
* @type {string}
* @memberof GeocodingMeta
*/
error?: string | null;
/**
* An object containing all valid, parsed query parameters.
*
* For example, this will contain text and possibly other parameters for an autocomplete query.
* This will not be present for invalid requests.
* @type {object}
* @memberof GeocodingMeta
*/
query?: object | null;
}
/**
* Check if a given object implements the GeocodingMeta interface.
*/
export declare function instanceOfGeocodingMeta(value: object): value is GeocodingMeta;
export declare function GeocodingMetaFromJSON(json: any): GeocodingMeta;
export declare function GeocodingMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeocodingMeta;
export declare function GeocodingMetaToJSON(json: any): GeocodingMeta;
export declare function GeocodingMetaToJSONTyped(value?: GeocodingMeta | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GeocodingMeta.d.ts.map