Stream Chat Unreal SDK
Loading...
Searching...
No Matches
SendReactionRequestDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "ReactionRequestDto.h"
7
8#include "SendReactionRequestDto.generated.h"
9
15USTRUCT()
17{
18 GENERATED_BODY()
19
20
21 UPROPERTY()
22 bool bEnforceUnique = false;
23
24 UPROPERTY()
25 FReactionRequestDto Reaction;
26
28 UPROPERTY()
29 bool bSkipPush = false;
30};
#/components/schemas/ReactionRequest Represents user reaction to a message
Definition: ReactionRequestDto.h:16
#/components/schemas/SendReactionRequest Contains all information needed to send new reaction
Definition: SendReactionRequestDto.h:17