Room type endpoints now return a room_type_ids array for suite room types, providing the individual room type IDs and their counts that make up the suite. The field is only returned when suite: true and is omitted entirely when suite: false.
Affected endpoints: GET /room_types/{id}, GET /hotels/{id}/room_types
Example response:
{
"room_type_ids": [
{
"id": "1526703",
"count": 1
},
{
"id": "1029383",
"count": 2
}
]
}




