// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.PlayerDataStorage
{
///
/// Return results for callbacks to return
///
public enum WriteResult : int
{
///
/// Signifies the data was written successfully, and we should write the data the file
///
ContinueWriting = 1,
///
/// Signifies all data has now been written successfully, and we should upload the data to the cloud
///
CompleteRequest = 2,
///
/// Signifies there was a failure writing the data, and the request should end
///
FailRequest = 3,
///
/// Signifies the request should be canceled, but not due to an error
///
CancelRequest = 4
}
}