ChatFilter

@Serializable
enum ChatFilter : Enum<ChatFilter>

채팅방 필터링 설정
Filtering options for the chat

Entries

Link copied to clipboard
@SerialName(value = "direct")
DIRECT

1:1 채팅방만 포함
Includes 1:1 chats only

Link copied to clipboard
@SerialName(value = "multi")
MULTI

그룹 채팅방만 포함
Includes group chats only

Link copied to clipboard
@SerialName(value = "regular")
REGULAR

일반 채팅방만 포함
Includes regular chats only

Link copied to clipboard
@SerialName(value = "open")
OPEN

오픈 채팅방만 포함
Includes open chats only

Functions

Link copied to clipboard
fun valueOf(value: String): ChatFilter

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
fun values(): Array<ChatFilter>

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int
Link copied to clipboard
val value: String