Newer
Older
CGTrack / Assets / Oculus / Platform / Scripts / CloudStorageDataStatus.cs
@Pascal Syma Pascal Syma on 25 Jul 2021 596 bytes Initial Commit
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!

namespace Oculus.Platform
{

  using Description = System.ComponentModel.DescriptionAttribute;

  public enum CloudStorageDataStatus : int
  {
    [Description("UNKNOWN")]
    Unknown,

    [Description("IN_SYNC")]
    InSync,

    [Description("NEEDS_DOWNLOAD")]
    NeedsDownload,

    [Description("REMOTE_DOWNLOADING")]
    RemoteDownloading,

    [Description("NEEDS_UPLOAD")]
    NeedsUpload,

    [Description("LOCAL_UPLOADING")]
    LocalUploading,

    [Description("IN_CONFLICT")]
    InConflict,

  }

}