Lesson 62 - Parsing the Metadata

This commit is contained in:
Norman Lansing
2026-03-30 06:57:00 -04:00
parent 34ef566665
commit d3c28f8330
6 changed files with 51 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include "HTTPRequestTypes.generated.h"
USTRUCT()
struct FDSMetaData
{
GENERATED_BODY()
UPROPERTY()
int32 httpStatusCode{};
UPROPERTY()
FString requestId{};
UPROPERTY()
int32 attempts{};
UPROPERTY()
double totalRetryDelay{};
void Dump() const;
};