API/Autodoc/Files/FURuStorePayPaymentException.h.md
Classes
| Name | |
|---|---|
| struct | FURuStorePayPaymentException — Информация об ошибках платежного клиента. |
| struct | FURuStorePayApplicationSchemeWasNotProvided — Ошибка: схема приложения не предоставлена. |
| struct | FURuStorePayEmptyPaymentTokenException — Ошибка: пустой платежный токен. |
| struct | FURuStorePayProductPurchaseCancelled — Ошибка: покупка отменена. |
| struct | FURuStorePayProductPurchaseException — Ошибка: исключение покупки продукта. |
| struct | FURuStorePayClientAlreadyExist — Ошибка: платежный клиент уже существует. |
| struct | FURuStorePayClientNotCreated — Ошибка: платежный клиент не создан. |
| struct | FURuStorePayInvalidActivePurchase — Ошибка: некорректная активная покупка. |
| struct | FURuStorePayInvalidConsoleAppId — Ошибка: некорректный идентификатор приложения в консоли. |
| struct | FURuStorePaySignatureException — Ошибка: ошибка подписи. |
| struct | FURuStorePaymentCommonException — Ошибка: общая ошибка платежа. |
| struct | FURuStorePaymentNetworkException — Ошибка: сетевая ошибка платежа. |
Source code
// Copyright Epic Games, Inc. All Rights Reserved.
#include "FURuStorePayPaymentException.generated.h"
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayPaymentException : public FURuStoreError
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayPaymentException() : FURuStoreError()
{
}
FURuStorePayPaymentException(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException()
{
name = inName;
description = inMessage;
cause = inCause;
}
virtual ~FURuStorePayPaymentException() {}
TSharedPtr<FURuStoreError> cause;
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayApplicationSchemeWasNotProvided : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayApplicationSchemeWasNotProvided() : FURuStorePayPaymentException() {}
FURuStorePayApplicationSchemeWasNotProvided(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayEmptyPaymentTokenException : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayEmptyPaymentTokenException() : FURuStorePayPaymentException() {}
FURuStorePayEmptyPaymentTokenException(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayProductPurchaseCancelled : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayProductPurchaseCancelled() : FURuStorePayPaymentException() {}
FURuStorePayProductPurchaseCancelled(
const FString& inName,
const FString& inMessage,
TSharedPtr<FURuStoreError> inCause,
EURuStorePayProductType inProductType,
const FString& inPurchaseId,
EURuStorePayPurchaseType inPurchaseType
) : FURuStorePayPaymentException(inName, inMessage, inCause)
{
productType = inProductType;
purchaseId = inPurchaseId;
purchaseType = inPurchaseType;
}
EURuStorePayProductType productType = EURuStorePayProductType::NON_CONSUMABLE_PRODUCT;
FString purchaseId;
EURuStorePayPurchaseType purchaseType = EURuStorePayPurchaseType::UNKNOWN;
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayProductPurchaseException : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayProductPurchaseException() : FURuStorePayPaymentException() {}
FURuStorePayProductPurchaseException(
const FString& inName,
const FString& inMessage,
TSharedPtr<FURuStoreError> inCause,
const FString& inInvoiceId,
const FString& inOrderId,
const FString& inProductId,
EURuStorePayProductType inProductType,
const FString& inPurchaseId,
EURuStorePayPurchaseType inPurchaseType,
int32 inQuantity,
bool inSandbox
) : FURuStorePayPaymentException(inName, inMessage, inCause)
{
invoiceId = inInvoiceId;
orderId = inOrderId;
productId = inProductId;
productType = inProductType;
purchaseId = inPurchaseId;
purchaseType = inPurchaseType;
quantity = inQuantity;
sandbox = inSandbox;
}
FString invoiceId;
FString orderId;
FString productId;
EURuStorePayProductType productType = EURuStorePayProductType::NON_CONSUMABLE_PRODUCT;
FString purchaseId;
EURuStorePayPurchaseType purchaseType = EURuStorePayPurchaseType::UNKNOWN;
int32 quantity = 1;
bool sandbox = false;
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayClientAlreadyExist : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayClientAlreadyExist() : FURuStorePayPaymentException() {}
FURuStorePayClientAlreadyExist(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayClientNotCreated : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayClientNotCreated() : FURuStorePayPaymentException() {}
FURuStorePayClientNotCreated(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayInvalidActivePurchase : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayInvalidActivePurchase() : FURuStorePayPaymentException() {}
FURuStorePayInvalidActivePurchase(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePayInvalidConsoleAppId : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePayInvalidConsoleAppId() : FURuStorePayPaymentException() {}
FURuStorePayInvalidConsoleAppId(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePaySignatureException : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePaySignatureException() : FURuStorePayPaymentException() {}
FURuStorePaySignatureException(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePaymentCommonException : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePaymentCommonException() : FURuStorePayPaymentException() {}
FURuStorePaymentCommonException(const FString& inName, const FString& inMessage, TSharedPtr<FURuStoreError> inCause)
: FURuStorePayPaymentException(inName, inMessage, inCause) {}
};
USTRUCT(BlueprintType)
struct RUSTOREPAY_API FURuStorePaymentNetworkException : public FURuStorePayPaymentException
{
GENERATED_USTRUCT_BODY()
#if USE_EXTENDED_ERROR_TYPES
static const FString TypeName;
virtual FString GetTypeName() override { return TypeName; }
#endif
FURuStorePaymentNetworkException() : FURuStorePayPaymentException() {}
FURuStorePaymentNetworkException(
const FString& inCode,
const FString& inId,
const FString& inName,
const FString& inMessage,
TSharedPtr<FURuStoreError> inCause
) : FURuStorePayPaymentException(inName, inMessage, inCause)
{
code = inCode;
id = inId;
}
FString code;
FString id;
};
- Страницы
- AndroidJavaClass.cpp.en
- AndroidJavaClass.cpp
- AndroidJavaClass.h.en
- AndroidJavaClass.h
- AndroidJavaLog.cpp.en
- AndroidJavaLog.cpp
- AndroidJavaLog.h.en
- AndroidJavaLog.h
- AndroidJavaObject.cpp.en
- AndroidJavaObject.cpp
- AndroidJavaObject.h.en
- AndroidJavaObject.h
- AsyncNodes.en
- AsyncNodes
- AsyncNodes_Files.en
- AsyncNodes_Files
- CallbackHandler.cpp.en
- CallbackHandler.cpp
- CallbackHandler.h.en
- CallbackHandler.h
- Callbacks.en
- Callbacks
- Callbacks_Files.en
- Callbacks_Files
- CancelTwoStepPurchaseResponseListenerImpl.cpp.en
- CancelTwoStepPurchaseResponseListenerImpl.cpp
- CancelTwoStepPurchaseResponseListenerImpl.h.en
- CancelTwoStepPurchaseResponseListenerImpl.h
- ConfirmTwoStepPurchaseResponseListenerImpl.cpp.en
- ConfirmTwoStepPurchaseResponseListenerImpl.cpp
- ConfirmTwoStepPurchaseResponseListenerImpl.h.en
- ConfirmTwoStepPurchaseResponseListenerImpl.h
- DataConverter.cpp.en
- DataConverter.cpp
- DataConverter.h.en
- DataConverter.h
- EURuStorePayAcknowledgementState.h.en
- EURuStorePayAcknowledgementState.h
- EURuStorePayPreferredPurchaseType.h.en
- EURuStorePayPreferredPurchaseType.h
- EURuStorePayProductPurchaseStatus.h.en
- EURuStorePayProductPurchaseStatus.h
- EURuStorePayProductType.h.en
- EURuStorePayProductType.h
- EURuStorePayPurchaseStatusFilter.h.en
- EURuStorePayPurchaseStatusFilter.h
- EURuStorePayPurchaseType.h.en
- EURuStorePayPurchaseType.h
- EURuStorePaySdkTheme.h.en
- EURuStorePaySdkTheme.h
- EURuStorePaySubscriptionPeriodType.h.en
- EURuStorePaySubscriptionPeriodType.h
- EURuStorePaySubscriptionPurchaseStatus.h.en
- EURuStorePaySubscriptionPurchaseStatus.h
- EURuStorePayUserAuthorizationStatus.h.en
- EURuStorePayUserAuthorizationStatus.h
- ErrorConverter.cpp.en
- ErrorConverter.cpp
- ErrorConverter.h.en
- ErrorConverter.h
- ErrorListener.cpp.en
- ErrorListener.cpp
- ErrorListener.h.en
- ErrorListener.h
- FURuStoreError.cpp.en
- FURuStoreError.cpp
- FURuStoreError.h.en
- FURuStoreError.h
- FURuStoreFeatureAvailabilityResult.h.en
- FURuStoreFeatureAvailabilityResult.h
- FURuStorePayPaymentException.cpp.en
- FURuStorePayPaymentException.cpp
- FURuStorePayPaymentException.h.en
- FURuStorePayPaymentException.h
- FURuStorePayProduct.h.en
- FURuStorePayProduct.h
- FURuStorePayProductPurchase.h.en
- FURuStorePayProductPurchase.h
- FURuStorePayProductPurchaseParams.h.en
- FURuStorePayProductPurchaseParams.h
- FURuStorePayProductPurchaseResult.h.en
- FURuStorePayProductPurchaseResult.h
- FURuStorePayPurchase.h.en
- FURuStorePayPurchase.h
- FURuStorePayPurchaseAvailabilityResult.h.en
- FURuStorePayPurchaseAvailabilityResult.h
- FURuStorePayPurchaseEventResult.h.en
- FURuStorePayPurchaseEventResult.h
- FURuStorePaySubscriptionPeriod.h.en
- FURuStorePaySubscriptionPeriod.h
- FURuStorePaySubscriptionPurchase.h.en
- FURuStorePaySubscriptionPurchase.h
- FeatureAvailabilityListenerImpl.cpp.en
- FeatureAvailabilityListenerImpl.cpp
- FeatureAvailabilityListenerImpl.h.en
- FeatureAvailabilityListenerImpl.h
- GetUserAuthorizationStatusListenerImpl.cpp.en
- GetUserAuthorizationStatusListenerImpl.cpp
- GetUserAuthorizationStatusListenerImpl.h.en
- GetUserAuthorizationStatusListenerImpl.h
- IAndroidClasses.h.en
- IAndroidClasses.h
- IRuStoreListener.java.en
- IRuStoreListener.java
- Internal.en
- Internal
- Internal_Files.en
- Internal_Files
- Java.en
- Java
- JavaActivity.cpp.en
- JavaActivity.cpp
- JavaActivity.h.en
- JavaActivity.h
- JavaApplication.cpp.en
- JavaApplication.cpp
- JavaApplication.h.en
- JavaApplication.h
- JavaMethodSignature.cpp.en
- JavaMethodSignature.cpp
- JavaMethodSignature.h.en
- JavaMethodSignature.h
- JavaTypeConverter.cpp.en
- JavaTypeConverter.cpp
- JavaTypeConverter.h.en
- JavaTypeConverter.h
- Java_Files.en
- Java_Files
- Model.en
- Model
- Model_Files.en
- Model_Files
- PaymentExceptionConverter.cpp.en
- PaymentExceptionConverter.cpp
- PaymentExceptionConverter.h.en
- PaymentExceptionConverter.h
- Plugins.en
- Plugins
- Private.en
- Private
- Private_Files.en
- Private_Files
- ProductPurchaseResultListenerImpl.cpp.en
- ProductPurchaseResultListenerImpl.cpp
- ProductPurchaseResultListenerImpl.h.en
- ProductPurchaseResultListenerImpl.h
- ProductsResponseListenerImpl.cpp.en
- ProductsResponseListenerImpl.cpp
- ProductsResponseListenerImpl.h.en
- ProductsResponseListenerImpl.h
- Public.en
- Public
- Public_Files.en
- Public_Files
- PurchaseAvailabilityListenerImpl.cpp.en
- PurchaseAvailabilityListenerImpl.cpp
- PurchaseAvailabilityListenerImpl.h.en
- PurchaseAvailabilityListenerImpl.h
- PurchaseEventListenerImpl.cpp.en
- PurchaseEventListenerImpl.cpp
- PurchaseEventListenerImpl.h.en
- PurchaseEventListenerImpl.h
- PurchaseResponseListenerImpl.cpp.en
- PurchaseResponseListenerImpl.cpp
- PurchaseResponseListenerImpl.h.en
- PurchaseResponseListenerImpl.h
- PurchasesResponseListenerImpl.cpp.en
- PurchasesResponseListenerImpl.cpp
- PurchasesResponseListenerImpl.h.en
- PurchasesResponseListenerImpl.h
- ResponseListener.h.en
- ResponseListener.h
- RuStoreCore.Build.cs.en
- RuStoreCore.Build.cs
- RuStoreCore.cpp.en
- RuStoreCore.cpp
- RuStoreCore.h.en
- RuStoreCore.h
- RuStoreCoreUtils.java.en
- RuStoreCoreUtils.java
- RuStoreCore_Files.en
- RuStoreCore_Files
- RuStoreImage.java.en
- RuStoreImage.java
- RuStoreListener.cpp.en
- RuStoreListener.cpp
- RuStoreListener.h.en
- RuStoreListener.h
- RuStorePay.Build.cs.en
- RuStorePay.Build.cs
- RuStorePay.cpp.en
- RuStorePay.cpp
- RuStorePay.h.en
- RuStorePay.h
- RuStorePayIntentFilterActivity.java.en
- RuStorePayIntentFilterActivity.java
- RuStorePay_Files.en
- RuStorePay_Files
- SimpleResponseListener.cpp.en
- SimpleResponseListener.cpp
- SimpleResponseListener.h.en
- SimpleResponseListener.h
- SimpleResponseListenerT.h.en
- SimpleResponseListenerT.h
- Source.en
- Source
- Source_Files.en
- Source_Files
- URuStoreCore.cpp.en
- URuStoreCore.cpp
- URuStoreCore.h.en
- URuStoreCore.h
- URuStorePayAmountLabel.h.en
- URuStorePayAmountLabel.h
- URuStorePayAppUserEmail.h.en
- URuStorePayAppUserEmail.h
- URuStorePayAppUserId.h.en
- URuStorePayAppUserId.h
- URuStorePayCancelTwoStepPurchaseNode.cpp.en
- URuStorePayCancelTwoStepPurchaseNode.cpp
- URuStorePayCancelTwoStepPurchaseNode.h.en
- URuStorePayCancelTwoStepPurchaseNode.h
- URuStorePayClient.cpp.en
- URuStorePayClient.cpp
- URuStorePayClient.h.en
- URuStorePayClient.h
- URuStorePayConfirmTwoStepPurchaseNode.cpp.en
- URuStorePayConfirmTwoStepPurchaseNode.cpp
- URuStorePayConfirmTwoStepPurchaseNode.h.en
- URuStorePayConfirmTwoStepPurchaseNode.h
- URuStorePayCurrency.h.en
- URuStorePayCurrency.h
- URuStorePayDate.h.en
- URuStorePayDate.h
- URuStorePayDescription.h.en
- URuStorePayDescription.h
- URuStorePayDeveloperPayload.h.en
- URuStorePayDeveloperPayload.h
- URuStorePayGetProductsNode.h.en
- URuStorePayGetProductsNode.h
- URuStorePayGetProductstNode.cpp.en
- URuStorePayGetProductstNode.cpp
- URuStorePayGetPurchaseAvailabilityNode.cpp.en
- URuStorePayGetPurchaseAvailabilityNode.cpp
- URuStorePayGetPurchaseAvailabilityNode.h.en
- URuStorePayGetPurchaseAvailabilityNode.h
- URuStorePayGetPurchaseNode.cpp.en
- URuStorePayGetPurchaseNode.cpp
- URuStorePayGetPurchaseNode.h
- URuStorePayGetPurchasesNode.cpp.en
- URuStorePayGetPurchasesNode.cpp
- URuStorePayGetPurchasesNode.h.en
- URuStorePayGetPurchasesNode.h
- URuStorePayGetUserAuthorizationStatusNode.cpp.en
- URuStorePayGetUserAuthorizationStatusNode.cpp
- URuStorePayGetUserAuthorizationStatusNode.h.en
- URuStorePayGetUserAuthorizationStatusNode.h
- URuStorePayInvoiceId.h.en
- URuStorePayInvoiceId.h
- URuStorePayOrderId.h.en
- URuStorePayOrderId.h
- URuStorePayPrice.h.en
- URuStorePayPrice.h
- URuStorePayProductId.h.en
- URuStorePayProductId.h
- URuStorePayPurchaseExtendEventsNode.cpp.en
- URuStorePayPurchaseExtendEventsNode.cpp
- URuStorePayPurchaseExtendEventsNode.h.en
- URuStorePayPurchaseExtendEventsNode.h
- URuStorePayPurchaseId.h.en
- URuStorePayPurchaseId.h
- URuStorePayPurchaseNode.cpp.en
- URuStorePayPurchaseNode.cpp
- URuStorePayPurchaseNode.h.en
- URuStorePayPurchaseNode.h
- URuStorePayPurchaseTwoStepExtendEventsNode.cpp.en
- URuStorePayPurchaseTwoStepExtendEventsNode.cpp
- URuStorePayPurchaseTwoStepExtendEventsNode.h.en
- URuStorePayPurchaseTwoStepExtendEventsNode.h
- URuStorePayPurchaseTwoStepNode.cpp.en
- URuStorePayPurchaseTwoStepNode.cpp
- URuStorePayPurchaseTwoStepNode.h.en
- URuStorePayPurchaseTwoStepNode.h
- URuStorePayQuantity.h.en
- URuStorePayQuantity.h
- URuStorePaySubscriptionInfo.h.en
- URuStorePaySubscriptionInfo.h
- URuStorePayTitle.h.en
- URuStorePayTitle.h
- URuStorePayUpdateAcknowledgementStateNode.cpp.en
- URuStorePayUpdateAcknowledgementStateNode.cpp
- URuStorePayUpdateAcknowledgementStateNode.h.en
- URuStorePayUpdateAcknowledgementStateNode.h
- URuStorePayUrl.h.en
- URuStorePayUrl.h
- UTextureDownloader.cpp.en
- UTextureDownloader.cpp
- UTextureDownloader.h.en
- UTextureDownloader.h
- UnrealPlayerImpl.cpp.en
- UnrealPlayerImpl.cpp
- UnrealPlayerImpl.h.en
- UnrealPlayerImpl.h
- UnrealPlayerWrapper.java.en
- UnrealPlayerWrapper.java
- UpdateAcknowledgementStateListenerImpl.cpp.en
- UpdateAcknowledgementStateListenerImpl.cpp
- UpdateAcknowledgementStateListenerImpl.h.en
- UpdateAcknowledgementStateListenerImpl.h
- docs.en
- docs
- unreal_example.en
- unreal_example
- AndroidJavaClass.cpp.en
- AndroidJavaClass.cpp
- AndroidJavaClass.h.en
- AndroidJavaClass.h
- AndroidJavaLog.cpp.en
- AndroidJavaLog.cpp
- AndroidJavaLog.h.en
- AndroidJavaLog.h
- AndroidJavaObject.cpp.en
- AndroidJavaObject.cpp
- AndroidJavaObject.h.en
- AndroidJavaObject.h
- AsyncNodes.en
- AsyncNodes
- AsyncNodes_Files.en
- AsyncNodes_Files
- CallbackHandler.cpp.en
- CallbackHandler.cpp
- CallbackHandler.h.en
- CallbackHandler.h
- Callbacks.en
- Callbacks
- Callbacks_Files.en
- Callbacks_Files
- CancelTwoStepPurchaseResponseListenerImpl.cpp.en
- CancelTwoStepPurchaseResponseListenerImpl.cpp
- CancelTwoStepPurchaseResponseListenerImpl.h.en
- CancelTwoStepPurchaseResponseListenerImpl.h
- ConfirmTwoStepPurchaseResponseListenerImpl.cpp.en
- ConfirmTwoStepPurchaseResponseListenerImpl.cpp
- ConfirmTwoStepPurchaseResponseListenerImpl.h.en
- ConfirmTwoStepPurchaseResponseListenerImpl.h
- DataConverter.cpp.en
- DataConverter.cpp
- DataConverter.h.en
- DataConverter.h
- EURuStorePayAcknowledgementState.h.en
- EURuStorePayAcknowledgementState.h
- EURuStorePayPreferredPurchaseType.h.en
- EURuStorePayPreferredPurchaseType.h
- EURuStorePayProductPurchaseStatus.h.en
- EURuStorePayProductPurchaseStatus.h
- EURuStorePayProductType.h.en
- EURuStorePayProductType.h
- EURuStorePayPurchaseStatusFilter.h.en
- EURuStorePayPurchaseStatusFilter.h
- EURuStorePayPurchaseType.h.en
- EURuStorePayPurchaseType.h
- EURuStorePaySdkTheme.h.en
- EURuStorePaySdkTheme.h
- EURuStorePaySubscriptionPeriodType.h.en
- EURuStorePaySubscriptionPeriodType.h
- EURuStorePaySubscriptionPurchaseStatus.h.en
- EURuStorePaySubscriptionPurchaseStatus.h
- EURuStorePayUserAuthorizationStatus.h.en
- EURuStorePayUserAuthorizationStatus.h
- ErrorConverter.cpp.en
- ErrorConverter.cpp
- ErrorConverter.h.en
- ErrorConverter.h
- ErrorListener.cpp.en
- ErrorListener.cpp
- ErrorListener.h.en
- ErrorListener.h
- FURuStoreError.cpp.en
- FURuStoreError.cpp
- FURuStoreError.h.en
- FURuStoreError.h
- FURuStoreFeatureAvailabilityResult.h.en
- FURuStoreFeatureAvailabilityResult.h
- FURuStorePayPaymentException.cpp.en
- FURuStorePayPaymentException.cpp
- FURuStorePayPaymentException.h.en
- FURuStorePayPaymentException.h
- FURuStorePayProduct.h.en
- FURuStorePayProduct.h
- FURuStorePayProductPurchase.h.en
- FURuStorePayProductPurchase.h
- FURuStorePayProductPurchaseParams.h.en
- FURuStorePayProductPurchaseParams.h
- FURuStorePayProductPurchaseResult.h.en
- FURuStorePayProductPurchaseResult.h
- FURuStorePayPurchase.h.en
- FURuStorePayPurchase.h
- FURuStorePayPurchaseAvailabilityResult.h.en
- FURuStorePayPurchaseAvailabilityResult.h
- FURuStorePayPurchaseEventResult.h.en
- FURuStorePayPurchaseEventResult.h
- FURuStorePaySubscriptionPeriod.h.en
- FURuStorePaySubscriptionPeriod.h
- FURuStorePaySubscriptionPurchase.h.en
- FURuStorePaySubscriptionPurchase.h
- FeatureAvailabilityListenerImpl.cpp.en
- FeatureAvailabilityListenerImpl.cpp
- FeatureAvailabilityListenerImpl.h.en
- FeatureAvailabilityListenerImpl.h
- GetUserAuthorizationStatusListenerImpl.cpp.en
- GetUserAuthorizationStatusListenerImpl.cpp
- GetUserAuthorizationStatusListenerImpl.h.en
- GetUserAuthorizationStatusListenerImpl.h
- IAndroidClasses.h.en
- IAndroidClasses.h
- IRuStoreListener.java.en
- IRuStoreListener.java
- Internal.en
- Internal
- Internal_Files.en
- Internal_Files
- Java.en
- Java
- JavaActivity.cpp.en
- JavaActivity.cpp
- JavaActivity.h.en
- JavaActivity.h
- JavaApplication.cpp.en
- JavaApplication.cpp
- JavaApplication.h.en
- JavaApplication.h
- JavaMethodSignature.cpp.en
- JavaMethodSignature.cpp
- JavaMethodSignature.h.en
- JavaMethodSignature.h
- JavaTypeConverter.cpp.en
- JavaTypeConverter.cpp
- JavaTypeConverter.h.en
- JavaTypeConverter.h
- Java_Files.en
- Java_Files
- Model.en
- Model
- Model_Files.en
- Model_Files
- PaymentExceptionConverter.cpp.en
- PaymentExceptionConverter.cpp
- PaymentExceptionConverter.h.en
- PaymentExceptionConverter.h
- Plugins.en
- Plugins
- Private.en
- Private
- Private_Files.en
- Private_Files
- ProductPurchaseResultListenerImpl.cpp.en
- ProductPurchaseResultListenerImpl.cpp
- ProductPurchaseResultListenerImpl.h.en
- ProductPurchaseResultListenerImpl.h
- ProductsResponseListenerImpl.cpp.en
- ProductsResponseListenerImpl.cpp
- ProductsResponseListenerImpl.h.en
- ProductsResponseListenerImpl.h
- Public.en
- Public
- Public_Files.en
- Public_Files
- PurchaseAvailabilityListenerImpl.cpp.en
- PurchaseAvailabilityListenerImpl.cpp
- PurchaseAvailabilityListenerImpl.h.en
- PurchaseAvailabilityListenerImpl.h
- PurchaseEventListenerImpl.cpp.en
- PurchaseEventListenerImpl.cpp
- PurchaseEventListenerImpl.h.en
- PurchaseEventListenerImpl.h
- PurchaseResponseListenerImpl.cpp.en
- PurchaseResponseListenerImpl.cpp
- PurchaseResponseListenerImpl.h.en
- PurchaseResponseListenerImpl.h
- PurchasesResponseListenerImpl.cpp.en
- PurchasesResponseListenerImpl.cpp
- PurchasesResponseListenerImpl.h.en
- PurchasesResponseListenerImpl.h
- ResponseListener.h.en
- ResponseListener.h
- RuStoreCore.Build.cs.en
- RuStoreCore.Build.cs
- RuStoreCore.cpp.en
- RuStoreCore.cpp
- RuStoreCore.h.en
- RuStoreCore.h
- RuStoreCoreUtils.java.en
- RuStoreCoreUtils.java
- RuStoreCore_Files.en
- RuStoreCore_Files
- RuStoreImage.java.en
- RuStoreImage.java
- RuStoreListener.cpp.en
- RuStoreListener.cpp
- RuStoreListener.h.en
- RuStoreListener.h
- RuStorePay.Build.cs.en
- RuStorePay.Build.cs
- RuStorePay.cpp.en
- RuStorePay.cpp
- RuStorePay.h.en
- RuStorePay.h
- RuStorePayIntentFilterActivity.java.en
- RuStorePayIntentFilterActivity.java
- RuStorePay_Files.en
- RuStorePay_Files
- SimpleResponseListener.cpp.en
- SimpleResponseListener.cpp
- SimpleResponseListener.h.en
- SimpleResponseListener.h
- SimpleResponseListenerT.h.en
- SimpleResponseListenerT.h
- Source.en
- Source
- Source_Files.en
- Source_Files
- URuStoreCore.cpp.en
- URuStoreCore.cpp
- URuStoreCore.h.en
- URuStoreCore.h
- URuStorePayAmountLabel.h.en
- URuStorePayAmountLabel.h
- URuStorePayAppUserEmail.h.en
- URuStorePayAppUserEmail.h
- URuStorePayAppUserId.h.en
- URuStorePayAppUserId.h
- URuStorePayCancelTwoStepPurchaseNode.cpp.en
- URuStorePayCancelTwoStepPurchaseNode.cpp
- URuStorePayCancelTwoStepPurchaseNode.h.en
- URuStorePayCancelTwoStepPurchaseNode.h
- URuStorePayClient.cpp.en
- URuStorePayClient.cpp
- URuStorePayClient.h.en
- URuStorePayClient.h
- URuStorePayConfirmTwoStepPurchaseNode.cpp.en
- URuStorePayConfirmTwoStepPurchaseNode.cpp
- URuStorePayConfirmTwoStepPurchaseNode.h.en
- URuStorePayConfirmTwoStepPurchaseNode.h
- URuStorePayCurrency.h.en
- URuStorePayCurrency.h
- URuStorePayDate.h.en
- URuStorePayDate.h
- URuStorePayDescription.h.en
- URuStorePayDescription.h
- URuStorePayDeveloperPayload.h.en
- URuStorePayDeveloperPayload.h
- URuStorePayGetProductsNode.h.en
- URuStorePayGetProductsNode.h
- URuStorePayGetProductstNode.cpp.en
- URuStorePayGetProductstNode.cpp
- URuStorePayGetPurchaseAvailabilityNode.cpp.en
- URuStorePayGetPurchaseAvailabilityNode.cpp
- URuStorePayGetPurchaseAvailabilityNode.h.en
- URuStorePayGetPurchaseAvailabilityNode.h
- URuStorePayGetPurchaseNode.cpp.en
- URuStorePayGetPurchaseNode.cpp
- URuStorePayGetPurchaseNode.h
- URuStorePayGetPurchasesNode.cpp.en
- URuStorePayGetPurchasesNode.cpp
- URuStorePayGetPurchasesNode.h.en
- URuStorePayGetPurchasesNode.h
- URuStorePayGetUserAuthorizationStatusNode.cpp.en
- URuStorePayGetUserAuthorizationStatusNode.cpp
- URuStorePayGetUserAuthorizationStatusNode.h.en
- URuStorePayGetUserAuthorizationStatusNode.h
- URuStorePayInvoiceId.h.en
- URuStorePayInvoiceId.h
- URuStorePayOrderId.h.en
- URuStorePayOrderId.h
- URuStorePayPrice.h.en
- URuStorePayPrice.h
- URuStorePayProductId.h.en
- URuStorePayProductId.h
- URuStorePayPurchaseExtendEventsNode.cpp.en
- URuStorePayPurchaseExtendEventsNode.cpp
- URuStorePayPurchaseExtendEventsNode.h.en
- URuStorePayPurchaseExtendEventsNode.h
- URuStorePayPurchaseId.h.en
- URuStorePayPurchaseId.h
- URuStorePayPurchaseNode.cpp.en
- URuStorePayPurchaseNode.cpp
- URuStorePayPurchaseNode.h.en
- URuStorePayPurchaseNode.h
- URuStorePayPurchaseTwoStepExtendEventsNode.cpp.en
- URuStorePayPurchaseTwoStepExtendEventsNode.cpp
- URuStorePayPurchaseTwoStepExtendEventsNode.h.en
- URuStorePayPurchaseTwoStepExtendEventsNode.h
- URuStorePayPurchaseTwoStepNode.cpp.en
- URuStorePayPurchaseTwoStepNode.cpp
- URuStorePayPurchaseTwoStepNode.h.en
- URuStorePayPurchaseTwoStepNode.h
- URuStorePayQuantity.h.en
- URuStorePayQuantity.h
- URuStorePaySubscriptionInfo.h.en
- URuStorePaySubscriptionInfo.h
- URuStorePayTitle.h.en
- URuStorePayTitle.h
- URuStorePayUpdateAcknowledgementStateNode.cpp.en
- URuStorePayUpdateAcknowledgementStateNode.cpp
- URuStorePayUpdateAcknowledgementStateNode.h.en
- URuStorePayUpdateAcknowledgementStateNode.h
- URuStorePayUrl.h.en
- URuStorePayUrl.h
- UTextureDownloader.cpp.en
- UTextureDownloader.cpp
- UTextureDownloader.h.en
- UTextureDownloader.h
- UnrealPlayerImpl.cpp.en
- UnrealPlayerImpl.cpp
- UnrealPlayerImpl.h.en
- UnrealPlayerImpl.h
- UnrealPlayerWrapper.java.en
- UnrealPlayerWrapper.java
- UpdateAcknowledgementStateListenerImpl.cpp.en
- UpdateAcknowledgementStateListenerImpl.cpp
- UpdateAcknowledgementStateListenerImpl.h.en
- UpdateAcknowledgementStateListenerImpl.h
- docs.en
- docs
- unreal_example.en
- unreal_example