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
8 changes: 4 additions & 4 deletions src/main/java/com/autodesk/client/model/ObjectDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ObjectDetails {
private byte[] sha1 = null;

@JsonProperty("size")
private Integer size = null;
private Long size = null;

@JsonProperty("contentType")
private String contentType = null;
Expand Down Expand Up @@ -132,7 +132,7 @@ public void setSha1(byte[] sha1) {
this.sha1 = sha1;
}

public ObjectDetails size(Integer size) {
public ObjectDetails size(Long size) {
this.size = size;
return this;
}
Expand All @@ -142,11 +142,11 @@ public ObjectDetails size(Integer size) {
* @return size
**/
@ApiModelProperty(example = "null", value = "Object size")
public Integer getSize() {
public Long getSize() {
return size;
}

public void setSize(Integer size) {
public void setSize(Long size) {
this.size = size;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ObjectFullDetails {
private byte[] sha1 = null;

@JsonProperty("size")
private Integer size = null;
private Long size = null;

@JsonProperty("contentType")
private String contentType = null;
Expand Down Expand Up @@ -141,7 +141,7 @@ public void setSha1(byte[] sha1) {
this.sha1 = sha1;
}

public ObjectFullDetails size(Integer size) {
public ObjectFullDetails size(Long size) {
this.size = size;
return this;
}
Expand All @@ -151,11 +151,11 @@ public ObjectFullDetails size(Integer size) {
* @return size
**/
@ApiModelProperty(example = "null", value = "Object size")
public Integer getSize() {
public Long getSize() {
return size;
}

public void setSize(Integer size) {
public void setSize(Long size) {
this.size = size;
}

Expand Down