com.alipay.api.response.AlipayOpenPublicFollowBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The 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, 2016-12-20 10:26:41
*/
public class AlipayOpenPublicFollowBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8829747949353872324L;
/**
* 本次调用获取的userId个数,最大值为10000
*/
@ApiField("count")
private String count;
/**
* 查询分组的userid
*/
@ApiField("next_user_id")
private String nextUserId;
/**
* 用户的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 setUserIdList(List userIdList) {
this.userIdList = userIdList;
}
public List getUserIdList( ) {
return this.userIdList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy