1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/openapi/models/contextFieldStrategiesSchemaStrategiesItem.ts
2023-12-04 21:49:49 +02:00

19 lines
534 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type ContextFieldStrategiesSchemaStrategiesItem = {
/** The ID of the environment where this strategy is in. */
environment: string;
/** The name of the feature that contains this strategy. */
featureName: string;
/** The ID of the strategy. */
id: string;
/** The ID of the project that contains this feature. */
projectId: string;
/** The name of the strategy. */
strategyName: string;
};