Skip to content

Kamar

Objek Kamar.


Attribute Deskripsi Type Note
name Nama kamar string
photos Foto-foto kamar []string Hanya muncul jika properti memiliki foto
messages Pesan pemilik properti terkait kebijakan penggunaan kamar []string Hanya muncul jika properti memiliki pesan
min_total_price Tarif kamar termurah pada suatu tipe kamar int
groups List tarif kamar []Room Group

Attribute di bawah ini Hanya muncul pada response endpoint:

Attribute Deskripsi Type Note
size Ukuran kamar string
max_adult Jumlah maksimal orang dewasa int
max_child Jumlah maksimal anak-anak int
facilities Fasilitas kamar []string Bisa array kosong

Contoh

Selain Property Detail dan Recheck

[
  {
    "name": "DELUXE KING",
    "photos": [
      "https://ik.imagekit.io/vcrk/dev/hotel,room,bed"
    ],
    "messages": [
      "With 64 sqm, One king bed, Overlooking to Bundaran HI, Luxurious bedding, Bathroom with a view, Separate rainshower and bathtub, Japanese bathroom technology, Smart TV with satelite channel, Minibar, Wi-Fi Internet access, Coffee Machine"
    ],
    "min_total_price": 4727684,
    "groups": [
      {
        "group_id": "023d8a83-b9ae-4622-8930-6d03d65bbd66",
        "plan": "BF",
        "plan_label": "With Breakfast",
        "cancel_plan": "NRF",
        "is_smoking": false,
        "total_price": 4727684,
        "details": [
          {
            "price": 2363842,
            "room_no": 1
          },
          {
            "price": 2363842,
            "room_no": 2
          }
        ]
      }
    ]
  }
]

Property Detail

[
  {
    "name": "DELUXE KING",
    "photos": [
      "https://ik.imagekit.io/vcrk/dev/hotel,room,bed"
    ],
    "messages": [
      "With 64 sqm, One king bed, Overlooking to Bundaran HI, Luxurious bedding, Bathroom with a view, Separate rainshower and bathtub, Japanese bathroom technology, Smart TV with satelite channel, Minibar, Wi-Fi Internet access, Coffee Machine"
    ],
    "min_total_price": 4727684,
    "groups": [
      {
        "group_id": "023d8a83-b9ae-4622-8930-6d03d65bbd66",
        "plan": "BF",
        "plan_label": "Dengan Sarapan",
        "cancel_plan": "NRF",
        "is_smoking": false,
        "total_price": 4727684,
        "details": [
          {
            "price": 2363842,
            "room_no": 1
          },
          {
            "price": 2363842,
            "room_no": 2
          }
        ]
      }
    ],
    "size": "36.00 Sq.m.",
    "max_adult": 2,
    "max_child": 2,
    "facilities": [
      "Shower",
      "Balkon",
      "Sofa",
      "Lemari Baju"
    ]
  }
]