json 에서 snake-case 사용
객체 필드에서는 camelCase 사용
// Error
{
"code" : string
"message" : string
}
{
"id": "number",
"name": "string",
"location": {
"latitude": "number",
"longitude": "number"
},
"google_place_id": "string",
"category": "null",
"description": "string",
"detail_page_url": "string",
"thumbnail_url": "string",
"rating": "number",
"formed_address": "string",
"comment": "string",
"order": "number"
}