ARTMessageAction

Objective-C

enum ARTMessageAction : NSUInteger {}

Swift

enum ARTMessageAction : UInt, @unchecked Sendable

The namespace containing the different types of message actions.

  • Message action for a newly created message.

    Declaration

    Objective-C

    ARTMessageActionCreate

    Swift

    case create = 0
  • Message action for an updated message.

    Declaration

    Objective-C

    ARTMessageActionUpdate

    Swift

    case update = 1
  • Message action for a deleted message.

    Declaration

    Objective-C

    ARTMessageActionDelete

    Swift

    case delete = 2
  • Message action for a meta-message that contains channel occupancy information.

    Declaration

    Objective-C

    ARTMessageActionMetaOccupancy

    Swift

    case metaOccupancy = 3
  • Message action for a message containing the latest rolled-up summary of annotations that have been made to this message.

    Declaration

    Objective-C

    ARTMessageActionMessageSummary

    Swift

    case messageSummary = 4