
com.alipay.api.response.AlipayEcoCplifeRoominfoUploadResponse 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.domain.CplifeRoomInfoResp;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.cplife.roominfo.upload response.
*
* @author auto create
* @since 1.0, 2017-03-24 11:43:11
*/
public class AlipayEcoCplifeRoominfoUploadResponse extends AlipayResponse {
private static final long serialVersionUID = 6482347319796261152L;
/**
* 业主所在物业小区ID(支付宝平台唯一小区ID标示)
*/
@ApiField("community_id")
private String communityId;
/**
* 已经成功上传的房屋信息列表.
*/
@ApiListField("room_info_set")
@ApiField("cplife_room_info_resp")
private List roomInfoSet;
public void setCommunityId(String communityId) {
this.communityId = communityId;
}
public String getCommunityId( ) {
return this.communityId;
}
public void setRoomInfoSet(List roomInfoSet) {
this.roomInfoSet = roomInfoSet;
}
public List getRoomInfoSet( ) {
return this.roomInfoSet;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy