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

com.aliyun.dingtalkcarbon_1_0.models.WriteUserCarbonResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcarbon_1_0.models;

import com.aliyun.tea.*;

public class WriteUserCarbonResponseBody extends TeaModel {
    // 返回请求成功个数
    @NameInMap("result")
    public Integer result;

    // 请求是否写入成功
    @NameInMap("success")
    public Boolean success;

    public static WriteUserCarbonResponseBody build(java.util.Map map) throws Exception {
        WriteUserCarbonResponseBody self = new WriteUserCarbonResponseBody();
        return TeaModel.build(map, self);
    }

    public WriteUserCarbonResponseBody setResult(Integer result) {
        this.result = result;
        return this;
    }
    public Integer getResult() {
        return this.result;
    }

    public WriteUserCarbonResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy