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 ChatroomResponse {
publicint chat_id;
publicint Room_Admin;
publicdouble Longitude;
publicdouble Latitude;
public String Chat_title;
public String Chat_Dscrpn;
public String displayName;
public ChatroomResponse(int chat_id, int room_Admin, double longitude, double latitude, String chat_title, String chat_Dscrpn, String DisplayName) {
this.chat_id = chat_id;
Room_Admin = room_Admin;
Longitude = longitude;
Latitude = latitude;
Chat_title = chat_title;
Chat_Dscrpn = chat_Dscrpn;
displayName = DisplayName;
}
@Override
public String toString() {
return"ChatroomResponse{" +
"chat_id=" + chat_id +
", Room_Admin=" + Room_Admin +
", Longitude=" + Longitude +
", Latitude=" + Latitude +
", Chat_title='" + Chat_title + '\'' +
", Chat_Dscrpn='" + Chat_Dscrpn + '\'' +
'}';
}
}