mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
20 lines
713 B
TypeScript
20 lines
713 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ActionSetEventSchemaActionSetMatchPayload } from './actionSetEventSchemaActionSetMatchPayload';
|
|
import type { ActionSetEventSchemaActionSetMatchSource } from './actionSetEventSchemaActionSetMatchSource';
|
|
|
|
/**
|
|
* Defines a matching rule for the signal that will trigger the action set
|
|
*/
|
|
export type ActionSetEventSchemaActionSetMatch = {
|
|
/** Match the payload of the signal */
|
|
payload: ActionSetEventSchemaActionSetMatchPayload;
|
|
/** Match the source of the signal */
|
|
source: ActionSetEventSchemaActionSetMatchSource;
|
|
/** Match the source id of the signal */
|
|
sourceId: number;
|
|
};
|