UserGroupMember

@Immutable
data class UserGroupMember(val groupId: String, val userId: String, val isAdmin: Boolean = false, val createdAt: Date? = null)

Membership of a UserGroup.

Parameters

groupId

The group this membership belongs to.

userId

The user that is a member of the group.

isAdmin

Whether the user is an admin of the group.

createdAt

When the user was added to the group.

Constructors

Link copied to clipboard
constructor(groupId: String, userId: String, isAdmin: Boolean = false, createdAt: Date? = null)

Properties

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