Contains constants and functions for a Location Auth Status.
The structure for a Location Auth Status is as follows:
{
  payload: {
    ACPExtensionEventData: {
      authstatus: <string>,
      requesttype: 'requestsetauthorizationstatus'
    },
    ACPExtensionEventSource: 'com.adobe.eventsource.requestcontent'
    ACPExtensionEventType: 'com.adobe.eventtype.places'
    ACPExtensionEventName: <string>,
    ACPExtensionEventNumber: <integer>,
    ACPExtensionEventUniqueIdentifier: <string>,
  },
  type: 'generic'
  vendor: <string>,
  annotations: <array>,
  clientId: <string>,
  timestamp: <number>,
  uuid: <string>,
}
            Members
(static, constant) EVENT_SOURCE
The value for eventSource for a Location Auth Status.
Path is payload,ACPExtensionEventSource.
(static, constant) EVENT_TYPE
The value for eventType for a Location Auth Status.
Path is payload,ACPExtensionEventType.
(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 Location Auth Status 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 Location Auth Status
Properties:
| Name | Type | Description | 
|---|---|---|
payload | 
      
      string | 
           An object with custom data describing the event.  | 
    
eventData | 
      
      string | 
           An object with the custom data describing the event.  | 
    
status | 
      
      string | 
           The response from the allow location popup in the app.  | 
    
requestType | 
      
      string | 
           The type of request we are making.  | 
    
eventSource | 
      
      string | 
           The event source.  | 
    
eventType | 
      
      string | 
           The event type.  | 
    
eventName | 
      
      string | 
           The name of the event.  | 
    
sdkEventNumber | 
      
      string | 
           The event number generated by the SDK.  | 
    
eventId | 
      
      string | 
           The unique event id.  | 
    
rootType | 
      
      string | 
           The type of event.  | 
    
vendor | 
      
      string | 
           The vendor of the plugin that sent the event.  | 
    
annotations | 
      
      string | 
           Array of Annotation objects.  | 
    
clientId | 
      
      string | 
           A unique id that differentiates clients from one another.  | 
    
timestamp | 
      
      string | 
           When the event occurred.  | 
    
rootId | 
      
      string | 
           Uniquely identifies each event.  | 
    
(static, constant) REQUEST_TYPE
The value for requestType for a Location Auth Status.
Path is payload,ACPExtensionEventData,requesttype.
(static, constant) ROOT_TYPE
The value for rootType for a Location Auth Status.
Path is type.
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) getRequestType(source) → {string}
Returns the requestType from the Location Auth Status.
This is the the type of request we are making.
Path is payload,ACPExtensionEventData,requesttype.
Parameters:
| Name | Type | Description | 
|---|---|---|
source | 
        
        object | 
           The Location Auth Status instance  | 
      
(static) getStatus(source) → {string}
Returns the status from the Location Auth Status.
This is the the response from the allow location popup in the app.
Path is payload,ACPExtensionEventData,authstatus.
Parameters:
| Name | Type | Description | 
|---|---|---|
source | 
        
        object | 
           The Location Auth Status instance  | 
      
(static) isMatch(source) → {boolean}
Tests the provided source against the matcher to see if it's Location Auth Status event.
Parameters:
| Name | Type | Description | 
|---|---|---|
source | 
        
        object | 
           The Location Auth Status instance  | 
      
- Source:
 - See:
 - 
      
- kit.isMatch
 
 
(static) make(…input) → {object}
Generates a Location Auth Status 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 Location Auth Status 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  |