Logic Op - Wait
Overview
The Wait operation introduces a timer for a defined period of seconds.
The wait operation triggers a timer for a defined period of seconds which upon completion will continue the operations sequence.
- Direction: INTERNAL
 - From: N/A
 - To: N/A
 
Attributes
The operation attributes are as follows.
| Attribute | Type | Description | 
|---|---|---|
            type
         | 
        String | 
            wait
         | 
    
            arguments
         | 
        Object | [Required] The structure of the WaitArg we expect to receive. | 
            seconds
         | 
        String | [Required] The time in seconds that the operation will wait for before continuing. | 
Example
This is an example entry within the operations array:
{
    "type": "wait", 
    "arguments": {
        "seconds": 60
    }
}