com.aliyun.dingtalkh3yun_1_0.models.GetAppsRequest 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class GetAppsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* All
*/
@NameInMap("queryType")
public String queryType;
@NameInMap("values")
public java.util.List values;
public static GetAppsRequest build(java.util.Map map) throws Exception {
GetAppsRequest self = new GetAppsRequest();
return TeaModel.build(map, self);
}
public GetAppsRequest setQueryType(String queryType) {
this.queryType = queryType;
return this;
}
public String getQueryType() {
return this.queryType;
}
public GetAppsRequest setValues(java.util.List values) {
this.values = values;
return this;
}
public java.util.List getValues() {
return this.values;
}
}