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

com.aliyun.dingtalkresident_1_0.models.RemoveResidentMemberRequest 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.dingtalkresident_1_0.models;

import com.aliyun.tea.*;

public class RemoveResidentMemberRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

0

*/ @NameInMap("deptId") public Long deptId; /** *

This parameter is required.

*/ @NameInMap("unionId") public String unionId; /** * example: *

111112***

*/ @NameInMap("userId") public String userId; public static RemoveResidentMemberRequest build(java.util.Map map) throws Exception { RemoveResidentMemberRequest self = new RemoveResidentMemberRequest(); return TeaModel.build(map, self); } public RemoveResidentMemberRequest setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public RemoveResidentMemberRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public RemoveResidentMemberRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy