com.alipay.api.response.AlipayMarketingVoucherSendResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.voucher.send response.
*
* @author auto create
* @since 1.0, 2017-06-19 11:26:53
*/
public class AlipayMarketingVoucherSendResponse extends AlipayResponse {
private static final long serialVersionUID = 6352291927784873616L;
/**
* 支付宝用户ID
*/
@ApiField("user_id")
private String userId;
/**
* 券ID
*/
@ApiField("voucher_id")
private String voucherId;
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserId( ) {
return this.userId;
}
public void setVoucherId(String voucherId) {
this.voucherId = voucherId;
}
public String getVoucherId( ) {
return this.voucherId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy