Home Reference Source

src/chat/ChatType.js

/**
 * Enum containing the possible types of a chat. Possible values:
 * - INDIVIDUAL
 * - GROUP
 * @type {Enum}
 */
export const ChatType = {
	INDIVIDUAL: 'chat',
	GROUP: 'groupchat',
};