Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class JobIgesOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class JobObjOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/autodesk/client/model/JobPayloadItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public class JobPayloadItem {
public enum TypeEnum {
SVF("svf"),

RVT("rvt"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class JobStepOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class JobStlOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public class JobSvfOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class JobThumbnailOutputPayload {
public enum TypeEnum {
SVF("svf"),

IFC("ifc"),

THUMBNAIL("thumbnail"),

STL("stl"),
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/autodesk/client/model/ManifestChildren.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public enum RoleEnum {

THUMBNAIL("thumbnail"),

IFC("ifc"),

//to solved the issue GetManifest is returning an unhandled role enum
PROPERTYDB("Autodesk.CloudPlatform.PropertyDatabase");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import com.autodesk.client.model.ManifestChildren;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
Expand All @@ -54,6 +55,8 @@ public class ManifestDerivative {
public enum OutputTypeEnum {
STL("stl"),

IFC("ifc"),

STEP("step"),

IGES("iges"),
Expand Down