Workflows ReferenceType Definitions
RedemptionMethodWorkflowResultAction
type RedemptionMethodWorkflowResultAction =
| {
action: "none";
}
| {
action: "navigate";
url: string;
}
| {
action: "custom" | `custom:${string}`;
};Union Members
Type Literal
{
action: "none";
}Type Literal
{
action: "navigate";
url: string;
}action
action: "navigate";url
url: string;The URL to navigate the user to.
Type Literal
{
action: "custom" | `custom:${string}`;
}