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