UnrealVoxta 0.1.1
 
Loading...
Searching...
No Matches
ServerResponseChatClosed.h
Go to the documentation of this file.
1// Copyright(c) 2025 grrimgrriefer & DZnnah, see LICENSE for details.
2
3#pragma once
4
5#include "CoreMinimal.h"
7
14{
15#pragma region public API
16public:
23 explicit ServerResponseChatClosed(FGuid chatId,
24 FGuid sessionId) : ServerResponseBase(ServerResponseType::ChatClosed),
25 CHAT_ID(chatId),
26 SESSION_ID(sessionId)
27 {}
28#pragma endregion
29
30#pragma region data
31public:
33 const FGuid CHAT_ID;
35 const FGuid SESSION_ID;
36#pragma endregion
37};
ServerResponseType
ServerResponseType Contains the possible response types that can be reported by the VoxtaApiReponseHa...
Definition ServerResponseType.h:16
ServerResponseBase(ServerResponseType responseType)
Definition ServerResponseBase.h:20
const FGuid CHAT_ID
The ID of the chat that is now closed.
Definition ServerResponseChatClosed.h:33
const FGuid SESSION_ID
The session ID of the chat that is now closed.
Definition ServerResponseChatClosed.h:35
ServerResponseChatClosed(FGuid chatId, FGuid sessionId)
Construct a chat closed response.
Definition ServerResponseChatClosed.h:23