회의록[2021.05.24] - ChoiGiSung/airbnb GitHub Wiki

수정 사항

    1. price -> prices
    1. city ->cities url로 변경, json도 변경
    1. image -> images
  • 2,3. price_for_data ->price_per_date
  • 방 리스트에서 총액을 준다. image
"rooms" : [
    {
        ~~~~,
        "total_price" : 1905600
    }
]
  • 예약이 이미 되어 있는 날짜를 준다. image image
{
    ~~~~,
    "reservation" : [
        {
            "check_in" : "2021-04-02",
            "check_out" : "2021-04-05",
        },
        {
            "check_in" : "2021-04-02",
            "check_out" : "2021-04-05",
        }
    ]
}