com.alipay.api.response.AlipayMobilePublicTemplateMessageGetResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.mobile.public.template.message.get response.
*
* @author auto create
* @since 1.0, 2017-08-02 17:37:08
*/
public class AlipayMobilePublicTemplateMessageGetResponse extends AlipayResponse {
private static final long serialVersionUID = 5383453412255728849L;
/**
* 消息模板id--商户领取母版后生成的唯一模板id
*/
@ApiField("msg_template_id")
private String msgTemplateId;
/**
* 模板内容
*/
@ApiField("template")
private String template;
public void setMsgTemplateId(String msgTemplateId) {
this.msgTemplateId = msgTemplateId;
}
public String getMsgTemplateId( ) {
return this.msgTemplateId;
}
public void setTemplate(String template) {
this.template = template;
}
public String getTemplate( ) {
return this.template;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy