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

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

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.PromotionTaskRelation;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.open.servicemarket.promotiontask.relation.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-21 01:36:44
 */
public class AlipayOpenServicemarketPromotiontaskRelationQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 2638369878863875638L;

	/** 
	 * 当前页码
	 */
	@ApiField("current_page")
	private Long currentPage;

	/** 
	 * 每页数量
	 */
	@ApiField("page_size")
	private Long pageSize;

	/** 
	 * 推广服务商信息列表
	 */
	@ApiListField("promotion_relations")
	@ApiField("promotion_task_relation")
	private List promotionRelations;

	/** 
	 * 总记录数
	 */
	@ApiField("total_size")
	private Long totalSize;

	public void setCurrentPage(Long currentPage) {
		this.currentPage = currentPage;
	}
	public Long getCurrentPage( ) {
		return this.currentPage;
	}

	public void setPageSize(Long pageSize) {
		this.pageSize = pageSize;
	}
	public Long getPageSize( ) {
		return this.pageSize;
	}

	public void setPromotionRelations(List promotionRelations) {
		this.promotionRelations = promotionRelations;
	}
	public List getPromotionRelations( ) {
		return this.promotionRelations;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy