
com.aliyun.dingtalkindustry_1_0.models.ChatAIListDatasetRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class ChatAIListDatasetRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 111111
*/
@NameInMap("appId")
public Long appId;
public static ChatAIListDatasetRequest build(java.util.Map map) throws Exception {
ChatAIListDatasetRequest self = new ChatAIListDatasetRequest();
return TeaModel.build(map, self);
}
public ChatAIListDatasetRequest setAppId(Long appId) {
this.appId = appId;
return this;
}
public Long getAppId() {
return this.appId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy