UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

40 lines (39 loc) 1.15 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. */ /** * Check if a given object implements the DeleteStorageDataRequest interface. */ export function instanceOfDeleteStorageDataRequest(value) { return true; } export function DeleteStorageDataRequestFromJSON(json) { return DeleteStorageDataRequestFromJSONTyped(json, false); } export function DeleteStorageDataRequestFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { ids: json.ids == null ? undefined : json.ids, }; } export function DeleteStorageDataRequestToJSON(json) { return DeleteStorageDataRequestToJSONTyped(json, false); } export function DeleteStorageDataRequestToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { ids: value.ids, }; }