![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkh5package_1_0.models.GetCreateStatusResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkh5package_1_0.models;
import com.aliyun.tea.*;
public class GetCreateStatusResponseBody extends TeaModel {
/**
* example:
* 1663743241146
*/
@NameInMap("buildTime")
public Long buildTime;
@NameInMap("finished")
public Boolean finished;
/**
* example:
* 0
*/
@NameInMap("packageSize")
public Long packageSize;
/**
* example:
* 2
*/
@NameInMap("status")
public String status;
/**
* example:
* 1663748308644pjpF
*/
@NameInMap("taskId")
public String taskId;
/**
* example:
* 0.0.1
*/
@NameInMap("version")
public String version;
public static GetCreateStatusResponseBody build(java.util.Map map) throws Exception {
GetCreateStatusResponseBody self = new GetCreateStatusResponseBody();
return TeaModel.build(map, self);
}
public GetCreateStatusResponseBody setBuildTime(Long buildTime) {
this.buildTime = buildTime;
return this;
}
public Long getBuildTime() {
return this.buildTime;
}
public GetCreateStatusResponseBody setFinished(Boolean finished) {
this.finished = finished;
return this;
}
public Boolean getFinished() {
return this.finished;
}
public GetCreateStatusResponseBody setPackageSize(Long packageSize) {
this.packageSize = packageSize;
return this;
}
public Long getPackageSize() {
return this.packageSize;
}
public GetCreateStatusResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetCreateStatusResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
public GetCreateStatusResponseBody setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy