com.alipay.api.response.AlipayFundCouponWufuCardReceiveResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.fund.coupon.wufu.card.receive response.
*
* @author auto create
* @since 1.0, 2023-09-04 00:00:05
*/
public class AlipayFundCouponWufuCardReceiveResponse extends AlipayResponse {
private static final long serialVersionUID = 4585686894535571421L;
/**
* 福卡id,全局唯一
*/
@ApiField("card_id")
private String cardId;
/**
* 福卡类型:
1001=敬业福
1002=爱国福
1003=富强福
1004=和谐福
1005=友善福
*/
@ApiField("card_type")
private String cardType;
public void setCardId(String cardId) {
this.cardId = cardId;
}
public String getCardId( ) {
return this.cardId;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getCardType( ) {
return this.cardType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy