com.aliyun.dingtalkindustry_1_0.models.CampusUpdateRenterMemberRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CampusUpdateRenterMemberRequest extends TeaModel {
// 扩展字段
@NameInMap("extend")
public String extend;
// 名字
@NameInMap("name")
public String name;
// 租客id
@NameInMap("renterId")
public Long renterId;
// 类型
@NameInMap("type")
public String type;
// 人员唯一标识
@NameInMap("unionId")
public String unionId;
public static CampusUpdateRenterMemberRequest build(java.util.Map map) throws Exception {
CampusUpdateRenterMemberRequest self = new CampusUpdateRenterMemberRequest();
return TeaModel.build(map, self);
}
public CampusUpdateRenterMemberRequest setExtend(String extend) {
this.extend = extend;
return this;
}
public String getExtend() {
return this.extend;
}
public CampusUpdateRenterMemberRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CampusUpdateRenterMemberRequest setRenterId(Long renterId) {
this.renterId = renterId;
return this;
}
public Long getRenterId() {
return this.renterId;
}
public CampusUpdateRenterMemberRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public CampusUpdateRenterMemberRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}