(
workflowTrigger: Partial<WorkflowTrigger>,
integrationTrigger: IntegrationTrigger,
accountCredential: AccountCredential | null,
)
| 24 | abstract run(opts: OperationRunOptions): Promise<RunResponse | Observable<RunResponse> | null> | null |
| 25 | |
| 26 | beforeCreate( |
| 27 | workflowTrigger: Partial<WorkflowTrigger>, |
| 28 | integrationTrigger: IntegrationTrigger, |
| 29 | accountCredential: AccountCredential | null, |
| 30 | ): Promise<Partial<WorkflowTrigger>> | null { |
| 31 | return null |
| 32 | } |
| 33 | |
| 34 | beforeUpdate( |
| 35 | update: Partial<WorkflowTrigger>, |
nothing calls this directly
no outgoing calls
no test coverage detected