1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/createActionSchema.ts
2024-04-26 13:31:15 +02:00

22 lines
556 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { CreateActionSchemaExecutionParams } from './createActionSchemaExecutionParams';
/**
* Represents a single action
*/
export interface CreateActionSchema {
/** The name of the action to execute */
action: string;
/** A map of parameters to pass to the action */
executionParams?: CreateActionSchemaExecutionParams;
/**
* The order in which the action should be executed
* @minimum 1
*/
sortOrder: number;
}