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