1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/openapi/models/publicSignupTokenCreateSchema.ts
2023-12-04 21:49:49 +02:00

16 lines
383 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Used for creating a [public invite link](https://docs.getunleash.io/reference/public-signup#public-sign-up-tokens)
*/
export interface PublicSignupTokenCreateSchema {
/** The token's expiration date. */
expiresAt: string;
/** The token's name. */
name: string;
}