UnrealVoxta 0.1.1
 
Loading...
Searching...
No Matches
ServerResponseContextUpdated.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 ServerResponseContextUpdated(FStringView contextText,
24 FGuid sessionId) : ServerResponseBase(ServerResponseType::ContextUpdated),
25 CONTEXT_TEXT(contextText),
26 SESSION_ID(sessionId)
27 {}
28#pragma endregion
29
30#pragma region data
31public:
33 const FString CONTEXT_TEXT;
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 FString CONTEXT_TEXT
The updated context text.
Definition ServerResponseContextUpdated.h:33
ServerResponseContextUpdated(FStringView contextText, FGuid sessionId)
Construct a context updated response.
Definition ServerResponseContextUpdated.h:23
const FGuid SESSION_ID
The session ID for which the context was updated.
Definition ServerResponseContextUpdated.h:35