UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

69 lines (68 loc) 1.8 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. */ /** * DataListResponse * @export * @interface DataListResponse */ export interface DataListResponse { /** * createTime * @type {Date} * @memberof DataListResponse */ createTime?: Date; /** * dataName * @type {string} * @memberof DataListResponse */ dataName?: string; /** * description * @type {string} * @memberof DataListResponse */ description?: string; /** * fileSize * @type {string} * @memberof DataListResponse */ fileSize?: string; /** * id * @type {number} * @memberof DataListResponse */ id?: number; /** * tags * @type {Array<string>} * @memberof DataListResponse */ tags?: Array<string>; /** * updateTime * @type {Date} * @memberof DataListResponse */ updateTime?: Date; } /** * Check if a given object implements the DataListResponse interface. */ export declare function instanceOfDataListResponse(value: object): value is DataListResponse; export declare function DataListResponseFromJSON(json: any): DataListResponse; export declare function DataListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataListResponse; export declare function DataListResponseToJSON(json: any): DataListResponse; export declare function DataListResponseToJSONTyped(value?: DataListResponse | null, ignoreDiscriminator?: boolean): any;