Stream Chat Unreal SDK
Loading...
Searching...
No Matches
QueryChannelsRequestDto.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "JsonObjectWrapper.h"
7#include "Request/SortParamRequestDto.h"
8
9#include "QueryChannelsRequestDto.generated.h"
10
16USTRUCT()
17struct STREAMCHATDTO_API FQueryChannelsRequestDto
18{
19 GENERATED_BODY()
20
21
22 UPROPERTY()
23 uint32 Limit = TNumericLimits<uint32>::Max();
24
26 UPROPERTY()
27 uint32 Offset = TNumericLimits<uint32>::Max();
28
29 UPROPERTY()
30 FJsonObjectWrapper FilterConditions;
31
32 UPROPERTY()
33 uint32 MessageLimit = TNumericLimits<uint32>::Max();
34
36 UPROPERTY()
37 uint32 MemberLimit = TNumericLimits<uint32>::Max();
38
40 UPROPERTY()
41 FString ConnectionId;
42
44 UPROPERTY()
45 bool bPresence = false;
46
48 UPROPERTY()
50
52 UPROPERTY()
53 bool bState = true;
54
56 UPROPERTY()
57 bool bWatch = true;
58};
#/components/schemas/QueryChannelsRequest
Definition: QueryChannelsRequestDto.h:18
#/components/schemas/SortParamRequest
Definition: SortParamRequestDto.h:15