com.aliyun.dingtalkservice_group_1_0.models.QueryGroupResponseBody 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class QueryGroupResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 234
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* 钉钉专属服务群
*/
@NameInMap("groupName")
public String groupName;
/**
* This parameter is required.
*
* example:
* https://qr.dingtalk.com/xxxxxxx
*/
@NameInMap("groupUrl")
public String groupUrl;
/**
* This parameter is required.
*
* example:
* cidxxxxx==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* xjfjdsiw
*/
@NameInMap("openGroupSetId")
public String openGroupSetId;
/**
* This parameter is required.
*
* example:
* xkjhfker
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* This parameter is required.
*
* example:
* jikwrjcowa
*/
@NameInMap("robotCode")
public String robotCode;
/**
* This parameter is required.
*
* example:
* 服务小钉
*/
@NameInMap("robotName")
public String robotName;
public static QueryGroupResponseBody build(java.util.Map map) throws Exception {
QueryGroupResponseBody self = new QueryGroupResponseBody();
return TeaModel.build(map, self);
}
public QueryGroupResponseBody setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public QueryGroupResponseBody setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public QueryGroupResponseBody setGroupUrl(String groupUrl) {
this.groupUrl = groupUrl;
return this;
}
public String getGroupUrl() {
return this.groupUrl;
}
public QueryGroupResponseBody setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public QueryGroupResponseBody setOpenGroupSetId(String openGroupSetId) {
this.openGroupSetId = openGroupSetId;
return this;
}
public String getOpenGroupSetId() {
return this.openGroupSetId;
}
public QueryGroupResponseBody setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public QueryGroupResponseBody setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
public QueryGroupResponseBody setRobotName(String robotName) {
this.robotName = robotName;
return this;
}
public String getRobotName() {
return this.robotName;
}
}