mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* User who created the feature flag
|
|
*/
|
|
export type FeatureSearchResponseSchemaCreatedBy = {
|
|
/** The user id */
|
|
id: number;
|
|
/** URL used for the user profile image */
|
|
imageUrl: string;
|
|
/** Name of the user */
|
|
name: string;
|
|
};
|