@dntlab/swagger-dean
Version:
swagger api for DeArchNet project
21 lines (19 loc) • 479 B
text/typescript
/**
* DeArchNet rest API
* Specification of REST API for DeArchNet Project
*
* OpenAPI spec version: 0.1.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/import { Coords } from './coords';
export interface Location {
country: string;
state?: string;
city: string;
street_1?: string;
street_2?: string;
center: Coords;
}