All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkoauth2_1_0.models.GetPersonalAuthRuleResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // list
    @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 {
        // authItems
        @NameInMap("authItems")
        public java.util.List authItems;

        // resource
        @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 - 2024 Weber Informatics LLC | Privacy Policy