API/Autodoc/Files/RuStorePayProductPurchaseResult.gd.en.md


Source code

# @brief Result of successful completion of digital goods purchase.
class_name RuStorePayProductPurchaseResult extends RefCounted

# @brief Account identifier.
var invoiceId: RuStorePayInvoiceId = null
    
#   Maximum length is 150 characters.
var orderId: RuStorePayOrderId = null

# @brief Identifier of the product that was assigned to the product in the RuStore console.
var productId: RuStorePayProductId = null

# @brief Product type.
var productType: ERuStorePayProductType.Item = 0

# @brief Purchase identifier.
var purchaseId: RuStorePayPurchaseId = null

# @brief Purchase type.
var purchaseType: ERuStorePayPurchaseType.Item = 0

# @brief Quantity of the purchased product.
var quantity: RuStorePayQuantity = null

#   Values can be true or false, where true indicates a test payment and false indicates a real one.
var sandbox: bool = false

Назад