Skip to content

Commit 77a3db1

Browse files
committed
use dictionary data type on RN side
1 parent 988f640 commit 77a3db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ts/IterableInAppMessage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class IterableInAppMessage {
5252
/**
5353
* Custom Payload for this message.
5454
*/
55-
readonly customPayload?: [any: any]
55+
readonly customPayload?: {any: any}
5656

5757
/**
5858
* Whether this inbox message has been read
@@ -71,7 +71,7 @@ class IterableInAppMessage {
7171
expiresAt: Date | undefined,
7272
saveToInbox: boolean,
7373
inboxMetadata: IterableInboxMetadata | undefined,
74-
customPayload: [any: any] | undefined,
74+
customPayload: {any: any} | undefined,
7575
read: boolean,
7676
priorityLevel: number) {
7777
this.campaignId = campaignId

0 commit comments

Comments
 (0)