Skip to content

Instantly share code, notes, and snippets.

@hassanabidpk
Created August 1, 2017 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hassanabidpk/1f4ea1976b60be0054113a54dd0fa5a8 to your computer and use it in GitHub Desktop.
Save hassanabidpk/1f4ea1976b60be0054113a54dd0fa5a8 to your computer and use it in GitHub Desktop.
package co.searchrestaurant.android.app.fetch;
import java.util.List;
/**
* Created by hassanabid on 2/27/16.
*/
public class SearchRestaurantResponse {
public String status;
public String name;
public String address;
public int checkins;
public String latitude;
public String longitude;
public String photo_url;
public String venue_id;
public String phone_number;
public String created_at;
public String updated_at;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment