
com.aliyun.dingtalkoauth2_1_0.models.GetPersonalAuthRuleResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkoauth2_1_0.models;
import com.aliyun.tea.*;
public class GetPersonalAuthRuleResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetPersonalAuthRuleResponseBody build(java.util.Map map) throws Exception {
GetPersonalAuthRuleResponseBody self = new GetPersonalAuthRuleResponseBody();
return TeaModel.build(map, self);
}
public GetPersonalAuthRuleResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetPersonalAuthRuleResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("authItems")
public java.util.List authItems;
/**
* This parameter is required.
*
* example:
* Contact.User
*/
@NameInMap("resource")
public String resource;
public static GetPersonalAuthRuleResponseBodyResult build(java.util.Map map) throws Exception {
GetPersonalAuthRuleResponseBodyResult self = new GetPersonalAuthRuleResponseBodyResult();
return TeaModel.build(map, self);
}
public GetPersonalAuthRuleResponseBodyResult setAuthItems(java.util.List authItems) {
this.authItems = authItems;
return this;
}
public java.util.List getAuthItems() {
return this.authItems;
}
public GetPersonalAuthRuleResponseBodyResult setResource(String resource) {
this.resource = resource;
return this;
}
public String getResource() {
return this.resource;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy