API/Autodoc/Files/FURuStorePayProductPurchaseParams.h.en.md


Classes

Name
struct FURuStorePayProductPurchaseParams — Product purchase parameters.

Source code

// Copyright Epic Games, Inc. All Rights Reserved.

#include "FURuStorePayProductPurchaseParams.generated.h"

USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayProductPurchaseParams
{
    GENERATED_USTRUCT_BODY()

    
    UPROPERTY(BlueprintReadOnly)
    URuStorePayProductId* productId;

    URuStorePayAppUserEmail* appUserEmail; // nullable

    UPROPERTY(BlueprintReadOnly)
    URuStorePayAppUserId* appUserId; // nullable

    UPROPERTY(BlueprintReadOnly)
    URuStorePayDeveloperPayload* developerPayload; // nullable

    UPROPERTY(BlueprintReadOnly)
    URuStorePayOrderId* orderId; // nullable

    UPROPERTY(BlueprintReadOnly)
    URuStorePayQuantity* quantity; // nullable

    FURuStorePayProductPurchaseParams()
    {
        productId = NewObject<URuStorePayProductId>();
        appUserEmail = nullptr;
        appUserId = nullptr;
        developerPayload = nullptr;
        orderId = nullptr;
        quantity = nullptr;
    }
};
Назад