![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.SupplyListPartnerManagersResponseBody 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.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