com.aliyun.dingtalkai_paa_s_1_0.models.LiandanluExclusiveModelRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkai_paa_s_1_0.models;
import com.aliyun.tea.*;
public class LiandanluExclusiveModelRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* maas1234
*/
@NameInMap("modelId")
public String modelId;
/**
* This parameter is required.
*
* example:
* GENERAL
*/
@NameInMap("module")
public String module;
/**
* This parameter is required.
*
* example:
* OKR是什么
*/
@NameInMap("prompt")
public String prompt;
/**
* This parameter is required.
*
* example:
* 使用该功能的用户id
*/
@NameInMap("userId")
public String userId;
public static LiandanluExclusiveModelRequest build(java.util.Map map) throws Exception {
LiandanluExclusiveModelRequest self = new LiandanluExclusiveModelRequest();
return TeaModel.build(map, self);
}
public LiandanluExclusiveModelRequest setModelId(String modelId) {
this.modelId = modelId;
return this;
}
public String getModelId() {
return this.modelId;
}
public LiandanluExclusiveModelRequest setModule(String module) {
this.module = module;
return this;
}
public String getModule() {
return this.module;
}
public LiandanluExclusiveModelRequest setPrompt(String prompt) {
this.prompt = prompt;
return this;
}
public String getPrompt() {
return this.prompt;
}
public LiandanluExclusiveModelRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}