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

com.aliyun.dingtalkresident_1_0.models.AddResidentMemberResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class AddResidentMemberResponseBody extends TeaModel {
    // 用户状态
    @NameInMap("status")
    public Integer status;

    // 用户ID
    @NameInMap("unionId")
    public String unionId;

    // 用户员工ID
    @NameInMap("userId")
    public String userId;

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

    public AddResidentMemberResponseBody setStatus(Integer status) {
        this.status = status;
        return this;
    }
    public Integer getStatus() {
        return this.status;
    }

    public AddResidentMemberResponseBody setUnionId(String unionId) {
        this.unionId = unionId;
        return this;
    }
    public String getUnionId() {
        return this.unionId;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy