com.aliyun.dingtalkcarbon_1_0.models.WriteUserCarbonEnergyResponseBody 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.dingtalkcarbon_1_0.models;
import com.aliyun.tea.*;
public class WriteUserCarbonEnergyResponseBody extends TeaModel {
@NameInMap("result")
public Integer result;
@NameInMap("success")
public Boolean success;
public static WriteUserCarbonEnergyResponseBody build(java.util.Map map) throws Exception {
WriteUserCarbonEnergyResponseBody self = new WriteUserCarbonEnergyResponseBody();
return TeaModel.build(map, self);
}
public WriteUserCarbonEnergyResponseBody setResult(Integer result) {
this.result = result;
return this;
}
public Integer getResult() {
return this.result;
}
public WriteUserCarbonEnergyResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}