
com.aliyun.dingtalkindustry_1_0.models.DIgitalStoreMessagePushRequest 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 DIgitalStoreMessagePushRequest extends TeaModel {
@NameInMap("messageDataList")
public java.util.List messageDataList;
public static DIgitalStoreMessagePushRequest build(java.util.Map map) throws Exception {
DIgitalStoreMessagePushRequest self = new DIgitalStoreMessagePushRequest();
return TeaModel.build(map, self);
}
public DIgitalStoreMessagePushRequest setMessageDataList(java.util.List messageDataList) {
this.messageDataList = messageDataList;
return this;
}
public java.util.List getMessageDataList() {
return this.messageDataList;
}
public static class DIgitalStoreMessagePushRequestMessageDataList extends TeaModel {
/**
* example:
* xxxxcallback
*/
@NameInMap("callbackKey")
public String callbackKey;
/**
* example:
* {"key":"value"}
*/
@NameInMap("content")
public String content;
/**
* example:
* true
*/
@NameInMap("newCard")
public Boolean newCard;
/**
* example:
* ysn138dh1712dsa
*/
@NameInMap("outTraceId")
public String outTraceId;
/**
* example:
* StoreOrder
*/
@NameInMap("sceneCardCode")
public String sceneCardCode;
/**
* example:
* 54774321
*/
@NameInMap("sceneScope")
public Long sceneScope;
/**
* example:
* true
*/
@NameInMap("sendNow")
public Boolean sendNow;
public static DIgitalStoreMessagePushRequestMessageDataList build(java.util.Map map) throws Exception {
DIgitalStoreMessagePushRequestMessageDataList self = new DIgitalStoreMessagePushRequestMessageDataList();
return TeaModel.build(map, self);
}
public DIgitalStoreMessagePushRequestMessageDataList setCallbackKey(String callbackKey) {
this.callbackKey = callbackKey;
return this;
}
public String getCallbackKey() {
return this.callbackKey;
}
public DIgitalStoreMessagePushRequestMessageDataList setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public DIgitalStoreMessagePushRequestMessageDataList setNewCard(Boolean newCard) {
this.newCard = newCard;
return this;
}
public Boolean getNewCard() {
return this.newCard;
}
public DIgitalStoreMessagePushRequestMessageDataList setOutTraceId(String outTraceId) {
this.outTraceId = outTraceId;
return this;
}
public String getOutTraceId() {
return this.outTraceId;
}
public DIgitalStoreMessagePushRequestMessageDataList setSceneCardCode(String sceneCardCode) {
this.sceneCardCode = sceneCardCode;
return this;
}
public String getSceneCardCode() {
return this.sceneCardCode;
}
public DIgitalStoreMessagePushRequestMessageDataList setSceneScope(Long sceneScope) {
this.sceneScope = sceneScope;
return this;
}
public Long getSceneScope() {
return this.sceneScope;
}
public DIgitalStoreMessagePushRequestMessageDataList setSendNow(Boolean sendNow) {
this.sendNow = sendNow;
return this;
}
public Boolean getSendNow() {
return this.sendNow;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy