
com.alipay.api.domain.KoubeiMarketingCampaignVoucherDetailQueryModel 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
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 口碑券详情查询接口
*
* @author auto create
* @since 1.0, 2016-12-22 21:53:37
*/
public class KoubeiMarketingCampaignVoucherDetailQueryModel extends AlipayObject {
private static final long serialVersionUID = 6128638894496266865L;
/**
* 支付宝用户id
*/
@ApiField("user_id")
private String userId;
/**
* 券id
*/
@ApiField("voucher_id")
private String voucherId;
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getVoucherId() {
return this.voucherId;
}
public void setVoucherId(String voucherId) {
this.voucherId = voucherId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy