![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.HrmAuthResourcesQueryResponseBody 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 HrmAuthResourcesQueryResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static HrmAuthResourcesQueryResponseBody build(java.util.Map map) throws Exception {
HrmAuthResourcesQueryResponseBody self = new HrmAuthResourcesQueryResponseBody();
return TeaModel.build(map, self);
}
public HrmAuthResourcesQueryResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class HrmAuthResourcesQueryResponseBodyResult extends TeaModel {
@NameInMap("authorized")
public Boolean authorized;
/**
* example:
* /signSetting/manage/*
*/
@NameInMap("resourceId")
public String resourceId;
public static HrmAuthResourcesQueryResponseBodyResult build(java.util.Map map) throws Exception {
HrmAuthResourcesQueryResponseBodyResult self = new HrmAuthResourcesQueryResponseBodyResult();
return TeaModel.build(map, self);
}
public HrmAuthResourcesQueryResponseBodyResult setAuthorized(Boolean authorized) {
this.authorized = authorized;
return this;
}
public Boolean getAuthorized() {
return this.authorized;
}
public HrmAuthResourcesQueryResponseBodyResult setResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
public String getResourceId() {
return this.resourceId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy