react-native-moengage
Version:
MoEngage is a mobile marketing automation company. This react-native SDK helps you track events, trigger smart notifications and in-apps, provides a drop-in Inbox Controller for notifications.
14 lines (12 loc) • 445 B
text/typescript
import { MoEngagePermissionType } from "./MoEngagePermissionType";
import {MoEPlatform} from "./MoEPlatform";
export default class MoEngagePersimissionResultData {
platform: MoEPlatform;
isGranted: boolean;
type: MoEngagePermissionType;
constructor(platform: MoEPlatform, isGranted: boolean, type: MoEngagePermissionType) {
this.platform = platform;
this.isGranted = isGranted;
this.type = type;
}
}