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


Types

Name
enum class uint8 EURuStoreUpdateFlowResult { UMETA =(DisplayName = “RESULT_OK”), UMETA =(DisplayName = “RESULT_OK”), UMETA =(DisplayName = “RESULT_OK”)}
Information about the update result.

enum EURuStoreUpdateFlowResult

Enumerator Value Description
UMETA =(DisplayName “RESULT_OK”) Update completed, the code may not be received because the application terminates at the time of update.
UMETA =(DisplayName “RESULT_OK”) Flow interrupted by the user or an error occurred. It is expected that upon receiving this code, the application should be terminated.
UMETA =(DisplayName “RESULT_OK”) RuStore is not installed, or the installed version does not support forced update (RuStore versionCode < 191).

Information about the update result.

Source code

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

#include "EURuStoreUpdateFlowResult.generated.h"

UENUM(BlueprintType)
enum class EURuStoreUpdateFlowResult : uint8
{
    RESULT_OK UMETA(DisplayName = "RESULT_OK"),
    
    RESULT_CANCELED UMETA(DisplayName = "RESULT_CANCELED"),
    
    ACTIVITY_NOT_FOUND UMETA(DisplayName = "ACTIVITY_NOT_FOUND")
};

Назад