
com.alipay.api.domain.KbAdvertIdentifyResponse 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 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, 2017-03-03 14:25:50
*/
public class KbAdvertIdentifyResponse extends AlipayObject {
private static final long serialVersionUID = 6367736224315134199L;
/**
* 根据benefit_type,确定ID含义
SINGLE_VOUCHER时,benefit_ids为券ID
*/
@ApiListField("benefit_ids")
@ApiField("string")
private List benefitIds;
/**
* 发放权益类型
SINGLE_VOUCHER:单券
*/
@ApiField("benefit_type")
private String benefitType;
/**
* 返回码
success: 成功
invalid-arguments: 无效参数
retry-exception: 异常请重试
isv.user-already-get-voucher:用户已经领过该券,同时券状态为有效
isv.item_inventory_not_enough:优惠领光了
isv.item_not_in_this_shop_sales:不是该商家的优惠,不能领取
isv.voucher_activity_not_started:活动未开始
isv.voucher_activity_expired:活动已结束
isv.crowd_limit_not_match_error:暂无领取资格,详情请咨询商家
isv.member_crowd_limit_not_match_error:会员专属,请先注册会员
*/
@ApiField("code")
private String code;
/**
* JSON格式数据,需要ISV自行解析
*/
@ApiField("ext_info")
private String extInfo;
/**
* 主键的值
*/
@ApiField("identify")
private String identify;
/**
* 主键类型
*/
@ApiField("identify_type")
private String identifyType;
public List getBenefitIds() {
return this.benefitIds;
}
public void setBenefitIds(List benefitIds) {
this.benefitIds = benefitIds;
}
public String getBenefitType() {
return this.benefitType;
}
public void setBenefitType(String benefitType) {
this.benefitType = benefitType;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getIdentify() {
return this.identify;
}
public void setIdentify(String identify) {
this.identify = identify;
}
public String getIdentifyType() {
return this.identifyType;
}
public void setIdentifyType(String identifyType) {
this.identifyType = identifyType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy