fix: handle cases with counterRateCode missing

This commit is contained in:
Christel Westerberg
2024-12-12 15:38:05 +01:00
parent 3dae3e69cc
commit 658afd0327
3 changed files with 5 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ interface Room {
adults: number
roomTypeCode: string
rateCode: string
counterRateCode: string
counterRateCode?: string
children?: Child[]
packages?: RoomPackageCodeEnum[]
}