com.alipay.api.response.AlipayOpenMiniPoiQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.NearbyAddressInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.mini.poi.query response.
*
* @author auto create
* @since 1.0, 2019-01-07 20:51:15
*/
public class AlipayOpenMiniPoiQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1893136466746192353L;
/**
* 可添加地址的最大数量
*/
@ApiField("max_count")
private Long maxCount;
/**
* POI信息列表
*/
@ApiListField("nearby_address_info_list")
@ApiField("nearby_address_info")
private List nearbyAddressInfoList;
/**
* 当前已添加地址数量
*/
@ApiField("total_count")
private Long totalCount;
public void setMaxCount(Long maxCount) {
this.maxCount = maxCount;
}
public Long getMaxCount( ) {
return this.maxCount;
}
public void setNearbyAddressInfoList(List nearbyAddressInfoList) {
this.nearbyAddressInfoList = nearbyAddressInfoList;
}
public List getNearbyAddressInfoList( ) {
return this.nearbyAddressInfoList;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}