1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/licensedUserSchema.ts
2024-11-22 13:19:29 +02:00

19 lines
391 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* A schema representing a single licensed user data point.
*/
export interface LicensedUserSchema {
/**
* The count of licensed users on the given date.
* @minimum 0
*/
count: number;
/** The date associated with the licensed users count. */
date: string;
}