mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
16 lines
383 B
TypeScript
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;
|
|
}
|