Lesson 63 - Parsing the Payload

This commit is contained in:
Norman Lansing
2026-03-16 06:46:34 -04:00
parent 7f154aa6f9
commit 30c1e42379
3 changed files with 33 additions and 0 deletions

View File

@@ -42,5 +42,9 @@ void UAPITestManager::ListFleets_Response(FHttpRequestPtr Request, FHttpResponse
FJsonObjectConverter::JsonObjectToUStruct(MetaDataJsonObject.ToSharedRef(), &DSMetaData);
DSMetaData.Dump();
}
FDS_ListFleetsResponse ListFleetsResponse;
FJsonObjectConverter::JsonObjectToUStruct(JsonObject.ToSharedRef(), &ListFleetsResponse);
ListFleetsResponse.Dump();
}
}