@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
45 lines (44 loc) • 1.34 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.
*/
/**
* ResponseClass,The class for the common response
* @export
* @interface ResponseClass
*/
export interface ResponseClass {
/**
* ResponseCode
* @type {string}
* @memberof ResponseClass
*/
code?: string;
/**
* ResponseData
* @type {object}
* @memberof ResponseClass
*/
data?: object;
/**
* ResponseMessage
* @type {string}
* @memberof ResponseClass
*/
message?: string;
}
/**
* Check if a given object implements the ResponseClass interface.
*/
export declare function instanceOfResponseClass(value: object): value is ResponseClass;
export declare function ResponseClassFromJSON(json: any): ResponseClass;
export declare function ResponseClassFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClass;
export declare function ResponseClassToJSON(json: any): ResponseClass;
export declare function ResponseClassToJSONTyped(value?: ResponseClass | null, ignoreDiscriminator?: boolean): any;