@cotofe/service-of-system
Version:
OpenAPI client for @cotofe/service-of-system
33 lines (32 loc) • 1.26 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.
*/
/**
* delete storage data request
* @export
* @interface DeleteStorageDataRequest
*/
export interface DeleteStorageDataRequest {
/**
* ids
* @type {Array<string>}
* @memberof DeleteStorageDataRequest
*/
ids?: Array<string>;
}
/**
* Check if a given object implements the DeleteStorageDataRequest interface.
*/
export declare function instanceOfDeleteStorageDataRequest(value: object): value is DeleteStorageDataRequest;
export declare function DeleteStorageDataRequestFromJSON(json: any): DeleteStorageDataRequest;
export declare function DeleteStorageDataRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteStorageDataRequest;
export declare function DeleteStorageDataRequestToJSON(json: any): DeleteStorageDataRequest;
export declare function DeleteStorageDataRequestToJSONTyped(value?: DeleteStorageDataRequest | null, ignoreDiscriminator?: boolean): any;