mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
20 lines
477 B
TypeScript
20 lines
477 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { LicensedUserSchema } from './licensedUserSchema';
|
|
|
|
/**
|
|
* An object containing historical and current licensed user data.
|
|
*/
|
|
export type LicensedUsersSchemaLicensedUsers = {
|
|
/**
|
|
* The current number of licenses in use.
|
|
* @minimum 0
|
|
*/
|
|
current: number;
|
|
/** A monthly history of licensed user counts. */
|
|
history: LicensedUserSchema[];
|
|
};
|