All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ocr.models.RecognizeVINCodeResponse Maven / Gradle / Ivy

Go to download

Aliyun OCR SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 1.0.4
Show newest version
// 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);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy