mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
19 lines
391 B
TypeScript
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;
|
|
}
|