All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkimpaas_1_0.models.ListGroupStaffMembersResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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 {
    /**
     * 

This parameter is required.

*/ @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; /** *

This parameter is required.

*/ @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy