com.aliyun.dingtalkindustry_1_0.models.DigitalStoreSubNodesResponseBody 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 DigitalStoreSubNodesResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("content")
public java.util.List content;
public static DigitalStoreSubNodesResponseBody build(java.util.Map map) throws Exception {
DigitalStoreSubNodesResponseBody self = new DigitalStoreSubNodesResponseBody();
return TeaModel.build(map, self);
}
public DigitalStoreSubNodesResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public static class DigitalStoreSubNodesResponseBodyContent extends TeaModel {
@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 DigitalStoreSubNodesResponseBodyContent build(java.util.Map map) throws Exception {
DigitalStoreSubNodesResponseBodyContent self = new DigitalStoreSubNodesResponseBodyContent();
return TeaModel.build(map, self);
}
public DigitalStoreSubNodesResponseBodyContent setDingDeptId(Long dingDeptId) {
this.dingDeptId = dingDeptId;
return this;
}
public Long getDingDeptId() {
return this.dingDeptId;
}
public DigitalStoreSubNodesResponseBodyContent setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public DigitalStoreSubNodesResponseBodyContent setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DigitalStoreSubNodesResponseBodyContent setParentId(Long parentId) {
this.parentId = parentId;
return this;
}
public Long getParentId() {
return this.parentId;
}
public DigitalStoreSubNodesResponseBodyContent setType(Long type) {
this.type = type;
return this;
}
public Long getType() {
return this.type;
}
}
}