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

com.aliyun.dingtalkstorage_1_0.models.DeleteDentriesRequest 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 DeleteDentriesRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("dentryIds") public java.util.List dentryIds; @NameInMap("option") public DeleteDentriesRequestOption option; /** *

This parameter is required.

* * example: *

union_id

*/ @NameInMap("unionId") public String unionId; public static DeleteDentriesRequest build(java.util.Map map) throws Exception { DeleteDentriesRequest self = new DeleteDentriesRequest(); return TeaModel.build(map, self); } public DeleteDentriesRequest setDentryIds(java.util.List dentryIds) { this.dentryIds = dentryIds; return this; } public java.util.List getDentryIds() { return this.dentryIds; } public DeleteDentriesRequest setOption(DeleteDentriesRequestOption option) { this.option = option; return this; } public DeleteDentriesRequestOption getOption() { return this.option; } public DeleteDentriesRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public static class DeleteDentriesRequestOption extends TeaModel { /** * example: *

true

*/ @NameInMap("toRecycleBin") public Boolean toRecycleBin; public static DeleteDentriesRequestOption build(java.util.Map map) throws Exception { DeleteDentriesRequestOption self = new DeleteDentriesRequestOption(); return TeaModel.build(map, self); } public DeleteDentriesRequestOption setToRecycleBin(Boolean toRecycleBin) { this.toRecycleBin = toRecycleBin; return this; } public Boolean getToRecycleBin() { return this.toRecycleBin; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy