com.alipay.api.domain.AlipayMarketingCardUpdateModel 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 java.util.Date;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 会员卡更新
*
* @author auto create
* @since 1.0, 2017-08-24 15:51:39
*/
public class AlipayMarketingCardUpdateModel extends AlipayObject {
private static final long serialVersionUID = 4142417848848878715L;
/**
* 需要修改的最新卡信息
*/
@ApiField("card_info")
private MerchantCard cardInfo;
/**
* 扩展信息(暂时无用)
*/
@ApiField("ext_info")
private String extInfo;
// /**
// * 注意:此字段已废弃,卡面样式以模板中的定义为准。
//会员卡卡面展示样式
//参考:展示位置详情参考"商户会员卡->快速接入文档->第四步"
//备注:mcard_style_info与card_info下的template_id不能同时更新
// */
@ApiField("mcard_style_info")
private McardStylInfo mcardStyleInfo;
/**
* 卡信息变更通知消息
1、在列表中定义的消息,才会发送给用户,消息格式一定。
2、根据卡信息变更情况,一次可发送多个消息
*/
@ApiListField("notify_messages")
@ApiField("mcard_notify_message")
private List notifyMessages;
/**
* 标识业务发生的时间
*/
@ApiField("occur_time")
private Date occurTime;
/**
* 支付宝业务卡号,开卡接口中返回获取
*/
@ApiField("target_card_no")
private String targetCardNo;
/**
* 卡号ID类型
BIZ_CARD:支付宝业务卡号
*/
@ApiField("target_card_no_type")
private String targetCardNoType;
public MerchantCard getCardInfo() {
return this.cardInfo;
}
public void setCardInfo(MerchantCard cardInfo) {
this.cardInfo = cardInfo;
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public McardStylInfo getMcardStyleInfo() {
return this.mcardStyleInfo;
}
public void setMcardStyleInfo(McardStylInfo mcardStyleInfo) {
this.mcardStyleInfo = mcardStyleInfo;
}
public List getNotifyMessages() {
return this.notifyMessages;
}
public void setNotifyMessages(List notifyMessages) {
this.notifyMessages = notifyMessages;
}
public Date getOccurTime() {
return this.occurTime;
}
public void setOccurTime(Date occurTime) {
this.occurTime = occurTime;
}
public String getTargetCardNo() {
return this.targetCardNo;
}
public void setTargetCardNo(String targetCardNo) {
this.targetCardNo = targetCardNo;
}
public String getTargetCardNoType() {
return this.targetCardNoType;
}
public void setTargetCardNoType(String targetCardNoType) {
this.targetCardNoType = targetCardNoType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy