#pragma once // Dumped with Dumper-7! namespace SDK { //--------------------------------------------------------------------------------------------------------------------- // CLASSES //--------------------------------------------------------------------------------------------------------------------- // 0x0 (0x28 - 0x28) // Class HttpBlueprint.HttpBlueprintFunctionLibrary class UHttpBlueprintFunctionLibrary : public UBlueprintFunctionLibrary { public: static class UClass* StaticClass(); static class UHttpBlueprintFunctionLibrary* GetDefaultObj(); bool RemoveHeader(struct FHttpHeader& HeaderObject, const class FString& HeaderToRemove); void MakeRequestHeader(TMap& Headers, struct FHttpHeader* OutHeader); bool GetHeaderValue(struct FHttpHeader& HeaderObject, const class FString& HeaderName, class FString* OutHeaderValue); TMap GetAllHeaders_Map(struct FHttpHeader& HeaderObject); TArray GetAllHeaders(struct FHttpHeader& HeaderObject); void AddHeader(struct FHttpHeader& HeaderObject, const class FString& NewHeader, const class FString& NewHeaderValue); }; }