Stickers
Sticker Event
Schema
interface StickerEvent extends Omit<
AnalyticsEvent,
'eventType'
> {
eventType:
| 'lsc:sticker:click'
| 'lsc:sticker:impression'
| 'lsc:sticker:poll:vote'
| 'lsc:sticker:voucher:claim';
// Event-specific fields
/**
* The length of the activation timer, represented in seconds.
* If no activation timer is set for the sticker, the value is `0`.
*/
stickerActivationTimerDurationInSec: number;
/**
* The length of the expiry timer, represented in seconds.
* If no expiry timer is set for the sticker, the value is `0`.
*/
stickerExpiryTimerDurationInSec: number;
/**
* Universally unique sticker identifier, in UUID v4 format.
*/
stickerId: string;
/**
* The distinct sticker type.
*/
stickerType:
| 'alert'
| 'poll'
| 'product'
| 'voucher';
}
Alias Mapping Table
Alias (contextData key)
Meaning / Use Case
Suggested Adobe Target (placeholder)
Friendly Label Example
lsc:sticker:click
lsc:sticker:clickSchema
Alias Mapping Table
Alias (contextData key)
Meaning / Use Case
Suggested Adobe Target (placeholder)
Friendly Label Example
lsc:sticker:impression
lsc:sticker:impressionSchema
Alias Mapping Table
Alias (contextData key)
Meaning / Use Case
Suggested Adobe Target (placeholder)
Friendly Label Example
lsc:sticker:poll:vote
lsc:sticker:poll:voteSchema
lsc:sticker:voucher:claim
lsc:sticker:voucher:claimSchema
Alias Mapping Table
Alias (contextData key)
Meaning / Use Case
Suggested Adobe Target (placeholder)
Friendly Label Example
Last updated