If you think the Android project HotSpot_Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.ticknardif.hotspot.RESTresponses;
/*fromwww.java2s.com*//**
* Created by Vatsal on 11/8/2014.
*/publicclass ChatRoomCreationResponse {
publicint Room_Admin;
publicint Latitude;
publicint Longitude;
publicint chat_id;
public String Chat_title;
public String Chat_Dscrpn;
public ChatRoomCreationResponse(int room_Admin, int latitude, int longitude, int chat_id, String chat_title, String chat_Dscrpn) {
Room_Admin = room_Admin;
Latitude = latitude;
Longitude = longitude;
this.chat_id = chat_id;
Chat_title = chat_title;
Chat_Dscrpn = chat_Dscrpn;
}
@Override
public String toString() {
return"ChatRoomCreationResponse{" +
"Room_Admin=" + Room_Admin +
", Latitude=" + Latitude +
", Longitude=" + Longitude +
", chat_id=" + chat_id +
", Chat_title='" + Chat_title + '\'' +
", Chat_Dscrpn='" + Chat_Dscrpn + '\'' +
'}';
}
}