@stadiamaps/api
Version:
Stadia Maps Geospatial APIs
51 lines • 1.68 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 Administrative
*/
export interface Administrative {
/**
* The ISO 3166-1 alpha-2 country code of the administrative region.
* @type {string}
* @memberof Administrative
*/
iso31661?: string;
/**
* The full country name.
* @type {string}
* @memberof Administrative
*/
country?: string;
/**
* The ISO 3166-2 code identifying the principal subdivision (ex: provinces or states) within a country.
* @type {string}
* @memberof Administrative
*/
iso31662?: string;
/**
* The full state or province name.
* @type {string}
* @memberof Administrative
*/
state?: string;
}
/**
* Check if a given object implements the Administrative interface.
*/
export declare function instanceOfAdministrative(value: object): value is Administrative;
export declare function AdministrativeFromJSON(json: any): Administrative;
export declare function AdministrativeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Administrative;
export declare function AdministrativeToJSON(json: any): Administrative;
export declare function AdministrativeToJSONTyped(value?: Administrative | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=Administrative.d.ts.map