GroupConvo

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

NOTE: This is under active development and should be considered unstable while this note is here.

Parameters

joinRequestCount

The total number of pending join requests for the group conversation. Only present for the owner. Capped at 21.

lockStatus

The lock status of the conversation.

lockStatusModerationOverride

Whether the lock status is being forced by a moderation override (account inactivation or convo takedown) rather than the owner's own setting.

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.

unreadJoinRequestCount

The number of unread join requests for the group conversation. Only present for the owner.

Constructors

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

Properties

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

The total number of pending join requests for the group conversation. Only present for the owner. Capped at 21.

Link copied to clipboard

The lock status of the conversation.

Link copied to clipboard

Whether the lock status is being forced by a moderation override (account inactivation or convo takedown) rather than the owner's own setting.

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.

Link copied to clipboard

The number of unread join requests for the group conversation. Only present for the owner.