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

com.alipay.api.response.AlipayOpenAppRentroomAreaQueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.RentRoomApartmentInfo;
import com.alipay.api.domain.RentRoomCommunityInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.open.app.rentroom.area.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-10-30 11:22:22
 */
public class AlipayOpenAppRentroomAreaQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1528621725675499332L;

	/** 
	 * 提报的公寓信息
	 */
	@ApiField("apartment_info")
	private RentRoomApartmentInfo apartmentInfo;

	/** 
	 * 用于区分提报的小区类型
	 */
	@ApiField("area_type")
	private String areaType;

	/** 
	 * 提报的小区信息
	 */
	@ApiField("community_info")
	private RentRoomCommunityInfo communityInfo;

	public void setApartmentInfo(RentRoomApartmentInfo apartmentInfo) {
		this.apartmentInfo = apartmentInfo;
	}
	public RentRoomApartmentInfo getApartmentInfo( ) {
		return this.apartmentInfo;
	}

	public void setAreaType(String areaType) {
		this.areaType = areaType;
	}
	public String getAreaType( ) {
		return this.areaType;
	}

	public void setCommunityInfo(RentRoomCommunityInfo communityInfo) {
		this.communityInfo = communityInfo;
	}
	public RentRoomCommunityInfo getCommunityInfo( ) {
		return this.communityInfo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy