mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
19 lines
534 B
TypeScript
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;
|
|
};
|