com.alipay.api.response.AlipayUserAccountUseridBatchqueryResponse 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.user.account.userid.batchquery response.
*
* @author auto create
* @since 1.0, 2016-06-06 21:37:53
*/
public class AlipayUserAccountUseridBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6234243344416849212L;
/**
* 用户列表
*/
@ApiListField("user_id_list")
@ApiField("string")
private List userIdList;
public void setUserIdList(List userIdList) {
this.userIdList = userIdList;
}
public List getUserIdList( ) {
return this.userIdList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy