Stream Chat Unreal SDK
Loading...
Searching...
No Matches
UserUnbannedEvent.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 "UserUnbannedEvent.generated.h"
10
16USTRUCT()
18{
19 GENERATED_BODY()
20
21 static FName StaticType()
22 {
23 static const FName Type{TEXT("user.unbanned")};
24 return Type;
25 }
26
27 UPROPERTY()
28 bool bShadow = false;
29 UPROPERTY()
30 FUserObjectDto User;
31};
@ Type
Type of the message.
Represents an event that happened in a Stream channel.
Definition: ChannelEvent.h:17
#/components/schemas/UserObject Used in both requests and responses
Definition: UserObjectDto.h:17
#/components/schemas/UserUnbannedEvent
Definition: UserUnbannedEvent.h:18