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