com.aliyun.dingtalkcontact_1_0.models.GetTranslateFileJobResultRequest 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 GetTranslateFileJobResultRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* fXrgPrvsNiZNa8RWis9Nk1SY
*/
@NameInMap("jobId")
public String jobId;
public static GetTranslateFileJobResultRequest build(java.util.Map map) throws Exception {
GetTranslateFileJobResultRequest self = new GetTranslateFileJobResultRequest();
return TeaModel.build(map, self);
}
public GetTranslateFileJobResultRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
}