Stream Chat Unreal SDK
Loading...
Searching...
No Matches
MessageReadEvent.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Event/Abstract/ChannelEvent.h"
7#include "UserObjectDto.h"
8
9#include "MessageReadEvent.generated.h"
10
16USTRUCT()
18{
19 GENERATED_BODY()
20
21 static FName StaticType()
22 {
23 static const FName Type{TEXT("message.read")};
24 return Type;
25 }
26
27 UPROPERTY()
28 FUserObjectDto User;
29};
@ Type
Type of the message.
Represents an event that happened in a Stream channel.
Definition: ChannelEvent.h:17
A new message was created.
Definition: MessageReadEvent.h:18
#/components/schemas/UserObject Used in both requests and responses
Definition: UserObjectDto.h:17