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 {
/**
* example:
* 扩展
*/
@NameInMap("extend")
public String extend;
/**
* example:
* 张三组
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 41239123
*/
@NameInMap("renterId")
public Long renterId;
/**
* example:
* 1
*/
@NameInMap("type")
public String type;
/**
* This parameter is required.
*
* example:
* fksif91273
*/
@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;
}
}