mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Used by Unleash for updating a token's expiration date or, when deleting the invite link, it's status
|
|
*/
|
|
export interface PublicSignupTokenUpdateSchema {
|
|
/** Whether the token is active or not. */
|
|
enabled?: boolean;
|
|
/** The token's expiration date. */
|
|
expiresAt?: string;
|
|
}
|