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

com.aliyun.dingtalkcustomer_service_1_0.models.GetUserSourceListResponseBody 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.dingtalkcustomer_service_1_0.models;

import com.aliyun.tea.*;

public class GetUserSourceListResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

    public static GetUserSourceListResponseBody build(java.util.Map map) throws Exception {
        GetUserSourceListResponseBody self = new GetUserSourceListResponseBody();
        return TeaModel.build(map, self);
    }

    public GetUserSourceListResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetUserSourceListResponseBodyResult extends TeaModel {
        @NameInMap("config")
        public String config;

        @NameInMap("description")
        public String description;

        @NameInMap("id")
        public Long id;

        @NameInMap("name")
        public String name;

        @NameInMap("status")
        public Integer status;

        @NameInMap("vendor")
        public String vendor;

        public static GetUserSourceListResponseBodyResult build(java.util.Map map) throws Exception {
            GetUserSourceListResponseBodyResult self = new GetUserSourceListResponseBodyResult();
            return TeaModel.build(map, self);
        }

        public GetUserSourceListResponseBodyResult setConfig(String config) {
            this.config = config;
            return this;
        }
        public String getConfig() {
            return this.config;
        }

        public GetUserSourceListResponseBodyResult setDescription(String description) {
            this.description = description;
            return this;
        }
        public String getDescription() {
            return this.description;
        }

        public GetUserSourceListResponseBodyResult setId(Long id) {
            this.id = id;
            return this;
        }
        public Long getId() {
            return this.id;
        }

        public GetUserSourceListResponseBodyResult setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

        public GetUserSourceListResponseBodyResult setStatus(Integer status) {
            this.status = status;
            return this;
        }
        public Integer getStatus() {
            return this.status;
        }

        public GetUserSourceListResponseBodyResult setVendor(String vendor) {
            this.vendor = vendor;
            return this;
        }
        public String getVendor() {
            return this.vendor;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy