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

16 lines
370 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Describes a legal value. Typically used to limit possible values for contextFields or strategy properties
*/
export interface LegalValueSchema {
/** Describes this specific legal value */
description?: string;
/** The valid value */
value: string;
}