com.aliyun.ocr20191230.models.RecognizeVINCodeRequest 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 RecognizeVINCodeRequest extends TeaModel {
@NameInMap("ImageURL")
public String imageURL;
public static RecognizeVINCodeRequest build(java.util.Map map) throws Exception {
RecognizeVINCodeRequest self = new RecognizeVINCodeRequest();
return TeaModel.build(map, self);
}
public RecognizeVINCodeRequest setImageURL(String imageURL) {
this.imageURL = imageURL;
return this;
}
public String getImageURL() {
return this.imageURL;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy