Stream Chat Unreal SDK
Loading...
Searching...
No Matches
BanRequestDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7#include "BanRequestDto.generated.h"
8
14USTRUCT()
15struct STREAMCHATDTO_API FBanRequestDto
16{
17 GENERATED_BODY()
18
19
20 UPROPERTY()
21 FString TargetUserId;
22
24 UPROPERTY()
25 FString Type;
26
28 UPROPERTY()
29 FString Id;
30
32 UPROPERTY()
33 bool bShadow = false;
34
36 UPROPERTY()
37 bool bIpBan = false;
38
40 UPROPERTY()
41 FString Reason;
42
44 UPROPERTY()
45 float Timeout = TNumericLimits<float>::Max();
46};
@ Id
Message ID.
@ Type
Type of the message.
#/components/schemas/BanRequest
Definition: BanRequestDto.h:16