com.aliyun.dingtalkedu_1_0.models.AddSchoolConfigRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class AddSchoolConfigRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 操作人id
*/
@NameInMap("operatorId")
public String operatorId;
/**
* This parameter is required.
*
* example:
* 操作人名称
*/
@NameInMap("operatorName")
public String operatorName;
/**
* This parameter is required.
*
* example:
* 测温上限
*/
@NameInMap("temperatureUpLimit")
public Long temperatureUpLimit;
public static AddSchoolConfigRequest build(java.util.Map map) throws Exception {
AddSchoolConfigRequest self = new AddSchoolConfigRequest();
return TeaModel.build(map, self);
}
public AddSchoolConfigRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public AddSchoolConfigRequest setOperatorName(String operatorName) {
this.operatorName = operatorName;
return this;
}
public String getOperatorName() {
return this.operatorName;
}
public AddSchoolConfigRequest setTemperatureUpLimit(Long temperatureUpLimit) {
this.temperatureUpLimit = temperatureUpLimit;
return this;
}
public Long getTemperatureUpLimit() {
return this.temperatureUpLimit;
}
}