UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

45 lines (44 loc) 1.33 kB
/** * Platform * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * CoordinateRespVO * @export * @interface CoordinateRespVo */ export interface CoordinateRespVo { /** * * @type {string} * @memberof CoordinateRespVo */ id?: string; /** * * @type {Array<string>} * @memberof CoordinateRespVo */ x?: Array<string>; /** * * @type {Array<string>} * @memberof CoordinateRespVo */ y?: Array<string>; } /** * Check if a given object implements the CoordinateRespVo interface. */ export declare function instanceOfCoordinateRespVo(value: object): value is CoordinateRespVo; export declare function CoordinateRespVoFromJSON(json: any): CoordinateRespVo; export declare function CoordinateRespVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoordinateRespVo; export declare function CoordinateRespVoToJSON(json: any): CoordinateRespVo; export declare function CoordinateRespVoToJSONTyped(value?: CoordinateRespVo | null, ignoreDiscriminator?: boolean): any;