com.aliyun.ocr20191230.models.RecognizeDrivingLicenseAdvanceRequest 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 RecognizeDrivingLicenseAdvanceRequest extends TeaModel {
@NameInMap("ImageURL")
public java.io.InputStream imageURLObject;
@NameInMap("Side")
public String side;
public static RecognizeDrivingLicenseAdvanceRequest build(java.util.Map map) throws Exception {
RecognizeDrivingLicenseAdvanceRequest self = new RecognizeDrivingLicenseAdvanceRequest();
return TeaModel.build(map, self);
}
public RecognizeDrivingLicenseAdvanceRequest setImageURLObject(java.io.InputStream imageURLObject) {
this.imageURLObject = imageURLObject;
return this;
}
public java.io.InputStream getImageURLObject() {
return this.imageURLObject;
}
public RecognizeDrivingLicenseAdvanceRequest setSide(String side) {
this.side = side;
return this;
}
public String getSide() {
return this.side;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy