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

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

There is a newer version: 1.12.7
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;

import com.aliyun.tea.*;

public class BaiOcrResponse extends TeaModel {
    // 返回的结果体
    @NameInMap("data")
    @Validation(required = true)
    public String data;

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

    public BaiOcrResponse setData(String data) {
        this.data = data;
        return this;
    }
    public String getData() {
        return this.data;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy