mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
16 lines
472 B
TypeScript
16 lines
472 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Describes the properties required to create a [personal access token](https://docs.getunleash.io/how-to/how-to-create-personal-access-tokens), or PAT. PATs are automatically scoped to the authenticated user.
|
|
*/
|
|
export interface CreatePatSchema {
|
|
/** The PAT's description. */
|
|
description: string;
|
|
/** The PAT's expiration date. */
|
|
expiresAt: string;
|
|
}
|