Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ChannelFlags.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7#include "ChannelFlags.generated.h"
8
13UENUM(BlueprintType, meta = (Bitflags, UseEnumValuesAsMaskValuesInEditor = "true"))
14enum class EChannelFlags : uint8
15{
17 None = 0,
18
20 State = 1 << 0,
21
23 Watch = 1 << 1,
24
26 Presence = 1 << 2,
27};
28ENUM_CLASS_FLAGS(EChannelFlags);
EChannelFlags
Additional channel actions to perform when requesting channel data from API.
Definition: ChannelFlags.h:15
@ Presence
Return user presence info in response.
@ State
Return channel state in response.
@ None
Do nothing.
@ Watch
Start watching the channel (receive events regarding this channel via WebSocket)