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

com.antgroup.antchain.openapi.bot.models.BaiQrcodeVerifyRespData Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class BaiQrcodeVerifyRespData extends TeaModel {
    // 鉴定结果
    // REAL:通过
    // UNABLE_IDENTIFY:无法鉴定
    @NameInMap("identification_result")
    @Validation(required = true)
    public String identificationResult;

    // 辅助识别结果码
    @NameInMap("identification_code")
    @Validation(required = true)
    public String identificationCode;

    // 辅助识别信息
    @NameInMap("identification_message")
    @Validation(required = true)
    public String identificationMessage;

    // 无法鉴定时的解决方案
    @NameInMap("unable_identify_solution")
    @Validation(required = true)
    public String unableIdentifySolution;

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

    public BaiQrcodeVerifyRespData setIdentificationResult(String identificationResult) {
        this.identificationResult = identificationResult;
        return this;
    }
    public String getIdentificationResult() {
        return this.identificationResult;
    }

    public BaiQrcodeVerifyRespData setIdentificationCode(String identificationCode) {
        this.identificationCode = identificationCode;
        return this;
    }
    public String getIdentificationCode() {
        return this.identificationCode;
    }

    public BaiQrcodeVerifyRespData setIdentificationMessage(String identificationMessage) {
        this.identificationMessage = identificationMessage;
        return this;
    }
    public String getIdentificationMessage() {
        return this.identificationMessage;
    }

    public BaiQrcodeVerifyRespData setUnableIdentifySolution(String unableIdentifySolution) {
        this.unableIdentifySolution = unableIdentifySolution;
        return this;
    }
    public String getUnableIdentifySolution() {
        return this.unableIdentifySolution;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy