com.aliyun.ocr20191230.models.GetAsyncJobResultResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocr20191230 Show documentation
Show all versions of ocr20191230 Show documentation
Aliyun OCR SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ocr20191230.models;
import com.aliyun.tea.*;
public class GetAsyncJobResultResponseBody extends TeaModel {
@NameInMap("Data")
public GetAsyncJobResultResponseBodyData data;
@NameInMap("RequestId")
public String requestId;
public static GetAsyncJobResultResponseBody build(java.util.Map map) throws Exception {
GetAsyncJobResultResponseBody self = new GetAsyncJobResultResponseBody();
return TeaModel.build(map, self);
}
public GetAsyncJobResultResponseBody setData(GetAsyncJobResultResponseBodyData data) {
this.data = data;
return this;
}
public GetAsyncJobResultResponseBodyData getData() {
return this.data;
}
public GetAsyncJobResultResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetAsyncJobResultResponseBodyData extends TeaModel {
@NameInMap("ErrorCode")
public String errorCode;
@NameInMap("ErrorMessage")
public String errorMessage;
@NameInMap("JobId")
public String jobId;
@NameInMap("Result")
public String result;
@NameInMap("Status")
public String status;
public static GetAsyncJobResultResponseBodyData build(java.util.Map map) throws Exception {
GetAsyncJobResultResponseBodyData self = new GetAsyncJobResultResponseBodyData();
return TeaModel.build(map, self);
}
public GetAsyncJobResultResponseBodyData setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public GetAsyncJobResultResponseBodyData setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public GetAsyncJobResultResponseBodyData setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public GetAsyncJobResultResponseBodyData setResult(String result) {
this.result = result;
return this;
}
public String getResult() {
return this.result;
}
public GetAsyncJobResultResponseBodyData setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy