MessageStatus

@objc
public enum MessageStatus : Int, StringConvertibleEnum

Message status.

  • Message is pending approval.

    Declaration

    Swift

    case pending = 1
  • Message has been rejected.

    Declaration

    Swift

    case reject = 2
  • Message has been approved or denied.

    Declaration

    Swift

    case complete = 3
  • any

    Message has any of the above status.

    Declaration

    Swift

    case any