CustomEventRequirementConfig
Type Alias: CustomEventRequirementConfig
type CustomEventRequirementConfig = {
config: {
eventName: string;
fields: (
| {
fieldName: string;
validation: {
type: "string";
validation: "exactMatch" | "regEx";
value: string;
};
}
| {
fieldName: string;
validation: {
max: number;
min: number;
type: "number";
};
}
| {
fieldName: string;
validation: {
exact: boolean;
type: "boolean";
};
})[];
};
oracle: "CUSTOM_EVENT_PROVIDER";
type: "CUSTOM";
};Properties
config
Name
Type
oracle
type
Last updated