1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-22 01:16:07 +02:00
unleash.unleash/frontend/src/openapi/models/actionDefinitionSchema.ts
2024-03-20 09:20:54 +01:00

23 lines
671 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { ActionDefinitionParameterSchema } from './actionDefinitionParameterSchema';
/**
* Configuration of a single action and its parameters.
*/
export interface ActionDefinitionSchema {
/** The category of the action. */
category: string;
/** A description for the action. */
description: string;
/** The label of the action. */
label: string;
/** The parameters required to perform the action. */
parameters: ActionDefinitionParameterSchema[];
/** The permissions required to perform the action. */
permissions: string[];
}