1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/feedbackSchema.ts
2024-04-26 13:31:15 +02:00

38 lines
1002 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Schema representing feedback information.
*/
export interface FeedbackSchema {
/**
* Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.
* @nullable
*/
areasForImprovement: string | null;
/** The category of the feedback. */
category: string;
/** The date and time when the feedback was provided. */
createdAt: string;
/**
* A score indicating the difficulty experienced by the user.
* @nullable
*/
difficultyScore: number | null;
/** The unique identifier of the feedback. */
id: number;
/**
* This field is for users to mention what they liked.
* @nullable
*/
positive: string | null;
/**
* The type of user providing the feedback.
* @nullable
*/
userType: string | null;
}