NotificationScheduled

Triggers when a notification is scheduled to be sent.

Name
Type
Select
Backend name
Description

title

string

Required

title

Title of notification.

scheduleTimeUtc

DateTime

Required

timestamp

Time notification was scheduled.

message

string

Required

message

What message was included in the notification.

notificationID

string

Required

notification_id

Identifier for notification.

additionalData

Dictionary<string, object>

Optional

additional_data

Any additional information

Code examples:

DateTime scheduleTime = new DateTime(year: YY, month: MM, day: DD, hour: HH, minute: MM, second: SS);
LionAnalytics.NotificationScheduled(
title: "life_refill",
scheduleTimeUtc: scheduleTime,
message: "Lives are Full, Open Game to continue Playing",
notificationID: 12345);

Last updated

Was this helpful?