com.aliyun.dingtalkindustry_1_0.models.CampusGetRenterMemberRequest 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 CampusGetRenterMemberRequest extends TeaModel {
/**
* example:
* 1987215
*/
@NameInMap("renterId")
public Long renterId;
/**
* This parameter is required.
*
* example:
* 1iasndkjas8
*/
@NameInMap("unionId")
public String unionId;
public static CampusGetRenterMemberRequest build(java.util.Map map) throws Exception {
CampusGetRenterMemberRequest self = new CampusGetRenterMemberRequest();
return TeaModel.build(map, self);
}
public CampusGetRenterMemberRequest setRenterId(Long renterId) {
this.renterId = renterId;
return this;
}
public Long getRenterId() {
return this.renterId;
}
public CampusGetRenterMemberRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}