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

com.alipay.api.response.AlipayOpenPublicFollowBatchqueryResponse 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.AlipayResponse;

/**
 * ALIPAY API: alipay.open.public.follow.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-03-28 00:07:13
 */
public class AlipayOpenPublicFollowBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1876382884719812274L;

	/** 
	 * 本次调用获取的userId个数,最大值为10000
	 */
	@ApiField("count")
	private String count;

	/** 
	 * 查询分组的userid
	 */
	@ApiField("next_user_id")
	private String nextUserId;

	/** 
	 * 支付宝用户的
	 */
	@ApiField("open_id")
	private String openId;

	/** 
	 * 支付宝用户的唯一标识列表
	 */
	@ApiListField("open_id_list")
	@ApiField("string")
	private List openIdList;

	/** 
	 * 用户的userId列表
	 */
	@ApiListField("user_id_list")
	@ApiField("string")
	private List userIdList;

	public void setCount(String count) {
		this.count = count;
	}
	public String getCount( ) {
		return this.count;
	}

	public void setNextUserId(String nextUserId) {
		this.nextUserId = nextUserId;
	}
	public String getNextUserId( ) {
		return this.nextUserId;
	}

	public void setOpenId(String openId) {
		this.openId = openId;
	}
	public String getOpenId( ) {
		return this.openId;
	}

	public void setOpenIdList(List openIdList) {
		this.openIdList = openIdList;
	}
	public List getOpenIdList( ) {
		return this.openIdList;
	}

	public void setUserIdList(List userIdList) {
		this.userIdList = userIdList;
	}
	public List getUserIdList( ) {
		return this.userIdList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy