Type alias WorkflowStepTaskAction
 
Workflow
Step
Task
Action
: {     configuration
: {         assignee
: Link<"User"> | Link<"Team">;         body
: string;         dueDate
?: number;     };     type
: "task"; } 
Type declaration
- 
configuration: { 
    assignee: Link<"User"> | Link<"Team">; 
    body: string; 
    dueDate?: number; 
}
- 
assignee: Link<"User"> | Link<"Team">
 
- 
body: string
 
- 
Optional dueDate?: number
 
 
- 
type: "task"