All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayOpenMiniTipsDeliveryBatchqueryResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
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.TipsDelivery;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.open.mini.tips.delivery.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-10-21 10:10:29
 */
public class AlipayOpenMiniTipsDeliveryBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3718775288622555615L;

	/** 
	 * 收藏引导活动信息列表。根据活动状态排序,顺序为:生效中,暂停,审核中,白名单生效中,初始化,审核失败,结束。相同状态优先展示状态更新时间最迟的活动。
	 */
	@ApiListField("tips_delivery_list")
	@ApiField("tips_delivery")
	private List tipsDeliveryList;

	/** 
	 * 总页数
	 */
	@ApiField("total_pages")
	private Long totalPages;

	/** 
	 * 收藏引导数据总数量
	 */
	@ApiField("total_size")
	private Long totalSize;

	public void setTipsDeliveryList(List tipsDeliveryList) {
		this.tipsDeliveryList = tipsDeliveryList;
	}
	public List getTipsDeliveryList( ) {
		return this.tipsDeliveryList;
	}

	public void setTotalPages(Long totalPages) {
		this.totalPages = totalPages;
	}
	public Long getTotalPages( ) {
		return this.totalPages;
	}

	public void setTotalSize(Long totalSize) {
		this.totalSize = totalSize;
	}
	public Long getTotalSize( ) {
		return this.totalSize;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy