/**
 * 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«List«CoordinateRespVO»»，The class for the common response
 * @export
 * @interface ResponseClassListCoordinateRespVo
 */
export interface ResponseClassListCoordinateRespVo {
    /**
     * ResponseCode
     * @type {string}
     * @memberof ResponseClassListCoordinateRespVo
     */
    code?: string;
    /**
     * ResponseData
     * @type {Array<CoordinateRespVo>}
     * @memberof ResponseClassListCoordinateRespVo
     */
    data?: Array<CoordinateRespVo>;
    /**
     * ResponseMessage
     * @type {string}
     * @memberof ResponseClassListCoordinateRespVo
     */
    message?: string;
}
/**
 * Check if a given object implements the ResponseClassListCoordinateRespVo interface.
 */
export declare function instanceOfResponseClassListCoordinateRespVo(value: object): value is ResponseClassListCoordinateRespVo;
export declare function ResponseClassListCoordinateRespVoFromJSON(json: any): ResponseClassListCoordinateRespVo;
export declare function ResponseClassListCoordinateRespVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClassListCoordinateRespVo;
export declare function ResponseClassListCoordinateRespVoToJSON(json: any): ResponseClassListCoordinateRespVo;
export declare function ResponseClassListCoordinateRespVoToJSONTyped(value?: ResponseClassListCoordinateRespVo | null, ignoreDiscriminator?: boolean): any;
