com.aliyun.dingtalkdoc_2_0.models.ExportDocResponseBody 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class ExportDocResponseBody extends TeaModel {
/**
* example:
* 12345678
*/
@NameInMap("jobId")
public String jobId;
/**
* example:
* init
*/
@NameInMap("status")
public String status;
public static ExportDocResponseBody build(java.util.Map map) throws Exception {
ExportDocResponseBody self = new ExportDocResponseBody();
return TeaModel.build(map, self);
}
public ExportDocResponseBody setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public ExportDocResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}