com.aliyun.dingtalkhrm_1_0.models.QueryMicroAppViewRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class QueryMicroAppViewRequest extends TeaModel {
@NameInMap("tenantIdList")
public java.util.List tenantIdList;
/**
* example:
* 2163515669935611
*/
@NameInMap("viewUserId")
public String viewUserId;
public static QueryMicroAppViewRequest build(java.util.Map map) throws Exception {
QueryMicroAppViewRequest self = new QueryMicroAppViewRequest();
return TeaModel.build(map, self);
}
public QueryMicroAppViewRequest setTenantIdList(java.util.List tenantIdList) {
this.tenantIdList = tenantIdList;
return this;
}
public java.util.List getTenantIdList() {
return this.tenantIdList;
}
public QueryMicroAppViewRequest setViewUserId(String viewUserId) {
this.viewUserId = viewUserId;
return this;
}
public String getViewUserId() {
return this.viewUserId;
}
}