Skip to content
Merged
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 @@ -68,7 +68,7 @@ public String toString() {
private String modelGuid = null;

@JsonProperty("objectIds")
private List<String> objectIds = new ArrayList<String>();
private List<Integer> objectIds = new ArrayList<Integer>();

public JobObjOutputPayloadAdvanced exportFileStructure(ExportFileStructureEnum exportFileStructure) {
this.exportFileStructure = exportFileStructure;
Expand Down Expand Up @@ -106,7 +106,7 @@ public void setModelGuid(String modelGuid) {
this.modelGuid = modelGuid;
}

public JobObjOutputPayloadAdvanced objectIds(List<String> objectIds) {
public JobObjOutputPayloadAdvanced objectIds(List<Integer> objectIds) {
this.objectIds = objectIds;
return this;
}
Expand All @@ -116,11 +116,11 @@ public JobObjOutputPayloadAdvanced objectIds(List<String> objectIds) {
* @return objectIds
**/
@ApiModelProperty(example = "null", value = "Required for geometry extractions. List object ids to be translated. -1 will extract the entire model. ")
public List<String> getObjectIds() {
public List<Integer> getObjectIds() {
return objectIds;
}

public void setObjectIds(List<String> objectIds) {
public void setObjectIds(List<Integer> objectIds) {
this.objectIds = objectIds;
}

Expand Down