Home Reference Source

src/chat/ChatParticipantRole.js

/**
 * Enum containing the possible roles of a chat participant. Possible values:
 * - MEMBER
 * - ADMIN
 * @type {Enum}
 */
export const ChatParticipantRole = {
	MEMBER: 'member',
	ADMIN: 'owner',
};