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