com.aliyun.ocr20191230.models.RecognizeBusinessLicenseResponse 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 RecognizeBusinessLicenseResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("statusCode")
@Validation(required = true)
public Integer statusCode;
@NameInMap("body")
@Validation(required = true)
public RecognizeBusinessLicenseResponseBody body;
public static RecognizeBusinessLicenseResponse build(java.util.Map map) throws Exception {
RecognizeBusinessLicenseResponse self = new RecognizeBusinessLicenseResponse();
return TeaModel.build(map, self);
}
public RecognizeBusinessLicenseResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public RecognizeBusinessLicenseResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public RecognizeBusinessLicenseResponse setBody(RecognizeBusinessLicenseResponseBody body) {
this.body = body;
return this;
}
public RecognizeBusinessLicenseResponseBody getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy