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

com.antgroup.antchain.openapi.bot.models.IdListView 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 IdListView extends TeaModel {
    // 数据id
    @NameInMap("data_id")
    @Validation(required = true)
    public Long dataId;

    // 数据名称
    @NameInMap("data_name")
    @Validation(required = true)
    public String dataName;

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

    public IdListView setDataId(Long dataId) {
        this.dataId = dataId;
        return this;
    }
    public Long getDataId() {
        return this.dataId;
    }

    public IdListView setDataName(String dataName) {
        this.dataName = dataName;
        return this;
    }
    public String getDataName() {
        return this.dataName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy