com.aliyun.dingtalkcontact_1_0.models.GetTranslateFileJobResultResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class GetTranslateFileJobResultResponseBody extends TeaModel {
// 0 任务进行中 1 任务处理成功 2 任务处理失败
@NameInMap("status")
public String status;
// 文件内容转译成功后的url,需要用户通过oauth2授权登录在用户侧打开
@NameInMap("url")
public String url;
public static GetTranslateFileJobResultResponseBody build(java.util.Map map) throws Exception {
GetTranslateFileJobResultResponseBody self = new GetTranslateFileJobResultResponseBody();
return TeaModel.build(map, self);
}
public GetTranslateFileJobResultResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetTranslateFileJobResultResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}