![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.DigitalStoreNodeInfoResponseBody 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 DigitalStoreNodeInfoResponseBody extends TeaModel {
/**
* example:
* 76644111
*/
@NameInMap("dingDeptId")
public Long dingDeptId;
/**
* This parameter is required.
*
* example:
* 6756433
*/
@NameInMap("id")
public Long id;
/**
* This parameter is required.
*
* example:
* 华夏之心店
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 873366531
*/
@NameInMap("parentId")
public Long parentId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("type")
public Long type;
public static DigitalStoreNodeInfoResponseBody build(java.util.Map map) throws Exception {
DigitalStoreNodeInfoResponseBody self = new DigitalStoreNodeInfoResponseBody();
return TeaModel.build(map, self);
}
public DigitalStoreNodeInfoResponseBody setDingDeptId(Long dingDeptId) {
this.dingDeptId = dingDeptId;
return this;
}
public Long getDingDeptId() {
return this.dingDeptId;
}
public DigitalStoreNodeInfoResponseBody setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public DigitalStoreNodeInfoResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DigitalStoreNodeInfoResponseBody setParentId(Long parentId) {
this.parentId = parentId;
return this;
}
public Long getParentId() {
return this.parentId;
}
public DigitalStoreNodeInfoResponseBody setType(Long type) {
this.type = type;
return this;
}
public Long getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy