/** * 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). */ type: string; /** * The name of the token. This property is deprecated. Use `tokenName` instead. * @deprecated */ username: string; };