Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ReactionDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UserObjectDto.h"
7
8#include "ReactionDto.generated.h"
9
15USTRUCT()
17{
18 GENERATED_BODY()
19
20
21 UPROPERTY()
22 FDateTime CreatedAt = FDateTime{0};
23
25 UPROPERTY()
26 FString MessageId;
27
29 UPROPERTY()
30 int32 Score = 1;
31
33 UPROPERTY()
34 FName Type;
35
37 UPROPERTY()
38 FDateTime UpdatedAt = FDateTime{0};
39
40 UPROPERTY()
41 FUserObjectDto User;
42
43 UPROPERTY()
44 FString UserId;
45};
@ UserId
The user ID of the user that sent the message.
@ Type
Type of the message.
#/components/schemas/Reaction Represents user reaction to a message
Definition: ReactionDto.h:17
#/components/schemas/UserObject Used in both requests and responses
Definition: UserObjectDto.h:17