/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ModificationResultDto } from './'; /** * * @export * @interface ModificationResultDtoList */ export interface ModificationResultDtoList { /** * * @type {number} * @memberof ModificationResultDtoList */ count?: number; /** * * @type {Array} * @memberof ModificationResultDtoList */ items?: Array; } export declare function ModificationResultDtoListFromJSON(json: any): ModificationResultDtoList; export declare function ModificationResultDtoListFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModificationResultDtoList; export declare function ModificationResultDtoListToJSON(value?: ModificationResultDtoList | null): any;