Stream Chat Unreal SDK
Loading...
Searching...
No Matches
SearchRequestDto.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 "SearchRequestDto.generated.h"
10
16USTRUCT()
17struct STREAMCHATDTO_API FSearchRequestDto
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
33 UPROPERTY()
34 FString Query;
36 UPROPERTY()
37 FJsonObjectWrapper MessageFilterConditions;
39 UPROPERTY()
42 FString Next;
43};
@ Query
Matches values by performing text search with the specified value.
#/components/schemas/SearchRequest
Definition: SearchRequestDto.h:18
#/components/schemas/SortParamRequest
Definition: SortParamRequestDto.h:15