Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ChannelMuteDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Response/Channel/ChannelResponseDto.h"
7#include "UserObjectDto.h"
8
9#include "ChannelMuteDto.generated.h"
10
15USTRUCT()
17{
18 GENERATED_BODY()
19
20 // Channel who is muted
21 UPROPERTY()
22 FChannelResponseDto Channel;
23
25 UPROPERTY()
26 FDateTime CreatedAt = FDateTime{0};
27
29 UPROPERTY()
30 FDateTime Expires = FDateTime{0};
31
33 UPROPERTY()
34 FDateTime UpdatedAt = FDateTime{0};
35
36 // Owner of channel mute
37 UPROPERTY()
38 FUserObjectDto User;
39};
#/components/schemas/ChannelMute
Definition: ChannelMuteDto.h:17
#/components/schemas/ChannelResponse Represents channel in chat
Definition: ChannelResponseDto.h:20
#/components/schemas/UserObject Used in both requests and responses
Definition: UserObjectDto.h:17