UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

46 lines (45 loc) 1.58 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. */ import type { LogResponse } from './LogResponse'; /** * ResponseClass«LogResponse»,The class for the common response * @export * @interface ResponseClassLogResponse */ export interface ResponseClassLogResponse { /** * ResponseCode * @type {string} * @memberof ResponseClassLogResponse */ code?: string; /** * * @type {LogResponse} * @memberof ResponseClassLogResponse */ data?: LogResponse; /** * ResponseMessage * @type {string} * @memberof ResponseClassLogResponse */ message?: string; } /** * Check if a given object implements the ResponseClassLogResponse interface. */ export declare function instanceOfResponseClassLogResponse(value: object): value is ResponseClassLogResponse; export declare function ResponseClassLogResponseFromJSON(json: any): ResponseClassLogResponse; export declare function ResponseClassLogResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseClassLogResponse; export declare function ResponseClassLogResponseToJSON(json: any): ResponseClassLogResponse; export declare function ResponseClassLogResponseToJSONTyped(value?: ResponseClassLogResponse | null, ignoreDiscriminator?: boolean): any;