com.aliyun.dingtalkimpaas_1_0.models.ListGroupStaffMembersResponseBody 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class ListGroupStaffMembersResponseBody extends TeaModel {
@NameInMap("members")
public java.util.List members;
public static ListGroupStaffMembersResponseBody build(java.util.Map map) throws Exception {
ListGroupStaffMembersResponseBody self = new ListGroupStaffMembersResponseBody();
return TeaModel.build(map, self);
}
public ListGroupStaffMembersResponseBody setMembers(java.util.List members) {
this.members = members;
return this;
}
public java.util.List getMembers() {
return this.members;
}
public static class ListGroupStaffMembersResponseBodyMembers extends TeaModel {
@NameInMap("nick")
public String nick;
@NameInMap("uid")
public String uid;
public static ListGroupStaffMembersResponseBodyMembers build(java.util.Map map) throws Exception {
ListGroupStaffMembersResponseBodyMembers self = new ListGroupStaffMembersResponseBodyMembers();
return TeaModel.build(map, self);
}
public ListGroupStaffMembersResponseBodyMembers setNick(String nick) {
this.nick = nick;
return this;
}
public String getNick() {
return this.nick;
}
public ListGroupStaffMembersResponseBodyMembers setUid(String uid) {
this.uid = uid;
return this;
}
public String getUid() {
return this.uid;
}
}
}