GroupMember

public class GroupMember : User

The group member class is child class of user class.

  • provides the scope of group member

    Declaration

    Swift

    @objc
    public var scope: CometChat.GroupMemberScopeType { get set }
  • provides the timestamp of when the user joined the group

    Declaration

    Swift

    @objc
    public var joinedAt: Int { get set }
  • Initialiser fot group member object

    Declaration

    Swift

    @objc
    public init(UID: String, groupMemberScope: CometChat.GroupMemberScopeType)
  • provides the string value representatiion of group member objectb.

    Declaration

    Swift

    @objc
    public override func stringValue() -> String