LeviLamina
Loading...
Searching...
No Matches
Operation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace EduCloudUtils {
6
7enum class Operation : int {
8 Unknown = 0,
9 GetMetadataForDriveItem = 1,
10 Fetch = 2,
11 GetDownloadUrl = 3,
12 GetFileContents = 4,
13 UploadStub = 5,
14 UploadFileContents = 6,
15 GetDriveItem = 7,
16 CloudImport = 8,
17 CloudExport = 9,
18 DeleteDriveItem = 10,
19 CreateUploadSession = 11,
20 ResumableUpload = 12,
21};
22
23}