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