com.aliyun.dingtalkindustry_1_0.models.CampusGetRenterResponseBody 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 CampusGetRenterResponseBody extends TeaModel {
/**
* example:
* ding121313
*/
@NameInMap("bindRenterCorpId")
public String bindRenterCorpId;
/**
* example:
* 1655704317794
*/
@NameInMap("bindTime")
public Long bindTime;
/**
* example:
* 231313
*/
@NameInMap("creditCode")
public String creditCode;
/**
* example:
* 1655704317794
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 扩展
*/
@NameInMap("extend")
public String extend;
/**
* example:
* 名称
*/
@NameInMap("name")
public String name;
/**
* example:
* 101
*/
@NameInMap("renterDeptId")
public Long renterDeptId;
/**
* example:
* 1655704317794
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 1
*/
@NameInMap("state")
public Integer state;
public static CampusGetRenterResponseBody build(java.util.Map map) throws Exception {
CampusGetRenterResponseBody self = new CampusGetRenterResponseBody();
return TeaModel.build(map, self);
}
public CampusGetRenterResponseBody setBindRenterCorpId(String bindRenterCorpId) {
this.bindRenterCorpId = bindRenterCorpId;
return this;
}
public String getBindRenterCorpId() {
return this.bindRenterCorpId;
}
public CampusGetRenterResponseBody setBindTime(Long bindTime) {
this.bindTime = bindTime;
return this;
}
public Long getBindTime() {
return this.bindTime;
}
public CampusGetRenterResponseBody setCreditCode(String creditCode) {
this.creditCode = creditCode;
return this;
}
public String getCreditCode() {
return this.creditCode;
}
public CampusGetRenterResponseBody setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public CampusGetRenterResponseBody setExtend(String extend) {
this.extend = extend;
return this;
}
public String getExtend() {
return this.extend;
}
public CampusGetRenterResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CampusGetRenterResponseBody setRenterDeptId(Long renterDeptId) {
this.renterDeptId = renterDeptId;
return this;
}
public Long getRenterDeptId() {
return this.renterDeptId;
}
public CampusGetRenterResponseBody setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public CampusGetRenterResponseBody setState(Integer state) {
this.state = state;
return this;
}
public Integer getState() {
return this.state;
}
}