com.alipay.api.domain.PayForPrivilegePaidVoucherConfig 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 充享惠业务有偿券配置
*
* @author auto create
* @since 1.0, 2022-10-31 21:54:26
*/
public class PayForPrivilegePaidVoucherConfig extends AlipayObject {
private static final long serialVersionUID = 4333364124541527325L;
/**
* 消费者充值赠送的该类型有偿券的数量
*/
@ApiField("send_count")
private Long sendCount;
/**
* 有偿券模板ID
*/
@ApiField("template_id")
private String templateId;
public Long getSendCount() {
return this.sendCount;
}
public void setSendCount(Long sendCount) {
this.sendCount = sendCount;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy