1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-02 01:17:58 +02:00
unleash.unleash/frontend/src/openapi/models/featureSearchResponseSchemaCreatedBy.ts
2024-06-06 12:11:41 +02:00

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;
};