com.aliyun.dingtalkhrm_1_0.models.QueryMicroAppStatusRequest 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 QueryMicroAppStatusRequest extends TeaModel {
@NameInMap("tenantIdList")
public java.util.List tenantIdList;
public static QueryMicroAppStatusRequest build(java.util.Map map) throws Exception {
QueryMicroAppStatusRequest self = new QueryMicroAppStatusRequest();
return TeaModel.build(map, self);
}
public QueryMicroAppStatusRequest setTenantIdList(java.util.List tenantIdList) {
this.tenantIdList = tenantIdList;
return this;
}
public java.util.List getTenantIdList() {
return this.tenantIdList;
}
}