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


Types

Name
enum class uint8 EURuStorePaySubscriptionPurchaseStatus { UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”), UMETA =(DisplayName = “INVOICE_CREATED”)}
Purchase status.

enum EURuStorePaySubscriptionPurchaseStatus

Enumerator Value Description
UMETA =(DisplayName “INVOICE_CREATED”) An invoice for payment has been created; the purchase is awaiting payment.
UMETA =(DisplayName “INVOICE_CREATED”) The purchase was cancelled by the buyer.
UMETA =(DisplayName “INVOICE_CREATED”) The time to pay for the purchase has expired.
UMETA =(DisplayName “INVOICE_CREATED”) Payment has been started.
UMETA =(DisplayName “INVOICE_CREATED”) The purchase was rejected (e.g., due to insufficient funds).
UMETA =(DisplayName “INVOICE_CREATED”) The subscription is active.
UMETA =(DisplayName “INVOICE_CREATED”) The subscription is paused due to payment issues.
UMETA =(DisplayName “INVOICE_CREATED”) The subscription charge attempts have run out (all were unsuccessful). The subscription was closed automatically due to payment issues.
UMETA =(DisplayName “INVOICE_CREATED”) The subscription was cancelled by the user or the developer. The paid period has expired and the subscription is closed.

Purchase status.

Source code

#include "EURuStorePaySubscriptionPurchaseStatus.generated.h"

UENUM(BlueprintType)
enum class EURuStorePaySubscriptionPurchaseStatus : uint8
{
    INVOICE_CREATED UMETA(DisplayName = "INVOICE_CREATED"),

    CANCELLED UMETA(DisplayName = "CANCELLED"),
    
    EXPIRED UMETA(DisplayName = "EXPIRED"),

    PROCESSING UMETA(DisplayName = "PROCESSING"),
    
    REJECTED UMETA(DisplayName = "REJECTED"),
    
    ACTIVE UMETA(DisplayName = "ACTIVE"),

    PAUSED UMETA(DisplayName = "PAUSED"),

    TERMINATED UMETA(DisplayName = "TERMINATED"),

    CLOSED UMETA(DisplayName = "CLOSED")
};
Назад