All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.AddSchoolConfigRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy