com.alipay.api.domain.AntMerchantExpandMembercardConfigModifyModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
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, 2022-04-25 11:08:27
*/
public class AntMerchantExpandMembercardConfigModifyModel extends AlipayObject {
private static final long serialVersionUID = 6465769881696739424L;
/**
* 期望修改成的卡面信息
*/
@ApiField("card_template_config")
private MemberCardTemplateConfig cardTemplateConfig;
/**
* 商家的安心充配置的唯一编号
*/
@ApiField("member_product_id")
private String memberProductId;
/**
* 会员卡配置操作员信息,参数设置方式参考:接入指南 的说明
*/
@ApiField("operator")
private MemberCardOperator operator;
/**
* 外部业务号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 安心充会员卡核销的范围,可以为空,空就表示能核销商家下面的所有线下店;支持三类规则
1. 特定用户下面的线下店范围,暂时就支持当前商家名下的线下店范围。
2. 当前商家(M4)对应的smid -(暂未开放)
3. 限定特定的商品,如果同时存在,则只判断包含规则。
当前限定了2,就不能生效1的规则。内部字段如果为null,则表示不修改已有配置。
*/
@ApiField("pay_effective_rule")
private MemberCardPayEffectiveRule payEffectiveRule;
/**
* 最大数量为6,期望修改成的优惠方案列表:
如果不包含现有的优惠方案对象,则表示期望删除;
如果包含了优惠对象,会校验充送方案是否存在,存在则修改(只支持修改状态),不存在则添加。
*/
@ApiListField("prepaid_promotion_plans")
@ApiField("member_card_create_prepaid_promotion_plan_info")
private List prepaidPromotionPlans;
public MemberCardTemplateConfig getCardTemplateConfig() {
return this.cardTemplateConfig;
}
public void setCardTemplateConfig(MemberCardTemplateConfig cardTemplateConfig) {
this.cardTemplateConfig = cardTemplateConfig;
}
public String getMemberProductId() {
return this.memberProductId;
}
public void setMemberProductId(String memberProductId) {
this.memberProductId = memberProductId;
}
public MemberCardOperator getOperator() {
return this.operator;
}
public void setOperator(MemberCardOperator operator) {
this.operator = operator;
}
public String getOutBizNo() {
return this.outBizNo;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public MemberCardPayEffectiveRule getPayEffectiveRule() {
return this.payEffectiveRule;
}
public void setPayEffectiveRule(MemberCardPayEffectiveRule payEffectiveRule) {
this.payEffectiveRule = payEffectiveRule;
}
public List getPrepaidPromotionPlans() {
return this.prepaidPromotionPlans;
}
public void setPrepaidPromotionPlans(List prepaidPromotionPlans) {
this.prepaidPromotionPlans = prepaidPromotionPlans;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy