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

com.aliyun.dingtalkstorage_1_0.models.DeleteDentryResponseBody 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.dingtalkstorage_1_0.models;

import com.aliyun.tea.*;

public class DeleteDentryResponseBody extends TeaModel {
    /**
     * example:
     * 

true

*/ @NameInMap("async") public Boolean async; /** * example: *

task_id

*/ @NameInMap("taskId") public String taskId; public static DeleteDentryResponseBody build(java.util.Map map) throws Exception { DeleteDentryResponseBody self = new DeleteDentryResponseBody(); return TeaModel.build(map, self); } public DeleteDentryResponseBody setAsync(Boolean async) { this.async = async; return this; } public Boolean getAsync() { return this.async; } public DeleteDentryResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy