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/adminFeaturesQuerySchema.ts
2024-05-23 13:37:56 +03:00

16 lines
418 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Query parameters used to modify the list of features returned.
*/
export interface AdminFeaturesQuerySchema {
/** A case-insensitive prefix filter for the names of feature flags */
namePrefix?: string;
/** Used to filter by tags. For each entry, a TAGTYPE:TAGVALUE is expected */
tag?: string[];
}