com.aliyun.dingtalkwiki_2_0.models.GetTeamResponseBody 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.dingtalkwiki_2_0.models;
import com.aliyun.tea.*;
public class GetTeamResponseBody extends TeaModel {
@NameInMap("team")
public GetTeamResponseBodyTeam team;
public static GetTeamResponseBody build(java.util.Map map) throws Exception {
GetTeamResponseBody self = new GetTeamResponseBody();
return TeaModel.build(map, self);
}
public GetTeamResponseBody setTeam(GetTeamResponseBodyTeam team) {
this.team = team;
return this;
}
public GetTeamResponseBodyTeam getTeam() {
return this.team;
}
public static class GetTeamResponseBodyTeamIcon extends TeaModel {
/**
* example:
* URL
*/
@NameInMap("type")
public String type;
/**
* example:
* icon_url
*/
@NameInMap("value")
public String value;
public static GetTeamResponseBodyTeamIcon build(java.util.Map map) throws Exception {
GetTeamResponseBodyTeamIcon self = new GetTeamResponseBodyTeamIcon();
return TeaModel.build(map, self);
}
public GetTeamResponseBodyTeamIcon setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetTeamResponseBodyTeamIcon setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class GetTeamResponseBodyTeam extends TeaModel {
/**
* example:
* corp_id
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* team_cover
*/
@NameInMap("cover")
public String cover;
/**
* example:
* team_create_time
*/
@NameInMap("createTime")
public String createTime;
/**
* example:
* team_creator_id
*/
@NameInMap("creatorId")
public String creatorId;
/**
* example:
* team_description
*/
@NameInMap("description")
public String description;
@NameInMap("icon")
public GetTeamResponseBodyTeamIcon icon;
/**
* example:
* team_modified_time
*/
@NameInMap("modifiedTime")
public String modifiedTime;
/**
* example:
* team_modifier_id
*/
@NameInMap("modifierId")
public String modifierId;
/**
* example:
* team_name
*/
@NameInMap("name")
public String name;
/**
* example:
* team_id
*/
@NameInMap("teamId")
public String teamId;
public static GetTeamResponseBodyTeam build(java.util.Map map) throws Exception {
GetTeamResponseBodyTeam self = new GetTeamResponseBodyTeam();
return TeaModel.build(map, self);
}
public GetTeamResponseBodyTeam setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetTeamResponseBodyTeam setCover(String cover) {
this.cover = cover;
return this;
}
public String getCover() {
return this.cover;
}
public GetTeamResponseBodyTeam setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetTeamResponseBodyTeam setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetTeamResponseBodyTeam setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetTeamResponseBodyTeam setIcon(GetTeamResponseBodyTeamIcon icon) {
this.icon = icon;
return this;
}
public GetTeamResponseBodyTeamIcon getIcon() {
return this.icon;
}
public GetTeamResponseBodyTeam setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetTeamResponseBodyTeam setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetTeamResponseBodyTeam setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetTeamResponseBodyTeam setTeamId(String teamId) {
this.teamId = teamId;
return this;
}
public String getTeamId() {
return this.teamId;
}
}
}