Contains constants and functions for a Start Event Forwarding Command.
The structure for a Start Event Forwarding Command is as follows:
{
  payload: {
    type: 'startEventForwarding'
  },
  vendor: 'com.adobe.griffon.mobile'
  clientId: <string>,
  timestamp: <number>,
  type: 'control'
}
            Members
(static, constant) group
A grouping for this object
(static, constant) label
A label that can be used when describing this object
(static, constant) matcher
Matcher can be used to find matching Start Event Forwarding Command objects.
- Source:
 - See:
 - 
      
- kit.match
 
 
(static, constant) parentDepth
Describes the number of parents this object has based off schema references. When checking for matches for example, we want to use a schema that is more specific over a more generic schema
(static, constant) path :string
Paths for the keys on a Start Event Forwarding Command
Properties:
| Name | Type | Description | 
|---|---|---|
payload | 
      
      string | 
           An object with custom data describing the event.  | 
    
type | 
      
      string | 
           The type of command.  | 
    
vendor | 
      
      string | 
           The vendor of the plugin to receive the command.  | 
    
clientId | 
      
      string | 
           A unique id that differentiates clients from one another.  | 
    
timestamp | 
      
      string | 
           When the command was triggered.  | 
    
rootType | 
      
      string | 
           The type of event. For commands it's always 'control'..  | 
    
(static, constant) ROOT_TYPE
The value for rootType for a Start Event Forwarding Command.
Path is type.
(static, constant) TYPE
The value for type for a Start Event Forwarding Command.
Path is payload,type.
(static, constant) VENDOR
The value for vendor for a Start Event Forwarding Command.
Path is vendor.
Methods
(static) get(alias, data) → {*}
Retrieves a value from the object. You can provide either a path or an alias.
Parameters:
| Name | Type | Description | 
|---|---|---|
alias | 
        
        string | 
           Path or alias  | 
      
data | 
        
        * | 
           Data to search  | 
      
(static) getType(source) → {string}
Returns the type from the Start Event Forwarding Command.
This is the the type of command.
Path is payload,type.
Parameters:
| Name | Type | Description | 
|---|---|---|
source | 
        
        object | 
           The Start Event Forwarding Command instance  | 
      
(static) isMatch(source) → {boolean}
Tests the provided source against the matcher to see if it's Start Event Forwarding Command event.
Parameters:
| Name | Type | Description | 
|---|---|---|
source | 
        
        object | 
           The Start Event Forwarding Command instance  | 
      
- Source:
 - See:
 - 
      
- kit.isMatch
 
 
(static) make(…input) → {object}
Generates a Start Event Forwarding Command with the const values set. Can be useful in testing. Can provide additional data by providing a flat object of paths and values.
Parameters:
| Name | Type | Attributes | Description | 
|---|---|---|---|
input | 
        
        function | 
            
            
            
              <repeatable> | 
        
        
        
           Overrides  | 
      
(static) mock(…input) → {object}
Generates a Start Event Forwarding Command with some default values set. Can be useful in testing. Can override defaults and provide additional data by providing a flat object of paths and values.
Parameters:
| Name | Type | Attributes | Description | 
|---|---|---|---|
input | 
        
        function | 
            
            
            
              <repeatable> | 
        
        
        
           Overrides  |