BDKUserState

Objective-C

enum BDKUserState : NSInteger {}

Swift

enum UserState : Int

An enumeration representing the state a user can be in.

  • The user state is unknown.

    Declaration

    Objective-C

    BDKUserStateUnknown = 0

    Swift

    case unknown = 0
  • The user is online with at least one device.

    Declaration

    Objective-C

    BDKUserStateOnline

    Swift

    case online = 1
  • The user is busy calling.

    Declaration

    Objective-C

    BDKUserStateBusy

    Swift

    case busy = 2
  • The user is offline none of hers/his devices is connected.

    Declaration

    Objective-C

    BDKUserStateOffline

    Swift

    case offline = 3