ARTMessageAction
Objective-C
enum ARTMessageAction : NSUInteger {}
Swift
enum ARTMessageAction : UInt, @unchecked Sendable
The namespace containing the different types of message actions.
-
Message action has not been set.
Declaration
Objective-C
ARTMessageActionUnset
Swift
case unset = 0
-
Message action for a newly created message.
Declaration
Objective-C
ARTMessageActionCreate
Swift
case create = 1
-
Message action for an updated message.
Declaration
Objective-C
ARTMessageActionUpdate
Swift
case update = 2
-
Message action for a deleted message.
Declaration
Objective-C
ARTMessageActionDelete
Swift
case delete = 3
-
Message action for a newly created annotation.
Declaration
Objective-C
ARTMessageActionAnnotationCreate
Swift
case annotationCreate = 4
-
Message action for a deleted annotation.
Declaration
Objective-C
ARTMessageActionAnnotationDelete
Swift
case annotationDelete = 5
-
Message action for a meta-message that contains channel occupancy information.
Declaration
Objective-C
ARTMessageActionMetaOccupancy
Swift
case metaOccupancy = 6