API/Autodoc/Files/URuStorePayPurchaseTwoStepNode.h.md


Classes

Name
class URuStorePayPurchaseTwoStepNode

Functions

Name
DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FPurchaseTwoStepPin , FURuStorePayProductPurchaseResult , response , FURuStoreError , error )

function DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams

DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(
    FPurchaseTwoStepPin ,
    FURuStorePayProductPurchaseResult ,
    response ,
    FURuStoreError ,
    error 
)

Source code

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

#include "URuStorePayPurchaseTwoStepNode.generated.h"

DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FPurchaseTwoStepPin,
    FURuStorePayProductPurchaseResult, response,
    FURuStoreError, error
);

UCLASS()
class RUSTOREPAY_API URuStorePayPurchaseTwoStepNode : public UBlueprintAsyncActionBase
{
    GENERATED_UCLASS_BODY()

public:
    UPROPERTY(BlueprintAssignable)
    FPurchaseTwoStepPin Success;

    UPROPERTY(BlueprintAssignable)
    FPurchaseTwoStepPin Error;

    UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly = "true", WorldContext = "WorldContextObject"), Category = "RuStore Pay Client")
    static URuStorePayPurchaseTwoStepNode* PurchaseTwoStepAsync(
        URuStorePayClient* target,
        FURuStorePayProductPurchaseParams productPurchaseParams,
        EURuStorePaySdkTheme sdkTheme = EURuStorePaySdkTheme::LIGHT
    );
};

Назад