API/Autodoc/Files/URuStorePayGetBillingSubscriptionsNode.h.md


Classes

Name
class URuStorePayGetBillingSubscriptionsNode

Functions

Name
DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FGetPayBillingSubscriptionsPin , const TArray< FURuStorePayPurchase > & , response , FURuStoreError , error )

function DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams

DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(
    FGetPayBillingSubscriptionsPin ,
    const TArray< FURuStorePayPurchase > & ,
    response ,
    FURuStoreError ,
    error 
)

Source code

#include "URuStorePayGetBillingSubscriptionsNode.generated.h"

DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams(FGetPayBillingSubscriptionsPin, const TArray<FURuStorePayPurchase>&, response, FURuStoreError, error);

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

public:
    UPROPERTY(BlueprintAssignable)
    FGetPayBillingSubscriptionsPin Success;

    UPROPERTY(BlueprintAssignable)
    FGetPayBillingSubscriptionsPin Failure;

    UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly = "true", WorldContext = "WorldContextObject"), Category = "RuStore Pay Client")
    static URuStorePayGetBillingSubscriptionsNode* GetBillingSubscriptionsAsync(URuStorePayClient* target);
};

Назад