Stream Chat Unreal SDK
Loading...
Searching...
No Matches
HealthCheckEvent.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Event/Abstract/ChatEvent.h"
7#include "OwnUserDto.h"
8
9#include "HealthCheckEvent.generated.h"
10
16USTRUCT()
18{
19 GENERATED_BODY()
20
21 static FName StaticType()
22 {
23 static const FName Type{TEXT("health.check")};
24 return Type;
25 }
26
27 UPROPERTY()
28 FString ConnectionId;
29
30 UPROPERTY()
31 FOwnUserDto Me;
32
33 // TODO everything else
34};
@ Type
Type of the message.
Represents an event that happened in Stream Chat.
Definition: ChatEvent.h:16
Sent periodically from the API to indicate a healthy connection.
Definition: HealthCheckEvent.h:18
#/components/schemas/OwnUser
Definition: OwnUserDto.h:17