2026-03-15 17:02:22 -04:00
|
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
#include "UObject/Object.h"
|
|
|
|
|
|
#include "HTTPRequestManager.generated.h"
|
|
|
|
|
|
|
2026-03-15 17:31:56 -04:00
|
|
|
|
class UAPIData;
|
2026-03-16 22:30:26 -04:00
|
|
|
|
class FJsonObject;
|
2026-03-15 17:31:56 -04:00
|
|
|
|
|
2026-03-15 17:02:22 -04:00
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
UCLASS(Blueprintable)
|
|
|
|
|
|
class DEDICATEDSERVERS_API UHTTPRequestManager : public UObject
|
|
|
|
|
|
{
|
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
2026-03-15 17:31:56 -04:00
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
UPROPERTY(EditDefaultsOnly)
|
|
|
|
|
|
TObjectPtr<UAPIData> APIData;
|
|
|
|
|
|
|
2026-03-16 22:30:26 -04:00
|
|
|
|
bool ContainsErrors(TSharedPtr<FJsonObject> JsonObject, bool bSuppressLog = true);
|
|
|
|
|
|
void DumpMetaData(TSharedPtr<FJsonObject> JsonObject);
|
|
|
|
|
|
|
2026-03-15 17:02:22 -04:00
|
|
|
|
};
|