json 에서 snake-case 사용

객체 필드에서는 camelCase 사용

Error

// Error 
{
  "code" : string
  "message" : string
}

Place

{
  "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"
}

ChatGPT - NestJS 카멜케이스 스네이크케이스 변환