1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/licensedUsersSchemaLicensedUsers.ts
2024-11-22 13:19:29 +02:00

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[];
};