mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
22 lines
418 B
TypeScript
22 lines
418 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Information about the user who posted the comment
|
|
*/
|
|
export type ChangeRequestCommentSchemaCreatedBy = {
|
|
/**
|
|
* The URL where the user's image can be found.
|
|
* @nullable
|
|
*/
|
|
imageUrl?: string | null;
|
|
/**
|
|
* The user's username.
|
|
* @nullable
|
|
*/
|
|
username?: string | null;
|
|
};
|