com.alipay.api.response.AlipayMerchantGroupGroupgiftBatchqueryResponse 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.MultiChannelJoinGiftRecordVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.merchant.group.groupgift.batchquery response.
*
* @author auto create
* @since 1.0, 2024-09-05 18:09:39
*/
public class AlipayMerchantGroupGroupgiftBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2313433446858243969L;
/**
* 入群有礼配置记录列表
*/
@ApiListField("join_gift_record_list")
@ApiField("multi_channel_join_gift_record_v_o")
private List joinGiftRecordList;
/**
* 入群有礼总条数。取值单位是"条"。
*/
@ApiField("total_count")
private Long totalCount;
public void setJoinGiftRecordList(List joinGiftRecordList) {
this.joinGiftRecordList = joinGiftRecordList;
}
public List getJoinGiftRecordList( ) {
return this.joinGiftRecordList;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy