@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
46 lines (45 loc) • 1.69 kB
TypeScript
/**
* 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.
*/
import type { CoordinateRespVo } from './CoordinateRespVo';
/**
* ResponseClass«CoordinateRespVO»,The class for the common response
* @export
* @interface ResponseClassCoordinateRespVo
*/
export interface ResponseClassCoordinateRespVo {
/**
* ResponseCode
* @type {string}
* @memberof ResponseClassCoordinateRespVo
*/
code?: string;
/**
*
* @type {CoordinateRespVo}
* @memberof ResponseClassCoordinateRespVo
*/
data?: CoordinateRespVo;
/**
* ResponseMessage
* @type {string}
* @memberof ResponseClassCoordinateRespVo
*/
message?: string;
}
/**
* Check if a given object implements the ResponseClassCoordinateRespVo interface.
*/
export declare function instanceOfResponseClassCoordinateRespVo(value: object): value is ResponseClassCoordinateRespVo;
export declare function ResponseClassCoordinateRespVoFromJSON(json: any): ResponseClassCoordinateRespVo;
export declare function ResponseClassCoordinateRespVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClassCoordinateRespVo;
export declare function ResponseClassCoordinateRespVoToJSON(json: any): ResponseClassCoordinateRespVo;
export declare function ResponseClassCoordinateRespVoToJSONTyped(value?: ResponseClassCoordinateRespVo | null, ignoreDiscriminator?: boolean): any;