Contains constants and functions for a Request Places Event.
The structure for a Request Places Event is as follows:
{
payload: {
ACPExtensionEventData: {
count: <number>,
latitude: <number>,
longitude: <number>,
requesttype: 'requestgetnearbyplaces'
},
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>,
}
- Source:
Members
(static, constant) EVENT_SOURCE
The value for eventSource
for a Request Places Event.
Path is payload,ACPExtensionEventSource
.
- Source:
(static, constant) EVENT_TYPE
The value for eventType
for a Request Places Event.
Path is payload,ACPExtensionEventType
.
- Source:
(static, constant) group
A grouping for this object
- Source:
(static, constant) label
A label that can be used when describing this object
- Source:
(static, constant) matcher
Matcher can be used to find matching Request Places Event 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
- Source:
(static, constant) path :string
Paths for the keys on a Request Places Event
Properties:
Name | Type | Description |
---|---|---|
payload |
string |
An object with custom data describing the event. |
data |
string |
An object with the custom data describing the event. |
count |
string |
The number of POIs to return. |
latitude |
string |
The latitude to search from. |
longitude |
string |
The longitude to search from. |
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. |
- Source:
(static, constant) REQUEST_TYPE
The value for requestType
for a Request Places Event.
Path is payload,ACPExtensionEventData,requesttype
.
- Source:
(static, constant) ROOT_TYPE
The value for rootType
for a Request Places Event.
Path is type
.
- Source:
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 |
- Source:
(static) getCount(source) → {number}
Returns the count
from the Request Places Event.
This is the the number of POIs to return.
Path is payload,ACPExtensionEventData,count
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
(static) getData(source) → {object}
Returns the data
from the Request Places Event.
This is the .
Path is payload,ACPExtensionEventData
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
(static) getDataKey(…path, source) → {*}
Returns the data using the specified path from the data of the Request Places Event.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
path |
string |
<repeatable> |
key in object |
source |
object |
The Request Places Event instance |
- Source:
(static) getLatitude(source) → {number}
Returns the latitude
from the Request Places Event.
This is the the latitude to search from.
Path is payload,ACPExtensionEventData,latitude
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
(static) getLongitude(source) → {number}
Returns the longitude
from the Request Places Event.
This is the the longitude to search from.
Path is payload,ACPExtensionEventData,longitude
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
(static) getRequestType(source) → {string}
Returns the requestType
from the Request Places Event.
This is the the type of request we are making.
Path is payload,ACPExtensionEventData,requesttype
.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
(static) isMatch(source) → {boolean}
Tests the provided source against the matcher to see if it's Request Places Event event.
Parameters:
Name | Type | Description |
---|---|---|
source |
object |
The Request Places Event instance |
- Source:
- See:
-
- kit.isMatch
(static) make(…input) → {object}
Generates a Request Places Event 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 |
- Source:
(static) mock(…input) → {object}
Generates a Request Places Event 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 |
- Source: