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


Types

Name
enum class uint8 EURuStorePurchaseState { UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”), UMETA =(DisplayName = “CREATED”)}
Purchase state.

enum EURuStorePurchaseState

Enumerator Value Description
UMETA =(DisplayName “CREATED”) Purchase created.
UMETA =(DisplayName “CREATED”) Invoice created, purchase awaits payment.
UMETA =(DisplayName “CREATED”) Payment for non-consumable item completed successfully
UMETA =(DisplayName “CREATED”) Purchase awaits confirmation from developer. Only consumable item purchases — intermediate status, buyer’s funds are reserved.
UMETA =(DisplayName “CREATED”) Purchase cancelled — payment was not made or a refund was issued to the buyer. For subscriptions, after a refund the purchase does not transition to CANCELLED.
UMETA =(DisplayName “CREATED”) Payment for consumable item completed successfully.
UMETA =(DisplayName “CREATED”) For subscriptions — the subscription entered HOLD period or closed.
UMETA =(DisplayName “CREATED”) For subscriptions — the subscription entered HOLD period.
UMETA =(DisplayName “CREATED”) Subscription closed.
UMETA =(DisplayName “CREATED”) Value not defined.

Purchase state.

Source code

// Copyright Epic Games, Inc. All Rights Reserved.

#include "EURuStorePurchaseState.generated.h"

UENUM(BlueprintType)
enum class EURuStorePurchaseState : uint8
{
    CREATED UMETA(DisplayName = "CREATED"),

    INVOICE_CREATED UMETA(DisplayName = "INVOICE_CREATED"),
    
    CONFIRMED UMETA(DisplayName = "CONFIRMED"),
    
    PAID UMETA(DisplayName = "PAID UMETA"),
    
    CANCELLED UMETA(DisplayName = "CANCELLED"),
    
    CONSUMED UMETA(DisplayName = "CONSUMED"),
    
    CLOSED UMETA(DisplayName = "CLOSED"),
    
    PAUSED UMETA(DisplayName = "PAUSED"),
    
    TERMINATED UMETA(DisplayName = "TERMINATED"),
    
    UNKNOWN UMETA(DisplayName = "UNKNOWN")
};
Назад