// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #include "Engine/PlatformInterfaceWebResponse.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT"); void EmptyLinkFunctionForGeneratedCodePlatformInterfaceWebResponse() {} // ********** Begin Cross Module References ******************************************************** COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); ENGINE_API UClass* Z_Construct_UClass_UPlatformInterfaceWebResponse(); ENGINE_API UClass* Z_Construct_UClass_UPlatformInterfaceWebResponse_NoRegister(); UPackage* Z_Construct_UPackage__Script_Engine(); // ********** End Cross Module References ********************************************************** // ********** Begin Class UPlatformInterfaceWebResponse Function GetHeader ************************* struct Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics { struct PlatformInterfaceWebResponse_eventGetHeader_Parms { int32 HeaderIndex; FString Header; FString Value; }; #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { { "Comment", "/** Retrieve the header and value for the given index of header/value pair */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "Retrieve the header and value for the given index of header/value pair" }, }; #endif // WITH_METADATA // ********** Begin Function GetHeader constinit property declarations ***************************** static const UECodeGen_Private::FIntPropertyParams NewProp_HeaderIndex; static const UECodeGen_Private::FStrPropertyParams NewProp_Header; static const UECodeGen_Private::FStrPropertyParams NewProp_Value; static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; // ********** End Function GetHeader constinit property declarations ******************************* static const UECodeGen_Private::FFunctionParams FuncParams; }; // ********** Begin Function GetHeader Property Definitions **************************************** const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_HeaderIndex = { "HeaderIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetHeader_Parms, HeaderIndex), METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_Header = { "Header", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetHeader_Parms, Header), METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetHeader_Parms, Value), METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PropPointers[] = { (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_HeaderIndex, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_Header, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::NewProp_Value, }; static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PropPointers) < 2048); // ********** End Function GetHeader Property Definitions ****************************************** const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_UPlatformInterfaceWebResponse, nullptr, "GetHeader", Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PlatformInterfaceWebResponse_eventGetHeader_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::Function_MetaDataParams)}, }; static_assert(sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::PlatformInterfaceWebResponse_eventGetHeader_Parms) < MAX_uint16); UFunction* Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader() { static UFunction* ReturnFunction = nullptr; if (!ReturnFunction) { UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader_Statics::FuncParams); } return ReturnFunction; } DEFINE_FUNCTION(UPlatformInterfaceWebResponse::execGetHeader) { P_GET_PROPERTY(FIntProperty,Z_Param_HeaderIndex); P_GET_PROPERTY_REF(FStrProperty,Z_Param_Out_Header); P_GET_PROPERTY_REF(FStrProperty,Z_Param_Out_Value); P_FINISH; P_NATIVE_BEGIN; P_THIS->GetHeader(Z_Param_HeaderIndex,Z_Param_Out_Header,Z_Param_Out_Value); P_NATIVE_END; } // ********** End Class UPlatformInterfaceWebResponse Function GetHeader *************************** // ********** Begin Class UPlatformInterfaceWebResponse Function GetHeaderValue ******************** struct Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics { struct PlatformInterfaceWebResponse_eventGetHeaderValue_Parms { FString HeaderName; FString ReturnValue; }; #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { { "Comment", "/** @return the value for the given header (or \"\" if no matching header) */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "@return the value for the given header (or \"\" if no matching header)" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeaderName_MetaData[] = { { "NativeConst", "" }, }; #endif // WITH_METADATA // ********** Begin Function GetHeaderValue constinit property declarations ************************ static const UECodeGen_Private::FStrPropertyParams NewProp_HeaderName; static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; // ********** End Function GetHeaderValue constinit property declarations ************************** static const UECodeGen_Private::FFunctionParams FuncParams; }; // ********** Begin Function GetHeaderValue Property Definitions *********************************** const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::NewProp_HeaderName = { "HeaderName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetHeaderValue_Parms, HeaderName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeaderName_MetaData), NewProp_HeaderName_MetaData) }; const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetHeaderValue_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PropPointers[] = { (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::NewProp_HeaderName, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::NewProp_ReturnValue, }; static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PropPointers) < 2048); // ********** End Function GetHeaderValue Property Definitions ************************************* const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_UPlatformInterfaceWebResponse, nullptr, "GetHeaderValue", Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PlatformInterfaceWebResponse_eventGetHeaderValue_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::Function_MetaDataParams)}, }; static_assert(sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::PlatformInterfaceWebResponse_eventGetHeaderValue_Parms) < MAX_uint16); UFunction* Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue() { static UFunction* ReturnFunction = nullptr; if (!ReturnFunction) { UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue_Statics::FuncParams); } return ReturnFunction; } DEFINE_FUNCTION(UPlatformInterfaceWebResponse::execGetHeaderValue) { P_GET_PROPERTY(FStrProperty,Z_Param_HeaderName); P_FINISH; P_NATIVE_BEGIN; *(FString*)Z_Param__Result=P_THIS->GetHeaderValue(Z_Param_HeaderName); P_NATIVE_END; } // ********** End Class UPlatformInterfaceWebResponse Function GetHeaderValue ********************** // ********** Begin Class UPlatformInterfaceWebResponse Function GetNumHeaders ********************* struct Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics { struct PlatformInterfaceWebResponse_eventGetNumHeaders_Parms { int32 ReturnValue; }; #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { { "Comment", "/** @return the number of header/value pairs */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "@return the number of header/value pairs" }, }; #endif // WITH_METADATA // ********** Begin Function GetNumHeaders constinit property declarations ************************* static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; // ********** End Function GetNumHeaders constinit property declarations *************************** static const UECodeGen_Private::FFunctionParams FuncParams; }; // ********** Begin Function GetNumHeaders Property Definitions ************************************ const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PlatformInterfaceWebResponse_eventGetNumHeaders_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PropPointers[] = { (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::NewProp_ReturnValue, }; static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PropPointers) < 2048); // ********** End Function GetNumHeaders Property Definitions ************************************** const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::FuncParams = { { (UObject*(*)())Z_Construct_UClass_UPlatformInterfaceWebResponse, nullptr, "GetNumHeaders", Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PlatformInterfaceWebResponse_eventGetNumHeaders_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::Function_MetaDataParams)}, }; static_assert(sizeof(Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::PlatformInterfaceWebResponse_eventGetNumHeaders_Parms) < MAX_uint16); UFunction* Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders() { static UFunction* ReturnFunction = nullptr; if (!ReturnFunction) { UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders_Statics::FuncParams); } return ReturnFunction; } DEFINE_FUNCTION(UPlatformInterfaceWebResponse::execGetNumHeaders) { P_FINISH; P_NATIVE_BEGIN; *(int32*)Z_Param__Result=P_THIS->GetNumHeaders(); P_NATIVE_END; } // ********** End Class UPlatformInterfaceWebResponse Function GetNumHeaders *********************** // ********** Begin Class UPlatformInterfaceWebResponse ******************************************** FClassRegistrationInfo Z_Registration_Info_UClass_UPlatformInterfaceWebResponse; UClass* UPlatformInterfaceWebResponse::GetPrivateStaticClass() { using TClass = UPlatformInterfaceWebResponse; if (!Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.InnerSingleton) { GetPrivateStaticClassBody( TClass::StaticPackage(), TEXT("PlatformInterfaceWebResponse"), Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.InnerSingleton, StaticRegisterNativesUPlatformInterfaceWebResponse, sizeof(TClass), alignof(TClass), TClass::StaticClassFlags, TClass::StaticClassCastFlags(), TClass::StaticConfigName(), (UClass::ClassConstructorType)InternalConstructor, (UClass::ClassVTableHelperCtorCallerType)InternalVTableHelperCtorCaller, UOBJECT_CPPCLASS_STATICFUNCTIONS_FORCLASS(TClass), &TClass::Super::StaticClass, &TClass::WithinClass::StaticClass ); } return Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.InnerSingleton; } UClass* Z_Construct_UClass_UPlatformInterfaceWebResponse_NoRegister() { return UPlatformInterfaceWebResponse::GetPrivateStaticClass(); } struct Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics { #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { { "IncludePath", "Engine/PlatformInterfaceWebResponse.h" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OriginalURL_MetaData[] = { { "Comment", "/** This holds the original requested URL */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "This holds the original requested URL" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ResponseCode_MetaData[] = { { "Comment", "/** Result code from the response (200=OK, 404=Not Found, etc) */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "Result code from the response (200=OK, 404=Not Found, etc)" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { { "Comment", "/** A user-specified tag specified with the request */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "A user-specified tag specified with the request" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StringResponse_MetaData[] = { { "Comment", "/** For string results, this is the response */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "For string results, this is the response" }, }; static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BinaryResponse_MetaData[] = { { "Comment", "/** For non-string results, this is the response */" }, { "ModuleRelativePath", "Classes/Engine/PlatformInterfaceWebResponse.h" }, { "ToolTip", "For non-string results, this is the response" }, }; #endif // WITH_METADATA // ********** Begin Class UPlatformInterfaceWebResponse constinit property declarations ************ static const UECodeGen_Private::FStrPropertyParams NewProp_OriginalURL; static const UECodeGen_Private::FIntPropertyParams NewProp_ResponseCode; static const UECodeGen_Private::FIntPropertyParams NewProp_Tag; static const UECodeGen_Private::FStrPropertyParams NewProp_StringResponse; static const UECodeGen_Private::FBytePropertyParams NewProp_BinaryResponse_Inner; static const UECodeGen_Private::FArrayPropertyParams NewProp_BinaryResponse; static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; // ********** End Class UPlatformInterfaceWebResponse constinit property declarations ************** static constexpr UE::CodeGen::FClassNativeFunction Funcs[] = { { .NameUTF8 = UTF8TEXT("GetHeader"), .Pointer = &UPlatformInterfaceWebResponse::execGetHeader }, { .NameUTF8 = UTF8TEXT("GetHeaderValue"), .Pointer = &UPlatformInterfaceWebResponse::execGetHeaderValue }, { .NameUTF8 = UTF8TEXT("GetNumHeaders"), .Pointer = &UPlatformInterfaceWebResponse::execGetNumHeaders }, }; static UObject* (*const DependentSingletons[])(); static constexpr FClassFunctionLinkInfo FuncInfo[] = { { &Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeader, "GetHeader" }, // 453854330 { &Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetHeaderValue, "GetHeaderValue" }, // 2663864116 { &Z_Construct_UFunction_UPlatformInterfaceWebResponse_GetNumHeaders, "GetNumHeaders" }, // 3505836261 }; static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { TCppClassTypeTraits::IsAbstract, }; static const UECodeGen_Private::FClassParams ClassParams; }; // struct Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics // ********** Begin Class UPlatformInterfaceWebResponse Property Definitions *********************** const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_OriginalURL = { "OriginalURL", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPlatformInterfaceWebResponse, OriginalURL), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OriginalURL_MetaData), NewProp_OriginalURL_MetaData) }; const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_ResponseCode = { "ResponseCode", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPlatformInterfaceWebResponse, ResponseCode), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ResponseCode_MetaData), NewProp_ResponseCode_MetaData) }; const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPlatformInterfaceWebResponse, Tag), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_StringResponse = { "StringResponse", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPlatformInterfaceWebResponse, StringResponse), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StringResponse_MetaData), NewProp_StringResponse_MetaData) }; const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_BinaryResponse_Inner = { "BinaryResponse", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_BinaryResponse = { "BinaryResponse", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPlatformInterfaceWebResponse, BinaryResponse), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BinaryResponse_MetaData), NewProp_BinaryResponse_MetaData) }; const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::PropPointers[] = { (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_OriginalURL, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_ResponseCode, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_Tag, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_StringResponse, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_BinaryResponse_Inner, (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::NewProp_BinaryResponse, }; static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::PropPointers) < 2048); // ********** End Class UPlatformInterfaceWebResponse Property Definitions ************************* UObject* (*const Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_UObject, (UObject* (*)())Z_Construct_UPackage__Script_Engine, }; static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::DependentSingletons) < 16); const UECodeGen_Private::FClassParams Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::ClassParams = { &UPlatformInterfaceWebResponse::StaticClass, nullptr, &StaticCppClassTypeInfo, DependentSingletons, FuncInfo, Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::PropPointers, nullptr, UE_ARRAY_COUNT(DependentSingletons), UE_ARRAY_COUNT(FuncInfo), UE_ARRAY_COUNT(Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::PropPointers), 0, 0x000800A8u, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::Class_MetaDataParams), Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::Class_MetaDataParams) }; void UPlatformInterfaceWebResponse::StaticRegisterNativesUPlatformInterfaceWebResponse() { UClass* Class = UPlatformInterfaceWebResponse::StaticClass(); FNativeFunctionRegistrar::RegisterFunctions(Class, MakeConstArrayView(Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::Funcs)); } UClass* Z_Construct_UClass_UPlatformInterfaceWebResponse() { if (!Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.OuterSingleton) { UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.OuterSingleton, Z_Construct_UClass_UPlatformInterfaceWebResponse_Statics::ClassParams); } return Z_Registration_Info_UClass_UPlatformInterfaceWebResponse.OuterSingleton; } DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UPlatformInterfaceWebResponse); UPlatformInterfaceWebResponse::~UPlatformInterfaceWebResponse() {} // ********** End Class UPlatformInterfaceWebResponse ********************************************** // ********** Begin Registration ******************************************************************* struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Engine_PlatformInterfaceWebResponse_h__Script_Engine_Statics { static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { { Z_Construct_UClass_UPlatformInterfaceWebResponse, UPlatformInterfaceWebResponse::StaticClass, TEXT("UPlatformInterfaceWebResponse"), &Z_Registration_Info_UClass_UPlatformInterfaceWebResponse, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPlatformInterfaceWebResponse), 1210991545U) }, }; }; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Engine_PlatformInterfaceWebResponse_h__Script_Engine_Statics static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Engine_PlatformInterfaceWebResponse_h__Script_Engine_2183904582{ TEXT("/Script/Engine"), Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Engine_PlatformInterfaceWebResponse_h__Script_Engine_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Engine_Classes_Engine_PlatformInterfaceWebResponse_h__Script_Engine_Statics::ClassInfo), nullptr, 0, nullptr, 0, }; // ********** End Registration ********************************************************************* PRAGMA_ENABLE_DEPRECATION_WARNINGS