1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-10 01:19:53 +01:00
unleash.unleash/frontend/src/openapi/models/publicSignupTokenCreateSchema.ts
2023-06-14 14:40:24 +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 name. */
name: string;
/** The token's expiration date. */
expiresAt: string;
}