com.aliyun.dingtalkstorage_1_0.models.GetDentriesRequest 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.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class GetDentriesRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("dentryIds")
public java.util.List dentryIds;
@NameInMap("option")
public GetDentriesRequestOption option;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("unionId")
public String unionId;
public static GetDentriesRequest build(java.util.Map map) throws Exception {
GetDentriesRequest self = new GetDentriesRequest();
return TeaModel.build(map, self);
}
public GetDentriesRequest setDentryIds(java.util.List dentryIds) {
this.dentryIds = dentryIds;
return this;
}
public java.util.List getDentryIds() {
return this.dentryIds;
}
public GetDentriesRequest setOption(GetDentriesRequestOption option) {
this.option = option;
return this;
}
public GetDentriesRequestOption getOption() {
return this.option;
}
public GetDentriesRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public static class GetDentriesRequestOption extends TeaModel {
@NameInMap("appIdsForAppProperties")
public java.util.List appIdsForAppProperties;
/**
* example:
* true
*/
@NameInMap("withThumbnail")
public Boolean withThumbnail;
public static GetDentriesRequestOption build(java.util.Map map) throws Exception {
GetDentriesRequestOption self = new GetDentriesRequestOption();
return TeaModel.build(map, self);
}
public GetDentriesRequestOption setAppIdsForAppProperties(java.util.List appIdsForAppProperties) {
this.appIdsForAppProperties = appIdsForAppProperties;
return this;
}
public java.util.List getAppIdsForAppProperties() {
return this.appIdsForAppProperties;
}
public GetDentriesRequestOption setWithThumbnail(Boolean withThumbnail) {
this.withThumbnail = withThumbnail;
return this;
}
public Boolean getWithThumbnail() {
return this.withThumbnail;
}
}
}