UNPKG

@stadiamaps/api

Version:
53 lines 2.18 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.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 GeocodingObject */ export interface GeocodingObject { /** * A URL containing attribution information. If you are not using Stadia Maps and our standard attribution already for your basemaps, you must include this attribution link somewhere in your website/app. * @type {string} * @memberof GeocodingObject */ attribution?: string; /** * Technical details of the query. This is most useful for debugging during development. See the full example for the list of properties; these should be self-explanatory, so we don't enumerate them in the spec. * @type {{ [key: string]: any; }} * @memberof GeocodingObject */ query?: { [key: string]: any; }; /** * An array of non-critical warnings. This is normally for informational/debugging purposes and not a serious problem. * @type {Array<string>} * @memberof GeocodingObject */ warnings?: Array<string>; /** * An array of more serious errors (for example, omitting a required parameter). Don’t ignore these. * @type {Array<string>} * @memberof GeocodingObject */ errors?: Array<string>; } /** * Check if a given object implements the GeocodingObject interface. */ export declare function instanceOfGeocodingObject(value: object): value is GeocodingObject; export declare function GeocodingObjectFromJSON(json: any): GeocodingObject; export declare function GeocodingObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeocodingObject; export declare function GeocodingObjectToJSON(json: any): GeocodingObject; export declare function GeocodingObjectToJSONTyped(value?: GeocodingObject | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GeocodingObject.d.ts.map