com.alipay.api.domain.AlipayMarketingCampaignUserActivityvoucherBatchqueryModel 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, 2021-08-04 17:35:04
*/
public class AlipayMarketingCampaignUserActivityvoucherBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 1857771266668384383L;
/**
* 场景码:默认(DEFAULT)
*/
@ApiListField("scene_code")
@ApiField("string")
private List sceneCode;
/**
* 券状态:
可使用(ENABLED),已核销(即完全使用,USED),已过期(EXPIRED)
*/
@ApiField("voucher_status")
private String voucherStatus;
public List getSceneCode() {
return this.sceneCode;
}
public void setSceneCode(List sceneCode) {
this.sceneCode = sceneCode;
}
public String getVoucherStatus() {
return this.voucherStatus;
}
public void setVoucherStatus(String voucherStatus) {
this.voucherStatus = voucherStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy