
com.aliyun.dingtalkindustry_1_0.models.DigitalStoreContactInfoResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class DigitalStoreContactInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* codexxxxx
*/
@NameInMap("code")
public String code;
/**
* example:
* 123
*/
@NameInMap("dingDeptId")
public Long dingDeptId;
/**
* example:
* 门店通
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 5647993312
*/
@NameInMap("rootDeptId")
public Long rootDeptId;
public static DigitalStoreContactInfoResponseBody build(java.util.Map map) throws Exception {
DigitalStoreContactInfoResponseBody self = new DigitalStoreContactInfoResponseBody();
return TeaModel.build(map, self);
}
public DigitalStoreContactInfoResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public DigitalStoreContactInfoResponseBody setDingDeptId(Long dingDeptId) {
this.dingDeptId = dingDeptId;
return this;
}
public Long getDingDeptId() {
return this.dingDeptId;
}
public DigitalStoreContactInfoResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DigitalStoreContactInfoResponseBody setRootDeptId(Long rootDeptId) {
this.rootDeptId = rootDeptId;
return this;
}
public Long getRootDeptId() {
return this.rootDeptId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy