UNPKG

react-native-moengage-inbox

Version:

Inbox Module for the MoEngage Platform

15 lines (13 loc) 453 B
import { MoEActionType } from "./MoEActionType"; export default class MoEAction { actionType: MoEActionType; navigationType: string; value: string; kvPair?: Map<String, Object> | undefined; constructor(actionType: MoEActionType, navigationType: string, value: string, kvPair: Map<String, Object> | undefined) { this.actionType = actionType this.navigationType = navigationType; this.value = value; this.kvPair = kvPair; } }