com.alipay.api.response.AlipayOfflineMarketShopDiscountQueryResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.CampDetailInfo;
import com.alipay.api.domain.ShopDiscountInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.offline.market.shop.discount.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:41:19
*/
public class AlipayOfflineMarketShopDiscountQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8731136439614153283L;
/**
* 返回商户正在进行中的活动摘要列表数据,注意:如果入参query_type不传递或者传递错误值,该参数将不会返回。
*/
@ApiListField("camp_list")
@ApiField("camp_detail_info")
private List campList;
/**
* 返回商户正在进行中的活动记录数,注意:如果入参query_type不传递或者传递错误值,该参数将不会返回。
*/
@ApiField("camp_num")
private Long campNum;
/**
* 优惠信息列表,最大20条,按生效时间排序,注意:如果入参query_type传递了指定的值,该参数将不会返回。只有当query_type不传递时方可返回数据
*/
@ApiListField("discount_list")
@ApiField("shop_discount_info")
private List discountList;
/**
* 商品列表,最大20条,按申领数量排序,注意:如果入参query_type传递了指定的值,该参数将不会返回。只有当query_type不传递时方可返回数据
*/
@ApiListField("item_list")
@ApiField("shop_discount_info")
private List itemList;
public void setCampList(List campList) {
this.campList = campList;
}
public List getCampList( ) {
return this.campList;
}
public void setCampNum(Long campNum) {
this.campNum = campNum;
}
public Long getCampNum( ) {
return this.campNum;
}
public void setDiscountList(List discountList) {
this.discountList = discountList;
}
public List getDiscountList( ) {
return this.discountList;
}
public void setItemList(List itemList) {
this.itemList = itemList;
}
public List getItemList( ) {
return this.itemList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy