mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
21 lines
654 B
TypeScript
21 lines
654 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ChangeRequestCommentSchemaCreatedBy } from './changeRequestCommentSchemaCreatedBy';
|
|
|
|
/**
|
|
* A comment belonging to a [change request](https://docs.getunleash.io/reference/change-requests).
|
|
*/
|
|
export interface ChangeRequestCommentSchema {
|
|
/** When the comment was made. */
|
|
createdAt: string;
|
|
/** Information about the user who posted the comment */
|
|
createdBy: ChangeRequestCommentSchemaCreatedBy;
|
|
/** The comment's ID. Unique per change request. */
|
|
id?: number;
|
|
/** The content of the comment. */
|
|
text: string;
|
|
}
|