@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
46 lines (45 loc) • 1.81 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 { DatasetListRespVo } from './DatasetListRespVo';
/**
* ResponseClass«List«DatasetListRespVO»»,The class for the common response
* @export
* @interface ResponseClassListDatasetListRespVo
*/
export interface ResponseClassListDatasetListRespVo {
/**
* ResponseCode
* @type {string}
* @memberof ResponseClassListDatasetListRespVo
*/
code?: string;
/**
* ResponseData
* @type {Array<DatasetListRespVo>}
* @memberof ResponseClassListDatasetListRespVo
*/
data?: Array<DatasetListRespVo>;
/**
* ResponseMessage
* @type {string}
* @memberof ResponseClassListDatasetListRespVo
*/
message?: string;
}
/**
* Check if a given object implements the ResponseClassListDatasetListRespVo interface.
*/
export declare function instanceOfResponseClassListDatasetListRespVo(value: object): value is ResponseClassListDatasetListRespVo;
export declare function ResponseClassListDatasetListRespVoFromJSON(json: any): ResponseClassListDatasetListRespVo;
export declare function ResponseClassListDatasetListRespVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClassListDatasetListRespVo;
export declare function ResponseClassListDatasetListRespVoToJSON(json: any): ResponseClassListDatasetListRespVo;
export declare function ResponseClassListDatasetListRespVoToJSONTyped(value?: ResponseClassListDatasetListRespVo | null, ignoreDiscriminator?: boolean): any;