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

com.aliyun.dingtalkindustry_1_0.models.QueryUserRolesResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class QueryUserRolesResponseBody extends TeaModel {
    @NameInMap("content")
    public java.util.List content;

    public static QueryUserRolesResponseBody build(java.util.Map map) throws Exception {
        QueryUserRolesResponseBody self = new QueryUserRolesResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryUserRolesResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

    public static class QueryUserRolesResponseBodyContent extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

roleCode

*/ @NameInMap("roleCode") public String roleCode; /** *

This parameter is required.

* * example: *

roleNem

*/ @NameInMap("roleName") public String roleName; public static QueryUserRolesResponseBodyContent build(java.util.Map map) throws Exception { QueryUserRolesResponseBodyContent self = new QueryUserRolesResponseBodyContent(); return TeaModel.build(map, self); } public QueryUserRolesResponseBodyContent setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public QueryUserRolesResponseBodyContent setRoleName(String roleName) { this.roleName = roleName; return this; } public String getRoleName() { return this.roleName; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy