setPushIdentifier

setPushIdentifier

Contains constants and functions for a Set Push Identifier.

The structure for a Set Push Identifier is as follows:

{
  payload: {
    ACPExtensionEventData: {
      pushidentifier: <string>,
    },
    ACPExtensionEventSource: 'com.adobe.eventsource.requestcontent'
    ACPExtensionEventType: 'com.adobe.eventtype.generic.identity'
    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 Set Push Identifier.

Path is payload,ACPExtensionEventSource.

Source:

(static, constant) EVENT_TYPE

The value for eventType for a Set Push Identifier.

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 Set Push Identifier 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 Set Push Identifier

Properties:
Name Type Description
payload string

An object with custom data describing the event.
Path is payload.

eventData string

An object with the custom data describing the event.
Path is payload.ACPExtensionEventData.

pushIdentifier string

The token used to send push messages.
Path is payload.ACPExtensionEventData.pushidentifier.

eventSource string

The event source.
Path is payload.ACPExtensionEventSource.

eventType string

The event type.
Path is payload.ACPExtensionEventType.

eventName string

The name of the event.
Path is payload.ACPExtensionEventName.

sdkEventNumber string

The event number generated by the SDK.
Path is payload.ACPExtensionEventNumber.

eventId string

The unique event id.
Path is payload.ACPExtensionEventUniqueIdentifier.

rootType string

The type of event.
Path is type.

vendor string

The vendor of the plugin that sent the event.
Path is vendor.

annotations string

Array of Annotation objects.
Path is annotations.

clientId string

A unique id that differentiates clients from one another.
Path is clientId.

timestamp string

When the event occurred.
Path is timestamp.

rootId string

Uniquely identifies each event.
Path is uuid.

Source:

(static, constant) ROOT_TYPE

The value for rootType for a Set Push Identifier.

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) getPushIdentifier(source) → {string}

Returns the pushIdentifier from the Set Push Identifier. This is the the token used to send push messages.

Path is payload,ACPExtensionEventData,pushidentifier.

Parameters:
Name Type Description
source object

The Set Push Identifier instance

Source:

(static) isMatch(source) → {boolean}

Tests the provided source against the matcher to see if it's Set Push Identifier event.

Parameters:
Name Type Description
source object

The Set Push Identifier instance

Source:
See:
  • kit.isMatch

(static) make(…input) → {object}

Generates a Set Push Identifier 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 Set Push Identifier 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: