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

com.aliyun.dingtalkreport_1_0.models.UserMapValue Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkreport_1_0.models;

import com.aliyun.tea.*;

public class UserMapValue extends TeaModel {
    @NameInMap("userId")
    public String userId;

    @NameInMap("name")
    public String name;

    @NameInMap("deptId")
    public String deptId;

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

    public UserMapValue setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

    public UserMapValue setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public UserMapValue setDeptId(String deptId) {
        this.deptId = deptId;
        return this;
    }
    public String getDeptId() {
        return this.deptId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy