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


The text is already in English, so it is returned unchanged.

## Classes

|                | Name           |
| -------------- | -------------- |
| class | **[URuStorePayGetBillingSubscriptionsNode](https://gitflic.ru/project/rustore/rustore-unreal-engine-pay/wiki/page?file=API/Autodoc/Classes/URuStorePayGetBillingSubscriptionsNode.en.md)**  |

## Functions

|                | Name           |
| -------------- | -------------- |
| | **[DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams](https://gitflic.ru/project/rustore/rustore-unreal-engine-pay/wiki/page?file=API/Autodoc/Files/URuStorePayGetBillingSubscriptionsNode.h.en.md#function-declare-dynamic-multicast-delegate-twoparams)**(FGetPayBillingSubscriptionsPin , const TArray< [FURuStorePayPurchase](https://gitflic.ru/project/rustore/rustore-unreal-engine-pay/wiki/page?file=API/Autodoc/Classes/FURuStorePayPurchase.en.md) > & , response , [FURuStoreError](https://gitflic.ru/project/rustore/rustore-unreal-engine-pay/wiki/page?file=API/Autodoc/Classes/FURuStoreError.en.md) , error ) |


### function DECLARE_DYNAMIC_MULTICAST_DELEGATE_TwoParams

```cpp
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);
};
Назад