UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

45 lines (44 loc) 1.47 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. */ /** * ResponseClass«boolean»,The class for the common response * @export * @interface ResponseClassBoolean */ export interface ResponseClassBoolean { /** * ResponseCode * @type {string} * @memberof ResponseClassBoolean */ code?: string; /** * ResponseData * @type {boolean} * @memberof ResponseClassBoolean */ data?: boolean; /** * ResponseMessage * @type {string} * @memberof ResponseClassBoolean */ message?: string; } /** * Check if a given object implements the ResponseClassBoolean interface. */ export declare function instanceOfResponseClassBoolean(value: object): value is ResponseClassBoolean; export declare function ResponseClassBooleanFromJSON(json: any): ResponseClassBoolean; export declare function ResponseClassBooleanFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClassBoolean; export declare function ResponseClassBooleanToJSON(json: any): ResponseClassBoolean; export declare function ResponseClassBooleanToJSONTyped(value?: ResponseClassBoolean | null, ignoreDiscriminator?: boolean): any;