com.alipay.api.response.AlipayOpenMiniInnerversionCitygrayQueryResponse 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.MiniAppGrayCityDto;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.mini.innerversion.citygray.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 20:52:36
*/
public class AlipayOpenMiniInnerversionCitygrayQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4298764477894485758L;
/**
* 城市编码
*/
@ApiField("city_code")
private String cityCode;
/**
* 城市编码列表
*/
@ApiListField("city_codes")
@ApiField("string")
private List cityCodes;
/**
* 城市名称
*/
@ApiField("city_name")
private String cityName;
/**
* 城市信息列表
*/
@ApiListField("gray_citys")
@ApiField("mini_app_gray_city_dto")
private List grayCitys;
/**
* 规则编码
*/
@ApiField("rule_code")
private String ruleCode;
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getCityCode( ) {
return this.cityCode;
}
public void setCityCodes(List cityCodes) {
this.cityCodes = cityCodes;
}
public List getCityCodes( ) {
return this.cityCodes;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public String getCityName( ) {
return this.cityName;
}
public void setGrayCitys(List grayCitys) {
this.grayCitys = grayCitys;
}
public List getGrayCitys( ) {
return this.grayCitys;
}
public void setRuleCode(String ruleCode) {
this.ruleCode = ruleCode;
}
public String getRuleCode( ) {
return this.ruleCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy