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
Change comment: There is no comment for this version
To version 5.1
edited by Giorgi Mdivnishvili
on 2023/12/14 12:51
Change comment: There is no comment for this version

Summary

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:42:01.525Z",
80 - "checkOutDate": "2023-12-14T08:42: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 -hotelName string
208 +errorDescription string
208 208  nullable: true
209 -hotelClass string
210 +userErrorDescription string
210 210  nullable: true
211 -cityUID string($uuid)
212 +package OnlyHotelPackage{
213 +id string
212 212  nullable: true
213 -countryCode string
215 +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 string
226 +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 -longitude string
234 +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}}