//#region src/model/UserUsage.d.ts
type IUserUsage = {
count: number;
apiKeyCount: number;
oidcCount: number;
basicAuthCount: number;
};
/**
* @typedef {Object} IUserUsage
* @property {Number} count
* @property {Number} apiKeyCount
* @property {Number} oidcCount
* @property {Number} basicAuthCount
*/
/**
* The UserUsage model module.
* @module model/UserUsage
* @type {IUserUsage}
*/
declare class UserUsage {
/**
* 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, count: any, apiKeyCount: any, oidcCount: any, basicAuthCount: any): void;
/**
* Constructs a UserUsage 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/UserUsage} obj Optional instance to populate.
* @return {module:model/UserUsage} The populated UserUsage instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to UserUsage.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to UserUsage.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new UserUsage.
* @alias module:model/UserUsage
* @param {Number} count -
* @param {Number} apiKeyCount -
* @param {Number} oidcCount -
* @param {Number} basicAuthCount -
*/
constructor(count: number, apiKeyCount: number, oidcCount: number, basicAuthCount: number);
count: number;
apiKeyCount: number;
oidcCount: number;
basicAuthCount: number;
}
declare namespace UserUsage {
let RequiredProperties: string[];
}
//#endregion
export { IUserUsage, UserUsage as default };