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


Classes

Name
struct FURuStoreCancelled — The purchase request was sent, but the user closed the payment sheet on their device, and the payment result is unknown.

Source code

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

#include "FURuStoreCancelled.generated.h"

USTRUCT(BlueprintType)
struct RUSTOREBILLING_API FURuStoreCancelled : public FURuStorePaymentResult
{
    GENERATED_USTRUCT_BODY()

    
    FURuStoreCancelled()
    {
        purchaseId = "";
        sandbox = false;
    }

    UPROPERTY(BlueprintReadOnly)
    FString purchaseId;

    UPROPERTY(BlueprintReadOnly)
    bool sandbox;

    virtual FString GetTypeName() override { return "FURuStoreCancelled"; }
};

Назад