/** * 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 { LicenseDto } from './'; /** * * @export * @interface LicenseDtoList */ export interface LicenseDtoList { /** * * @type {number} * @memberof LicenseDtoList */ count?: number; /** * * @type {Array} * @memberof LicenseDtoList */ items?: Array; } export declare function LicenseDtoListFromJSON(json: any): LicenseDtoList; export declare function LicenseDtoListFromJSONTyped(json: any, ignoreDiscriminator: boolean): LicenseDtoList; export declare function LicenseDtoListToJSON(value?: LicenseDtoList | null): any;