Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ReactionNewEvent.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Event/Abstract/ReactionEvent.h"
7
8#include "ReactionNewEvent.generated.h"
9
15USTRUCT()
17{
18 GENERATED_BODY()
19
20 static FName StaticType()
21 {
22 static const FName Type{TEXT("reaction.new")};
23 return Type;
24 }
25};
@ Type
Type of the message.
A WebSocket event related to a reaction.
Definition: ReactionEvent.h:16
A new reaction was created.
Definition: ReactionNewEvent.h:17