Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ReactionRequestDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7#include "ReactionRequestDto.generated.h"
8
14USTRUCT()
16{
17 GENERATED_BODY()
18
19
20 UPROPERTY()
21 FString MessageId;
22
24 UPROPERTY()
25 uint32 Score = TNumericLimits<uint32>::Max();
26
28 UPROPERTY()
29 FName Type;
30};
@ Type
Type of the message.
#/components/schemas/ReactionRequest Represents user reaction to a message
Definition: ReactionRequestDto.h:16