com.aliyun.ocr.models.RecognizeVINCodeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocr Show documentation
Show all versions of ocr 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.ocr.models;
import com.aliyun.tea.*;
public class RecognizeVINCodeResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("Data")
@Validation(required = true)
public RecognizeVINCodeResponseData data;
public static RecognizeVINCodeResponse build(java.util.Map map) throws Exception {
RecognizeVINCodeResponse self = new RecognizeVINCodeResponse();
return TeaModel.build(map, self);
}
public static class RecognizeVINCodeResponseData extends TeaModel {
@NameInMap("VinCode")
@Validation(required = true)
public String vinCode;
public static RecognizeVINCodeResponseData build(java.util.Map map) throws Exception {
RecognizeVINCodeResponseData self = new RecognizeVINCodeResponseData();
return TeaModel.build(map, self);
}
}
}