All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkh5package_1_0.models.GetCreateStatusResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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