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

com.aliyun.dingtalktodo_1_0.models.DeleteTodoTaskResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalktodo_1_0.models;

import com.aliyun.tea.*;

public class DeleteTodoTaskResponseBody extends TeaModel {
    // requestId
    @NameInMap("requestId")
    public String requestId;

    // 删除结果
    @NameInMap("result")
    public Boolean result;

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

    public DeleteTodoTaskResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public DeleteTodoTaskResponseBody setResult(Boolean result) {
        this.result = result;
        return this;
    }
    public Boolean getResult() {
        return this.result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy