6f5f044095
* compiles with relevant deletions * Test fixes * fix type loading * type load for tests * speckle objects renamespace * rename Core to Sdk * Fix test references * tests renaming * rename logging * fmt * start of adding an attribute to all base types * convert all types and do basic test * Fix most tests * fix more tests * fmt * Build fix * add changes and more tests * Fix tests * Fix integration tests
11 lines
257 B
C#
11 lines
257 B
C#
namespace Speckle.Sdk.Api.GraphQL.Enums;
|
|
|
|
//This enum isn't explicitly defined in the schema, instead its usages are int typed (But represent an enum)
|
|
public enum FileUploadConversionStatus
|
|
{
|
|
Queued = 0,
|
|
Processing = 1,
|
|
Success = 2,
|
|
Error = 3,
|
|
}
|