com.alipay.api.domain.AlipayOpenPublicMessageSingleSendModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 单发模板消息
*
* @author auto create
* @since 1.0, 2016-12-02 16:31:58
*/
public class AlipayOpenPublicMessageSingleSendModel extends AlipayObject {
private static final long serialVersionUID = 1832524846953881896L;
/**
* 消息模板相关参数,其中包括templateId模板ID和context模板上下文
*/
@ApiField("template")
private Template template;
/**
* 消息接收用户的userid
*/
@ApiField("to_user_id")
private String toUserId;
public Template getTemplate() {
return this.template;
}
public void setTemplate(Template template) {
this.template = template;
}
public String getToUserId() {
return this.toUserId;
}
public void setToUserId(String toUserId) {
this.toUserId = toUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy