35 lines
861 B
TypeScript
35 lines
861 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* FastAPI
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 0.1.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { exists, mapValues } from '../runtime';
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface LocationInner
|
|
*/
|
|
export interface LocationInner {
|
|
}
|
|
|
|
export function LocationInnerFromJSON(json: any): LocationInner {
|
|
return LocationInnerFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function LocationInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationInner {
|
|
return json;
|
|
}
|
|
|
|
export function LocationInnerToJSON(value?: LocationInner | null): any {
|
|
return value;
|
|
}
|
|
|