![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.DigitalStoreSceneScopeResponseBody 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 DigitalStoreSceneScopeResponseBody extends TeaModel {
/**
* example:
* store
*/
@NameInMap("groupConversationType")
public String groupConversationType;
/**
* example:
* 536239912
*/
@NameInMap("scopeId")
public Long scopeId;
public static DigitalStoreSceneScopeResponseBody build(java.util.Map map) throws Exception {
DigitalStoreSceneScopeResponseBody self = new DigitalStoreSceneScopeResponseBody();
return TeaModel.build(map, self);
}
public DigitalStoreSceneScopeResponseBody setGroupConversationType(String groupConversationType) {
this.groupConversationType = groupConversationType;
return this;
}
public String getGroupConversationType() {
return this.groupConversationType;
}
public DigitalStoreSceneScopeResponseBody setScopeId(Long scopeId) {
this.scopeId = scopeId;
return this;
}
public Long getScopeId() {
return this.scopeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy