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

com.aliyun.dingtalkdoc_2_0.models.ExportDocResponseBody Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy