1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-22 01:16:07 +02:00
unleash.unleash/frontend/src/openapi/models/feedbackUpdateSchema.ts
2024-04-26 13:31:15 +02:00

21 lines
474 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* User feedback information to be updated.
*/
export interface FeedbackUpdateSchema {
/**
* When this feedback was given
* @nullable
*/
given?: string | null;
/** `true` if the user has asked never to see this feedback questionnaire again. */
neverShow?: boolean;
/** The ID of the user that gave the feedback. */
userId?: number;
}