/**
* Enum representing the source of IterableAction.
*/exportenumIterableActionSource {
/** The action source was a push message */
push = 0,
/** The action source was a link in the app */
appLink = 1,
/** The action source was an in-app message */
inApp = 2,
}