CPChatParticipantStatus

@objc
public enum CPChatParticipantStatus : Int, RawRepresentable

The status of chat group participants will be either Invited, Connected, or Disconnected.

  • Declaration

    Swift

    public typealias RawValue = String
  • Undocumented

    Declaration

    Swift

    case Unknown
  • The user has been invited to join a chat group, but has not yet accepted the invitation.

    Declaration

    Swift

    case Invited
  • The user is a member of the chat group.

    Declaration

    Swift

    case Connected
  • The user is no longer a member of the chat group.

    Declaration

    Swift

    case Disconnected
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public init(rawValue: RawValue)