@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
63 lines (62 loc) • 1.85 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.
*/
/**
* StorageCreateCliRequest
* @export
* @interface StorageCreateCliRequest
*/
export interface StorageCreateCliRequest {
/**
* dataName
* @type {string}
* @memberof StorageCreateCliRequest
*/
dataName?: string;
/**
* description
* @type {string}
* @memberof StorageCreateCliRequest
*/
description?: string;
/**
* fileSize
* @type {string}
* @memberof StorageCreateCliRequest
*/
fileSize?: string;
/**
* fileType
* @type {string}
* @memberof StorageCreateCliRequest
*/
fileType?: string;
/**
* fileUrl
* @type {string}
* @memberof StorageCreateCliRequest
*/
fileUrl?: string;
/**
* tagNameList
* @type {Array<string>}
* @memberof StorageCreateCliRequest
*/
tagNameList?: Array<string>;
}
/**
* Check if a given object implements the StorageCreateCliRequest interface.
*/
export declare function instanceOfStorageCreateCliRequest(value: object): value is StorageCreateCliRequest;
export declare function StorageCreateCliRequestFromJSON(json: any): StorageCreateCliRequest;
export declare function StorageCreateCliRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StorageCreateCliRequest;
export declare function StorageCreateCliRequestToJSON(json: any): StorageCreateCliRequest;
export declare function StorageCreateCliRequestToJSONTyped(value?: StorageCreateCliRequest | null, ignoreDiscriminator?: boolean): any;