![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.DigitalStoreSceneScopeRequest 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 DigitalStoreSceneScopeRequest extends TeaModel {
/**
* example:
* cidxxa9122s733s1==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* achieveAllocate
*/
@NameInMap("sceneCode")
public String sceneCode;
public static DigitalStoreSceneScopeRequest build(java.util.Map map) throws Exception {
DigitalStoreSceneScopeRequest self = new DigitalStoreSceneScopeRequest();
return TeaModel.build(map, self);
}
public DigitalStoreSceneScopeRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public DigitalStoreSceneScopeRequest setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy