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 {
/** Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement. */
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 ;
/** A score indicating the difficulty experienced by the user. */
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 ;
/** This field is for users to mention what they liked. */
2024-01-11 13:48:44 +01:00
positive : string | null ;
2023-12-22 11:10:50 +01:00
/** The type of user providing the feedback. */
2024-01-11 13:48:44 +01:00
userType : string | null ;
2023-12-22 11:10:50 +01:00
}