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

com.aliyun.dingtalkindustry_1_0.models.SupplyListPartnerManagersResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

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

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

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

    public static class SupplyListPartnerManagersResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

56789123

*/ @NameInMap("deptId") public String deptId; /** * example: *

对接部门名称

*/ @NameInMap("deptName") public String deptName; /** * example: *

user

*/ @NameInMap("interfaceType") public String interfaceType; /** * example: *

121234567

*/ @NameInMap("userId") public String userId; /** * example: *

名称

*/ @NameInMap("userName") public String userName; public static SupplyListPartnerManagersResponseBodyResult build(java.util.Map map) throws Exception { SupplyListPartnerManagersResponseBodyResult self = new SupplyListPartnerManagersResponseBodyResult(); return TeaModel.build(map, self); } public SupplyListPartnerManagersResponseBodyResult setDeptId(String deptId) { this.deptId = deptId; return this; } public String getDeptId() { return this.deptId; } public SupplyListPartnerManagersResponseBodyResult setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public SupplyListPartnerManagersResponseBodyResult setInterfaceType(String interfaceType) { this.interfaceType = interfaceType; return this; } public String getInterfaceType() { return this.interfaceType; } public SupplyListPartnerManagersResponseBodyResult setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public SupplyListPartnerManagersResponseBodyResult setUserName(String userName) { this.userName = userName; return this; } public String getUserName() { return this.userName; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy