com.aliyun.dingtalkdingmi_1_0.models.GetOfficialAccountRobotInfoRequest 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.dingtalkdingmi_1_0.models;
import com.aliyun.tea.*;
public class GetOfficialAccountRobotInfoRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 机器人类型参数,服务窗机器人:1,客户群内机器人:2
*/
@NameInMap("type")
public String type;
public static GetOfficialAccountRobotInfoRequest build(java.util.Map map) throws Exception {
GetOfficialAccountRobotInfoRequest self = new GetOfficialAccountRobotInfoRequest();
return TeaModel.build(map, self);
}
public GetOfficialAccountRobotInfoRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}