import "../ApiClient-fBZ10h6n.mjs"; import { t as ConcurrencyBehavior } from "../ConcurrencyBehavior-DPce0aVe.mjs"; //#region src/model/Concurrency.d.ts type IConcurrency = { limit: number; behavior: ConcurrencyBehavior; }; /** * @typedef {Object} IConcurrency * @property {Number} limit * @property {ConcurrencyBehavior} behavior */ /** * The Concurrency model module. * @module model/Concurrency * @type {IConcurrency} */ declare class Concurrency { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, limit: any, behavior: any): void; /** * Constructs a Concurrency from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Concurrency} obj Optional instance to populate. * @return {module:model/Concurrency} The populated Concurrency instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Concurrency. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Concurrency. */ static validateJSON(data: any): boolean; /** * Constructs a new Concurrency. * @alias module:model/Concurrency * @param {Number} limit - * @param {module:model/ConcurrencyBehavior} behavior - */ constructor(limit: number, behavior: any); limit: number; behavior: ConcurrencyBehavior; } declare namespace Concurrency { let RequiredProperties: string[]; } //#endregion export { IConcurrency, Concurrency as default };