![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.DigitalStoreConversationsRequest 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 DigitalStoreConversationsRequest extends TeaModel {
/**
* example:
* xxx店
*/
@NameInMap("conversationTitle")
public String conversationTitle;
/**
* example:
* store
*/
@NameInMap("conversationType")
public String conversationType;
public static DigitalStoreConversationsRequest build(java.util.Map map) throws Exception {
DigitalStoreConversationsRequest self = new DigitalStoreConversationsRequest();
return TeaModel.build(map, self);
}
public DigitalStoreConversationsRequest setConversationTitle(String conversationTitle) {
this.conversationTitle = conversationTitle;
return this;
}
public String getConversationTitle() {
return this.conversationTitle;
}
public DigitalStoreConversationsRequest setConversationType(String conversationType) {
this.conversationType = conversationType;
return this;
}
public String getConversationType() {
return this.conversationType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy