Changes for page 2. CalcPackage
Last modified by Giorgi Mdivnishvili on 2024/04/12 18:58
From version 4.1
edited by Giorgi Mdivnishvili
on 2023/12/14 12:49
on 2023/12/14 12:49
Change comment:
There is no comment for this version
To version 5.1
edited by Giorgi Mdivnishvili
on 2023/12/14 12:51
on 2023/12/14 12:51
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -76,8 +76,8 @@ 76 76 "roomCategoryName": "string", 77 77 "placementTypeName": "string", 78 78 "placementDescription": "string", 79 - "checkInDate": "2023-12-14T08:4 2:01.525Z",80 - "checkOutDate": "2023-12-14T08:4 2:01.525Z",79 + "checkInDate": "2023-12-14T08:49:36.703Z", 80 + "checkOutDate": "2023-12-14T08:49:36.703Z", 81 81 "adults": 0, 82 82 "children": 0, 83 83 "districtUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6", ... ... @@ -201,36 +201,53 @@ 201 201 === Schema === 202 202 203 203 {{code language="none"}} 204 -[Hotel{ 205 -hotelCode string 204 +CalcOnlyHotelPackageResponse{ 205 +error boolean 206 +errorCode string 206 206 nullable: true 207 - hotelNamestring208 +errorDescription string 208 208 nullable: true 209 - hotelClassstring210 +userErrorDescription string 210 210 nullable: true 211 -cityUID string($uuid) 212 +package OnlyHotelPackage{ 213 +id string 212 212 nullable: true 213 -c ountryCode string215 +priceCurrency string 214 214 nullable: true 215 -countryName string 217 +totalPrice number($double) 218 +agentCommissionPercent number($double) 219 +agentCommissionAmount number($double) 220 +hotel PackageHotel{...} 221 +extraServices [ 216 216 nullable: true 217 -districtUID string($uuid) 223 +HotelExtraServiceBase{ 224 +extraServiceCode string 218 218 nullable: true 219 - cityName string226 +extraServiceTypeCode string 220 220 nullable: true 221 -districtName string 228 +isMandatory integer($int32) 229 +extraServiceName string 222 222 nullable: true 223 -hotelType HotelTypeEnumstring 224 -Enum: 225 -[ CityHotel, BeachHotel, SecondLineBeach ] 226 -latitude string 231 +minimalServiceAmount number($double) 232 +includedPriceCode string 227 227 nullable: true 228 - longitudetring234 +prices [ 229 229 nullable: true 230 -hasAlcohol boolean 231 -hasFreeWifi boolean 232 -hasMetro boolean 233 -hasPool boolean 234 -hasMall boolean 236 +HotelExtraServicePriceBase{ 237 +extraServicePriceCode string 238 +nullable: true 239 +displayName string 240 +nullable: true 241 +restrictionInfo string 242 +nullable: true 243 +additionalInfo string 244 +nullable: true 245 +price number($double) 246 +extraPrice number($double) 247 +currency string 248 +nullable: true 235 235 }] 250 +}] 251 +} 252 +} 236 236 {{/code}}