@iterable/react-native-sdk
Version:
Iterable SDK for React Native.
19 lines (18 loc) • 801 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IterableInAppDeleteSource = void 0;
/**
* Ways in which an in-app message might have been deleted.
*/
let IterableInAppDeleteSource = exports.IterableInAppDeleteSource = /*#__PURE__*/function (IterableInAppDeleteSource) {
/** Deleted by swiping in the inbox. */
IterableInAppDeleteSource[IterableInAppDeleteSource["inboxSwipe"] = 0] = "inboxSwipe";
/** Deleted by clicking the delete button. */
IterableInAppDeleteSource[IterableInAppDeleteSource["deleteButton"] = 1] = "deleteButton";
/** Deleted in an unknown way. */
IterableInAppDeleteSource[IterableInAppDeleteSource["unknown"] = 100] = "unknown";
return IterableInAppDeleteSource;
}({});
//# sourceMappingURL=IterableInAppDeleteSource.js.map