mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
19 lines
398 B
TypeScript
19 lines
398 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type NotificationsSchemaItemCreatedBy = {
|
|
/**
|
|
* The avatar url of the user who triggered the notification
|
|
* @nullable
|
|
*/
|
|
imageUrl?: string | null;
|
|
/**
|
|
* The name of the user who triggered the notification
|
|
* @nullable
|
|
*/
|
|
username?: string | null;
|
|
};
|