GroupConvo

data class GroupConvo(val createdAt: Timestamp, val joinLink: JoinLinkView? = null, val joinRequestCount: Long, val lockStatus: ConvoLockStatus, val memberCount: Long, val memberLimit: Long, val name: String)

NOTE: This is under active development and should be considered unstable while this note is here. Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.

Parameters

joinRequestCount

The total number of pending join requests for the group conversation. This information is only visible to the owner and to moderators. Capped at 21.

lockStatus

The lock status of the conversation.

memberCount

The total number of members in the group conversation.

memberLimit

The maximum number of members allowed in the group conversation.

name

The display name of the group conversation.

Constructors

Link copied to clipboard
constructor(createdAt: Timestamp, joinLink: JoinLinkView? = null, joinRequestCount: Long, lockStatus: ConvoLockStatus, memberCount: Long, memberLimit: Long, name: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The total number of pending join requests for the group conversation. This information is only visible to the owner and to moderators. Capped at 21.

Link copied to clipboard

The lock status of the conversation.

Link copied to clipboard

The total number of members in the group conversation.

Link copied to clipboard

The maximum number of members allowed in the group conversation.

Link copied to clipboard

The display name of the group conversation.