API/Autodoc/Classes/FURuStoreSuccess.en.md


FURuStoreSuccess

Result of successful completion of digital goods purchase.

#include <FURuStoreSuccess.h>

Inherits from FURuStorePaymentResult

Public Functions

Name
FURuStoreSuccess()
Constructor.
virtual FString GetTypeName() override
Get the type name.

Public Attributes

Name
FString orderId — Unique payment identifier generated by the application (optional parameter). If you specify this parameter in your system, you will receive it in the response when working with the API. If not specified, it will be generated automatically (uuid). Maximum length is 150 characters.
FString purchaseId — Purchase identifier.
FString productId — Product identifier that was assigned to the product in the RuStore console.
FString invoiceId — Invoice identifier.
FString subscriptionToken — Token for validating the purchase on the server.
bool sandbox — Determines whether the payment is test. Values can be true or false, where true denotes a test payment and false denotes a real one.

Additional inherited members

Public Functions inherited from FURuStorePaymentResult

Name
virtual ~FURuStorePaymentResult()
Destructor.

function FURuStoreSuccess

inline FURuStoreSuccess()

Constructor.

function GetTypeName

inline virtual FString GetTypeName() override

Get the type name.

Reimplements: FURuStorePaymentResult::GetTypeName

variable orderId

FString orderId;

Unique payment identifier generated by the application (optional parameter). If you specify this parameter in your system, you will receive it in the response when working with the API. If not specified, it will be generated automatically (uuid). Maximum length is 150 characters.

variable purchaseId

FString purchaseId;

Purchase identifier.

variable productId

FString productId;

Product identifier that was assigned to the product in the RuStore console.

variable invoiceId

FString invoiceId;

Invoice identifier.

variable subscriptionToken

FString subscriptionToken;

Token for validating the purchase on the server.

variable sandbox

bool sandbox;

Determines whether the payment is test. Values can be true or false, where true denotes a test payment and false denotes a real one.


Назад