InAppMessageCloseAction.InAppMessageDismissReason
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Package: com.salesforce.marketingcloud.inappmessagingfeature
Module: In App Messaging Feature Module v1.0.0
An enumeration representing the reason an In-App Message was dismissed.
1enum InAppMessageDismissReason : Enum<InAppMessageCloseAction.InAppMessageDismissReason>1AUTOThe message was automatically dismissed, such as after a timeout period.
1BUTTONThe user dismissed the message by tapping a button within the message.
1CLOSEDThe user explicitly closed the message using a close control.
1UNKNOWNThe dismiss reason could not be determined.
1val entries: EnumEntries<InAppMessageCloseAction.InAppMessageDismissReason>An immutable list representation of all enum entries in declaration order.
1val value: IntInteger value used for analytics tracking or serialization purposes.
1fun valueOf(value: String): InAppMessageCloseAction.InAppMessageDismissReasonReturns the enum constant matching the specified name string. The string must exactly match an enum constant identifier (no extra whitespace allowed).
Parameters:
value - The name of the enum constant to retrieveReturns: The matching enum constant
1fun values(): Array<InAppMessageCloseAction.InAppMessageDismissReason>Returns an array of all enum constants in declaration order.
Returns: Array containing all enum constants