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

com.antgroup.antchain.openapi.das.models.BasicCarInfo Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.das.models;

import com.aliyun.tea.*;

public class BasicCarInfo extends TeaModel {
    // 号牌号码
    @NameInMap("license_no")
    @Validation(required = true)
    public String licenseNo;

    // 号牌种类,枚举值
    @NameInMap("license_type")
    @Validation(required = true)
    public String licenseType;

    // 车架号
    @NameInMap("vin")
    @Validation(required = true)
    public String vin;

    // 发动机号
    @NameInMap("engine_no")
    @Validation(required = true)
    public String engineNo;

    public static BasicCarInfo build(java.util.Map map) throws Exception {
        BasicCarInfo self = new BasicCarInfo();
        return TeaModel.build(map, self);
    }

    public BasicCarInfo setLicenseNo(String licenseNo) {
        this.licenseNo = licenseNo;
        return this;
    }
    public String getLicenseNo() {
        return this.licenseNo;
    }

    public BasicCarInfo setLicenseType(String licenseType) {
        this.licenseType = licenseType;
        return this;
    }
    public String getLicenseType() {
        return this.licenseType;
    }

    public BasicCarInfo setVin(String vin) {
        this.vin = vin;
        return this;
    }
    public String getVin() {
        return this.vin;
    }

    public BasicCarInfo setEngineNo(String engineNo) {
        this.engineNo = engineNo;
        return this;
    }
    public String getEngineNo() {
        return this.engineNo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy