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/createApiTokenSchemaOneOfTwo.ts

21 lines
512 B
TypeScript
Raw Normal View History

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type CreateApiTokenSchemaOneOfTwo = {
/** The time when this token should expire. */
expiresAt?: string;
/**
* An admin token. Must be the string "admin" (not case sensitive).
* @pattern ^[Aa][Dd][Mm][Ii][Nn]$
*/
type: string;
/**
* The name of the token. This property was deprecated in v5. Use `tokenName` instead.
* @deprecated
*/
username: string;
};