@stadiamaps/api
Version:
Stadia Maps Geospatial APIs
51 lines • 1.6 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 AdminRegion
*/
export interface AdminRegion {
/**
* The [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code.
* @type {string}
* @memberof AdminRegion
*/
countryCode?: string;
/**
* The country name
* @type {string}
* @memberof AdminRegion
*/
countryText?: string;
/**
* The abbreviation code for the state (varies by country).
* @type {string}
* @memberof AdminRegion
*/
stateCode?: string;
/**
* The state name.
* @type {string}
* @memberof AdminRegion
*/
stateText?: string;
}
/**
* Check if a given object implements the AdminRegion interface.
*/
export declare function instanceOfAdminRegion(value: object): value is AdminRegion;
export declare function AdminRegionFromJSON(json: any): AdminRegion;
export declare function AdminRegionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminRegion;
export declare function AdminRegionToJSON(json: any): AdminRegion;
export declare function AdminRegionToJSONTyped(value?: AdminRegion | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AdminRegion.d.ts.map