mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
26 lines
858 B
TypeScript
26 lines
858 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. */
|
||
|
areasForImprovement: string;
|
||
|
/** 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. */
|
||
|
difficultyScore: number;
|
||
|
/** The unique identifier of the feedback. */
|
||
|
id: number;
|
||
|
/** This field is for users to mention what they liked. */
|
||
|
positive: string;
|
||
|
/** The type of user providing the feedback. */
|
||
|
userType: string;
|
||
|
}
|