UnrealVoxta 0.1.1
 
Loading...
Searching...
No Matches
ServerResponseConfiguration.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"
8
15{
16#pragma region public API
17public:
23 explicit ServerResponseConfiguration(const TArray<FVoxtaServiceGroupData>& services) :
25 SERVICES(services)
26 {}
27#pragma endregion
28
29#pragma region data
30public:
32 const TArray<FVoxtaServiceGroupData> SERVICES;
33#pragma endregion
34};
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 TArray< FVoxtaServiceGroupData > SERVICES
The map of all registered service-types (both enabled and disabled), each containing every serviceEnt...
Definition ServerResponseConfiguration.h:32
ServerResponseConfiguration(const TArray< FVoxtaServiceGroupData > &services)
Construct a configuration response.
Definition ServerResponseConfiguration.h:23