AirCreateReservation
- Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/AirService

Overview
AirPrice 에서 받은 결과값을 하나의 정보(여정과 Pricing내용) 를 탑승객 정보와 함께 전송하면 pricing된 PNR이 생성 된다.
RetainReservation
- Both : 스케쥴과 요금이 안맞아도 예약 (금액변경될 가능성 있음)
- Price: 요금만 틀리면 예약 (금액변경될 가능성 있음)
- None : 스케쥴과 요금이 안맞으면 불가
- Schedule : 스케쥴만 틀리면 예약 (추천) /분단위 스케쥴
- 참조 : https://support.travelport.com/webhelp/uapi/Content/Air/Air_Booking/Create_Air_Booking/Creating_Air_Bookings.htm#AirSolutionChangedInfo

AirPricingInfoGroup 같은 PTC 는 묶어 Pricing 한다.
- ADT CNN INF PTC Type 다르면 AirPricingInfoGroup=”1″ AirPricingInfoGroup=”2″ AirPricingInfoGroup=”3″ 로 각각 프라이싱 한다.

RemarkData
- INF은 나이를 넣어주면 RemarkData를 생략 해도 된다. (없어도 되나 본사에서 입력요청하고 있음) : <com:RemarkData>01JUL21</com:RemarkData>
- CHD은 P-C08 형식으로 나이를 넣어준다. => P-C03 DOB23JUL20 으로 변경
- CHD는 CREATE 시 반드시 CNN Age 지정 => <air:PassengerType BookingTravelerRef=”SE5UMjQxMDE2MTQwNDA2MzAw” Code=”CNN” Age=”9″ />
기타
- HostToken 을 만드시 넣어 준다.
- RestrictWaitlist : Restrict Book if it sells a Waitlisted AirSegment. Provider: 1G,1V
- ContinuityCheckOverride 요소를 추가하십시오. 이렇게 하면 Open-Jaw 여정의 PNR에 ARNK 가 추가됩니다.
- <air:AirPricingModifiers FaresIndicator=”AllFares”/><!– 추가 –>
- PlatingCarrier=”8M” : 지정된 항공사로 발권
- AccountCode 지정 : /AirPricingModifiers/AccountCodes/AccountCode
- ContractCode 지정 : /AirPricingModifiers/ContractCodes/ContractCode
참조 : https://support.travelport.com/webhelp/uapi/Content/Air/Air_Booking/Create_Air_Booking/Air_Booking_with_Fare_Type.htm
PNR을 만들고 Price저장 하는 단계는 AirCreate 이기 때문에 AirCreate시도 PlatingCarrier를 지정해 줘야 합니다.
PlatingCarrier 본사 설명 : https://support.travelport.com/webhelp/uapi/Content/Air/Air_Pricing/Air_Pricing_with_Plating_Carriers.htm
PlatingCarrier은 제공자가 플레이트 항공사 정보를 제공할 때만 해당 정보를 포함합니다. Galileo와 Apollo는 이를 사용해도 이 정보를 제공하지 않으며, Worldspan은 항상 플레이트 항공사를 제공합니다.
Infant and Child Passengers 순서
To identify a child passenger, use the code CNN followed by the child’s two-digit age (e.g., CNN08). Although Worldspan identifies child passengers using the code C followed by 2 digits, the CNN code must be used in Universal API transactions.
As a best practice, an infant passenger name should always follow an adult passenger name in the booking.
- If two adults are traveling with an infant and a child, enter names in the following order:
- First adult
- Infant
- Second adult
- Child
- If two adults are traveling with two infants and one child, enter names in the following order:
- First adult
- First infant
- Second adult
- Second infant
- Child
Prefix (Title)
호스트에서 만든 PNR Title 인 경우 uAPI Retrieve Prefix 에 붙지 않는다.
ADT CNN INF 예약 예제 / CNN INF 주석처리
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:univ="http://www.travelport.com/schema/universal_v50_0" xmlns:air="http://www.travelport.com/schema/air_v50_0" xmlns:com="http://www.travelport.com/schema/common_v50_0"> <soapenv:Header /> <soapenv:Body> <univ:AirCreateReservationReq RetainReservation="Schedule" TargetBranch="P*******" TraceId="2020012818322322" AuthorizedBy="Travelportkorea" RestrictWaitlist="true"> <com:BillingPointOfSaleInfo OriginApplication="UAPI" /> <com:BookingTraveler Key="ADT01" DOB="1977-01-01" TravelerType="ADT" Gender="M"> <com:BookingTravelerName First="SIRST" Last="HEO" Prefix="MR" /> <com:PhoneNumber Type="Mobile" Number="01071099999" /> <com:Email Type="Home" EmailID="kor@soft.co.kr" /> </com:BookingTraveler> <!--com:BookingTraveler Key="INF03" DOB="2021-06-01" TravelerType="INF" Age="1" Gender="MI"> <com:BookingTravelerName First="SONDA" Last="HEO" Prefix="MSTR" /> <com:NameRemark> <com:RemarkData>01JUL21</com:RemarkData> </com:NameRemark> </com:BookingTraveler> <com:BookingTraveler Key="CNN02" DOB="2018-05-23" TravelerType="CNN" Age="04" Gender="M"> <com:BookingTravelerName First="HAAO" Last="HEO" Prefix="MSTR" /> <com:NameRemark> <com:RemarkData>P-DOB23MAY18</com:RemarkData> </com:NameRemark> </com:BookingTraveler--> <com:AccountingRemark Category="FT" TypeInGds="Other" ProviderCode="1G"> <com:RemarkData>X/-/-T10000112283</com:RemarkData> </com:AccountingRemark> <com:ContinuityCheckOverride>Yes</com:ContinuityCheckOverride> <com:AgencyContactInfo> <com:PhoneNumber Type="Agency" Number="0220753222" Text="E9Pay"></com:PhoneNumber> <com:PhoneNumber Type="Agency" Number="KOR//SOFT.CO.KR"></com:PhoneNumber> </com:AgencyContactInfo> <air:AirPricingSolution Key="EUJMfYg0nDKAw6Lx0BAAAA==" TotalPrice="KRW828600" BasePrice="KRW764300" ApproximateTotalPrice="KRW828600" ApproximateBasePrice="KRW764300" Taxes="KRW64300" Fees="KRW0" ApproximateTaxes="KRW64300" QuoteDate="2020-12-07"> <air:AirSegment ProviderCode="1G" AvailabilityDisplayType="Fare Shop/Optimal Shop" AvailabilitySource="A" OptionalServicesIndicator="false" PolledAvailabilityOption="No polled avail exists" ParticipantLevel="Secure Sell" ChangeOfPlane="false" Equipment="319" ETicketability="Yes" Distance="2335" FlightTime="390" ArrivalTime="2021-03-04T03:30:00.000+06:30" DepartureTime="2021-03-03T23:30:00.000+09:00" Destination="RGN" Origin="ICN" CabinClass="Economy" ClassOfService="M" FlightNumber="802" Carrier="8M" Group="0" Key="aHHMfYZ0nDKAB4l9xBAAAA=="> </air:AirSegment> <air:AirSegment ProviderCode="1G" AvailabilityDisplayType="Fare Shop/Optimal Shop" AvailabilitySource="A" OptionalServicesIndicator="false" PolledAvailabilityOption="No polled avail exists" ParticipantLevel="Secure Sell" ChangeOfPlane="false" Equipment="319" ETicketability="Yes" Distance="2335" FlightTime="330" ArrivalTime="2021-03-10T22:30:00.000+09:00" DepartureTime="2021-03-10T14:30:00.000+06:30" Destination="ICN" Origin="RGN" CabinClass="Economy" ClassOfService="U" FlightNumber="801" Carrier="8M" Group="1" Key="aHHMfYZ0nDKAD4l9xBAAAA=="> </air:AirSegment> <air:AirPricingInfo Key="EUJMfYg0nDKAz6Lx0BAAAA==" TotalPrice="KRW828600" BasePrice="KRW764300" ApproximateTotalPrice="KRW828600" ApproximateBasePrice="KRW764300" ApproximateTaxes="KRW64300" Taxes="KRW64300" LatestTicketingTime="2021-03-03T23:59:00.000+09:00" PricingMethod="Manual" Refundable="true" IncludesVAT="false" PlatingCarrier="8M" ProviderCode="1G"> <air:FareInfo Key="EUJMfYg0nDKA46Lx0BAAAA==" FareBasis="MKKRRT" PassengerTypeCode="ADT" Origin="ICN" Destination="RGN" EffectiveDate="2020-12-07T15:42:00.000+09:00" DepartureDate="2021-03-03" Amount="KRW316900" NegotiatedFare="false" NotValidAfter="2021-10-31" TaxAmount="KRW35200"> <air:FareRuleKey FareInfoRef="EUJMfYg0nDKA46Lx0BAAAA==" ProviderCode="1G">6UUVoSldxwj78CpAnaARxMbKj3F8T9EyxsqPcXxP0TLGyo9xfE/RMsuWFfXVd1OAly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5kNFyxTHHXixWa1uaqI55k3aSkvhp2yba1qyRGLb6uaN4hrUT5sxLrAyGqh8JIaqBhN4qTcPZ21iciwyHj9cnhrEVRj7Ydm3YX+hNfHEXoxUV3b2b+cmv9gFHVWNccKgf3YiJg11o1HBY5hoVUuDw6Ktd6h5gYawoMN1QPqv5KjoiIdWw6waMMidI75Lrp8R+xitSbfYdTHy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fHna1H5QsLdGaNi6zOfbTtY770mJHGJ8MFlxovkaBsP7sZ4E6vLIg0alTwySVASvjW82hE30gJ5E=</air:FareRuleKey> <air:Brand Key="EUJMfYg0nDKA46Lx0BAAAA==" BrandFound="false" UpSellBrandFound="false"/> </air:FareInfo> <air:FareInfo Key="EUJMfYg0nDKA56Lx0BAAAA==" FareBasis="BKKRRT" PassengerTypeCode="ADT" Origin="RGN" Destination="ICN" EffectiveDate="2020-12-07T15:42:00.000+09:00" DepartureDate="2021-03-10" Amount="KRW447400" NegotiatedFare="false" NotValidAfter="2021-10-31" TaxAmount="KRW29100"> <air:FareRuleKey FareInfoRef="EUJMfYg0nDKA56Lx0BAAAA==" ProviderCode="1G">6UUVoSldxwj78CpAnaARxMbKj3F8T9EyxsqPcXxP0TLGyo9xfE/RMsuWFfXVd1OAly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5kNFyxTHHXixWa1uaqI55k3aSkvhp2ybYnf7C+5vZk7pUBnbC0ym+/AyGqh8JIaqL/2sBREtp5QiciwyHj9cnhivI8SiNdkZ4X+hNfHEXoxUV3b2b+cmv9gFHVWNccKgf3YiJg11o1HBY5hoVUuDw7jCWHL4kjH8ZqQR/cHoRjBY749NNdr1Ex9Y8HXDzOyArKRdFu7MqSAy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fHna1H5QsLdGaNi6zOfbTtY770mJHGJ8McMBwbyQld6LsZ4E6vLIg0alTwySVASvjW82hE30gJ5E=</air:FareRuleKey> <air:Brand Key="EUJMfYg0nDKA56Lx0BAAAA==" BrandID="171039" Name="Economy Value" UpSellBrandFound="false" Carrier="8M" BrandTier="0002"> <air:Title Type="External" LanguageCode="EN">Economy Value</air:Title> <air:Title Type="Short" LanguageCode="EN">Econ Value</air:Title> <air:Text Type="MarketingConsumer" LanguageCode="EN">ECONOMY VALUE FARE includes: - 20Kg Baggage Allowance - 7Kg Hand carry - In-Flight Meal Service - Seat selection via agents/8M contact centre/check-in - Rebooking/Go Show permitted - For round trip: Partial refund only permitted for Y-booking class - Name Change/No Show permitted with a fee • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Text Type="Upsell" LanguageCode="EN">Book onto Economy Value for more ticketing flexibility!</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">ECONOMY VALUE FARE includes: - 20Kg Baggage Allowance - 7Kg Hand carry - In-Flight Meal Service - Seat selection via agents/8M contact centre/check-in - Rebooking/Go Show permitted - For round trip: Partial refund only permitted for Y-booking class - Name Change/No Show permitted with a fee • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Text Type="Strapline" LanguageCode="EN">Low Fare! Feel the Comfort & Enjoy Full Service</air:Text> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_62309.jpg</air:ImageLocation> <air:ImageLocation Type="Consumer" ImageWidth="475" ImageHeight="303">https://cdn.travelport.com/myanmarairwaysint/8M_general_large_62310.jpg</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKA66Lx0BAAAA==" Chargeable="Included in the brand" OptionalServicesRuleRef="EUJMfYg0nDKA76Lx0BAAAA==" Tag="Checked Baggage" DisplayOrder="1"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Baggage Allowance</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123540.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123540.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Check in your bags for extra convenience</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">- Economy Class - 20KG - Business Class - 30KG - Diamond Card Member - Extra 20KG - Ruby Card Member - Extra 10KG - Hand carry - 7 KG</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">- Economy Class - 20KG - Business Class - 30KG - Diamond Card Member - Extra 20KG - Ruby Card Member - Extra 10KG - Hand carry - 7 KG</air:Text> <air:Title Type="External" LanguageCode="EN">Baggage Allowance</air:Title> <air:Title Type="Short" LanguageCode="EN">Y,X,20,Bag</air:Title> </air:OptionalService> <air:OptionalService Type="Baggage" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKA86Lx0BAAAA==" SecondaryType="CY" Chargeable="Included in the brand" OptionalServicesRuleRef="EUJMfYg0nDKA96Lx0BAAAA==" Tag="Carry On Hand Baggage" DisplayOrder="2"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Carry on bags</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4604.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4604.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Taking bags on board</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Take on board one small bag max 7kg (max 23x34x58cm).</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Take on board one small bag max 7kg (max 23x34x58cm).</air:Text> <air:Title Type="External" LanguageCode="EN">Carry on bags</air:Title> <air:Title Type="Short" LanguageCode="EN">X,1,7,CY</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKA+6Lx0BAAAA==" SecondaryType="VC" Chargeable="Available for a charge" Tag="Rebooking" DisplayOrder="3"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Name Change</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> </com:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Name Change</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Name Change fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Name Change fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Title Type="External" LanguageCode="EN">Name Change</air:Title> <air:Title Type="Short" LanguageCode="EN">Name Chang</air:Title> </air:OptionalService> <air:OptionalService Type="RuleOverride" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKA/6Lx0BAAAA==" SecondaryType="31" Chargeable="Included in the brand" Tag="Rebooking" DisplayOrder="3"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Change Flight Date</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123543.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123543.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Your desired flight date</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">We understand that from time to time you may need to amend your reservation. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">We understand that from time to time you may need to amend your reservation. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Title Type="External" LanguageCode="EN">Change Flight Date</air:Title> <air:Title Type="Short" LanguageCode="EN">Rebooking</air:Title> </air:OptionalService> <air:OptionalService Type="RuleOverride" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAA7Lx0BAAAA==" SecondaryType="33" Chargeable="Available for a charge" OptionalServicesRuleRef="EUJMfYg0nDKAB7Lx0BAAAA==" Tag="Refund" DisplayOrder="4"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Refunds</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Get your money back!!</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">We understand that from time to time you may need to cancel your reservation. The amount you will receive in refund will depend on the route and class booked.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">We understand that from time to time you may need to cancel your reservation. The amount you will receive in refund will depend on the route and class booked.</air:Text> <air:Title Type="External" LanguageCode="EN">Refunds</air:Title> <air:Title Type="Short" LanguageCode="EN">Refunds</air:Title> </air:OptionalService> <air:OptionalService Type="PreReservedSeatAssignment" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAC7Lx0BAAAA==" Chargeable="Included in the brand" Tag="Seat Assignment" DisplayOrder="5"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Seating</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4602.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4602.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Your preferred choice of seat</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Advanced seat selection may be made via agents or 8M contact centre. Otherwise seats requests may also be made during check in. • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Advanced seat selection may be made via agents or 8M contact centre. Otherwise seats requests may also be made during check in. • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Title Type="External" LanguageCode="EN">Seating</air:Title> <air:Title Type="Short" LanguageCode="EN">Seating</air:Title> </air:OptionalService> <air:OptionalService Type="MealOrBeverage" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAD7Lx0BAAAA==" Chargeable="Included in the brand" Tag="Meals and Beverages" DisplayOrder="6"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Inflight Meal</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123544.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123544.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">On board catering</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Inflight meal is included on your flight. Enjoy it!</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Inflight meal is included on your flight. Enjoy it!</air:Text> <air:Title Type="External" LanguageCode="EN">Inflight Meal</air:Title> <air:Title Type="Short" LanguageCode="EN">Meals</air:Title> </air:OptionalService> <air:OptionalService Type="InFlightEntertainment" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAE7Lx0BAAAA==" Chargeable="Included in the brand" Tag="In Flight Entertainment" DisplayOrder="12"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>MAI WiFi Inflight Entertainment</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123546.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123546.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Movies, music and more</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Myanmar Airways international is offering wireless inflight entertainment to all its passengers! With MAI WIFI Inflight Entertainment, passengers will be able to enjoy hours of entertainment onboard,with access to movies,shows, music albums and even games. 3 easy steps to enjoy MAI WIFI Inflight Entertainment: 1) Download MAI WIFI App before your flight 2) When onboard, connect to "maiair" wirelessly 3) Launch the MAI WIFI App, sit back and enjoy your flight!</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Myanmar Airways international is offering wireless inflight entertainment to all its passengers! With MAI WIFI Inflight Entertainment, passengers will be able to enjoy hours of entertainment onboard,with access to movies,shows, music albums and even games. 3 easy steps to enjoy MAI WIFI Inflight Entertainment: 1) Download MAI WIFI App before your flight 2) When onboard, connect to "maiair" wirelessly 3) Launch the MAI WIFI App, sit back and enjoy your flight!</air:Text> <air:Title Type="External" LanguageCode="EN">MAI WiFi Inflight Entertainment</air:Title> <air:Title Type="Short" LanguageCode="EN">MAI IFE</air:Title> </air:OptionalService> <air:OptionalService Type="InFlightEntertainment" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAF7Lx0BAAAA==" SecondaryType="IT" Chargeable="Included in the brand" Tag="WiFi" DisplayOrder="7"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Inflight WiFi</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_59134.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_59134.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Inflight WiFi</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Inflight internet access is only available on selected aircraft • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Inflight internet access is only available on selected aircraft • Please note that if the flight is operated by another airline then the onboard product or service may be different to that described above.</air:Text> <air:Title Type="External" LanguageCode="EN">Inflight WiFi</air:Title> <air:Title Type="Short" LanguageCode="EN">WiFi</air:Title> </air:OptionalService> <air:OptionalService Type="Standby" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAG7Lx0BAAAA==" Chargeable="Included in the brand" Tag="Other" DisplayOrder="999"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Go Show</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> </com:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Go Show</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Go show fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Go show fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Title Type="External" LanguageCode="EN">Go Show</air:Title> <air:Title Type="Short" LanguageCode="EN">Go Show</air:Title> </air:OptionalService> <air:OptionalService Type="TravelServices" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAH7Lx0BAAAA==" SecondaryType="NS" Chargeable="Available for a charge" Tag="Refund" DisplayOrder="4"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>No Show</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_80788.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">No Show</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Noshow fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Noshow fees may apply. The amount you will need to pay will depend on the route and class booked.</air:Text> <air:Title Type="External" LanguageCode="EN">No Show</air:Title> <air:Title Type="Short" LanguageCode="EN">No Show</air:Title> </air:OptionalService> <air:OptionalService Type="TravelServices" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAI7Lx0BAAAA==" Chargeable="Not offered" OptionalServicesRuleRef="EUJMfYg0nDKAJ7Lx0BAAAA==" Tag="Other" DisplayOrder="999"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Priority Check-In</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123547.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_123547.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Skip Queuing</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Beat the queues at the airport.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Beat the queues at the airport.</air:Text> <air:Title Type="External" LanguageCode="EN">Priority Check-In</air:Title> <air:Title Type="Short" LanguageCode="EN">Priority</air:Title> </air:OptionalService> <air:OptionalService Type="TravelServices" CreateDate="2020-12-07T06:42:34.761+00:00" Key="EUJMfYg0nDKAK7Lx0BAAAA==" SecondaryType="PR" Chargeable="Not offered" Tag="Priority Boarding" DisplayOrder="9"> <com:ServiceData AirSegmentRef="EUJMfYg0nDKAF6Lx0BAAAA=="/> <com:ServiceInfo> <com:Description>Priority boarding</com:Description> <com:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4603.jpg"/> <com:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/myanmarairwaysint/8M_general_medium_4603.jpg"/> </com:ServiceInfo> <air:EMD AssociatedItem="Flight"/> <air:Text Type="Strapline" LanguageCode="EN">Be one of the first to board the plane</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Board the aircraft with priority.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Board the aircraft with priority.</air:Text> <air:Title Type="External" LanguageCode="EN">Priority boarding</air:Title> <air:Title Type="Short" LanguageCode="EN">Priority</air:Title> </air:OptionalService> <air:OptionalServiceRules Key="EUJMfYg0nDKA76Lx0BAAAA=="> <com:Remarks>Y,1,KG,20,BAG</com:Remarks> </air:OptionalServiceRules> <air:OptionalServiceRules Key="EUJMfYg0nDKA96Lx0BAAAA=="> <com:Remarks>Y,1,KG,7,CY - W23,H34,L58,CM</com:Remarks> </air:OptionalServiceRules> <air:OptionalServiceRules Key="EUJMfYg0nDKAB7Lx0BAAAA=="> <com:Remarks>More than 24hr from flight departure : FOC Less than 24hr from flight departure : Apply Fees</com:Remarks> </air:OptionalServiceRules> <air:OptionalServiceRules Key="EUJMfYg0nDKAJ7Lx0BAAAA=="> <com:Remarks>Entitled for SSP members and business class passengers.</com:Remarks> </air:OptionalServiceRules> </air:OptionalServices> <air:Rules> <air:RulesText> </air:RulesText> </air:Rules> </air:Brand> </air:FareInfo> <air:BookingInfo BookingCode="M" CabinClass="Economy" FareInfoRef="EUJMfYg0nDKA46Lx0BAAAA==" SegmentRef="EUJMfYg0nDKAD6Lx0BAAAA==" HostTokenRef="EUJMfYg0nDKAx6Lx0BAAAA=="/> <air:BookingInfo BookingCode="B" CabinClass="Economy" FareInfoRef="EUJMfYg0nDKA56Lx0BAAAA==" SegmentRef="EUJMfYg0nDKAF6Lx0BAAAA==" HostTokenRef="EUJMfYg0nDKAy6Lx0BAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW28000" Key="EUJMfYg0nDKA06Lx0BAAAA=="/> <air:TaxInfo Category="C7" Amount="KRW7200" Key="EUJMfYg0nDKA16Lx0BAAAA=="/> <air:TaxInfo Category="MM" Amount="KRW21900" Key="EUJMfYg0nDKA26Lx0BAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW7200" Key="EUJMfYg0nDKA36Lx0BAAAA=="/> <air:FareCalc>SEL 8M RGN 281.15MKKRRT 8M SEL 396.94BKKRRT NUC678.09END ROE1127.13192</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="ADT01" /><!-- PricePTCOnly="true" --> <air:CancelPenalty PenaltyApplies="Anytime"> <air:Percentage>0.00</air:Percentage> </air:CancelPenalty> <air:AirPricingModifiers FaresIndicator="AllFares"/><!-- 추가 --> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="ICN" Destination="RGN" Carrier="8M"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/8M</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>23K</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="RGN" Destination="ICN" Carrier="8M"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/8M</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>23K</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="ICN" Destination="RGN" Carrier="8M"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="KRW0" ApproximateBasePrice="KRW0" TotalPrice="KRW0" ApproximateTotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO15LB/7KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="RGN" Destination="ICN" Carrier="8M"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="MMK0" TotalPrice="MMK0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO15LB/7KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> </air:BaggageAllowances> </air:AirPricingInfo> <com:HostToken Key="EUJMfYg0nDKAx6Lx0BAAAA==">GFB10101ADT00 01MKKRRT 010001#GFB200010101NADTV3008KY021207000199SITAR1F#GFMCERT008NKY02 8M ADTMKKRRT</com:HostToken> <com:HostToken Key="EUJMfYg0nDKAy6Lx0BAAAA==">GFB10101ADT00 02BKKRRT 010002#GFB200010102NADTV3008KY031177000199SITAR1F#GFMCERS008NKY03 8M ADTBKKRRT</com:HostToken> </air:AirPricingSolution> <com:ActionStatus Type="ACTIVE" ProviderCode="1G"> <com:Remark></com:Remark> </com:ActionStatus> </univ:AirCreateReservationReq> </soapenv:Body> </soapenv:Envelope> |
AirCreateReservationRsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <universal:AirCreateReservationRsp TraceId="2020012818322322" TransactionId="2D0B694F0A0E7C61C6A519944CDF22F4" ResponseTime="2788" xmlns:universal="http://www.travelport.com/schema/universal_v50_0" xmlns:common_v50_0="http://www.travelport.com/schema/common_v50_0" xmlns:air="http://www.travelport.com/schema/air_v50_0"> <common_v50_0:ResponseMessage Code="13566" Type="Warning" ProviderCode="1G">Brand optional services were filtered out as they are not offered in the brand or are only available at a charge.</common_v50_0:ResponseMessage> <common_v50_0:ResponseMessage Code="3824" Type="Warning" ProviderCode="1G">The fare HostToken has been ignored. The BrandTier has been applied.</common_v50_0:ResponseMessage> <universal:UniversalRecord LocatorCode="BNF4OK" Version="0" Status="Active"> <common_v50_0:BookingTraveler Key="Z/TNfYhxnDKAOhPsOAAAAA==" TravelerType="ADT" DOB="1977-01-01" Gender="M" ElStat="A"> <common_v50_0:BookingTravelerName Prefix="MR" First="SIRST" Last="HEO"/> <common_v50_0:PhoneNumber Key="Z/TNfYhxnDKAPhPsOAAAAA==" Type="Mobile" Location="SEL" Number="01071099999" ElStat="A"> <common_v50_0:ProviderReservationInfoRef Key="Z/TNfYhxnDKAdvRsOAAAAA=="/> </common_v50_0:PhoneNumber> <common_v50_0:Email Key="Z/TNfYhxnDKAQhPsOAAAAA==" Type="Home" EmailID="kor@soft.co.kr" ElStat="A"> <common_v50_0:ProviderReservationInfoRef Key="Z/TNfYhxnDKAdvRsOAAAAA=="/> </common_v50_0:Email> </common_v50_0:BookingTraveler> <common_v50_0:ActionStatus Key="Z/TNfYhxnDKAYhPsOAAAAA==" Type="ACTIVE" ProviderReservationInfoRef="Z/TNfYhxnDKAdvRsOAAAAA==" ProviderCode="1G" ElStat="A"/> <universal:ProviderReservationInfo Key="Z/TNfYhxnDKAdvRsOAAAAA==" ProviderCode="1G" LocatorCode="TSJ33T" CreateDate="2020-12-04T09:18:13.857+00:00" ModifiedDate="2020-12-04T09:18:13.857+00:00" HostCreateDate="2020-12-04" OwningPCC="7ZS4"/> <air:AirReservation LocatorCode="BNF4PO" CreateDate="2020-12-04T09:18:13.484+00:00" ModifiedDate="2020-12-04T09:18:13.857+00:00"> <common_v50_0:SupplierLocator SupplierCode="KC" SupplierLocatorCode="L7CZDQ" ProviderReservationInfoRef="Z/TNfYhxnDKAdvRsOAAAAA==" CreateDateTime="2020-12-04T09:18:00.000+00:00"/> <common_v50_0:BookingTravelerRef Key="Z/TNfYhxnDKAOhPsOAAAAA=="/> <common_v50_0:ProviderReservationInfoRef Key="Z/TNfYhxnDKAdvRsOAAAAA=="/> <air:AirSegment Key="u1eQfYMynDKA1yf9NAAAAA==" Group="0" Carrier="KC" CabinClass="Economy" FlightNumber="910" ProviderCode="1G" Origin="ICN" Destination="ALA" DepartureTime="2021-04-12T11:25:00.000+09:00" ArrivalTime="2021-04-12T15:15:00.000+06:00" TravelTime="410" Distance="2602" ClassOfService="E" ETicketability="No" Equipment="32Q" Status="HK" ChangeOfPlane="false" GuaranteedPaymentCarrier="No" ProviderReservationInfoRef="Z/TNfYhxnDKAdvRsOAAAAA==" TravelOrder="1" ProviderSegmentOrder="1" OptionalServicesIndicator="false" AvailabilitySource="S" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="O and D cache or polled status used with different local status" ElStat="A"> <air:FlightDetails Key="Z/TNfYhxnDKAfvRsOAAAAA==" Origin="ICN" Destination="ALA" DepartureTime="2021-04-12T11:25:00.000+09:00" ArrivalTime="2021-04-12T15:15:00.000+06:00" FlightTime="410" TravelTime="410" Equipment="32Q" OriginTerminal="1" AutomatedCheckin="false" ElStat="A"/> <common_v50_0:SellMessage>DEPARTS ICN TERMINAL 1</common_v50_0:SellMessage> <common_v50_0:SellMessage>ADD ADVANCE PASSENGER INFORMATION SSRS DOCA/DOCO/DOCS</common_v50_0:SellMessage> <common_v50_0:SellMessage>PERSONAL DATA WHICH IS PROVIDED TO US IN CONNECTION</common_v50_0:SellMessage> <common_v50_0:SellMessage>WITH YOUR TRAVEL MAY BE PASSED TO GOVERNMENT AUTHORITIES</common_v50_0:SellMessage> <common_v50_0:SellMessage>FOR BORDER CONTROL AND AVIATION SECURITY PURPOSES</common_v50_0:SellMessage> </air:AirSegment> <air:AirPricingInfo Key="u1eQfYMynDKA5yf9NAAAAA==" TotalPrice="KRW479200" BasePrice="KRW451200" ApproximateTotalPrice="KRW479200" ApproximateBasePrice="KRW451200" Taxes="KRW28000" LatestTicketingTime="2020-12-04T23:59:00.000+09:00" TrueLastDateToTicket="2020-12-07T23:59:00.000+09:00" PricingMethod="Guaranteed" Refundable="true" IncludesVAT="false" ETicketability="Yes" ProviderCode="1G" ProviderReservationInfoRef="Z/TNfYhxnDKAdvRsOAAAAA==" AirPricingInfoGroup="1" PricingType="StoredFare" ElStat="A" FareCalculationInd="G"> <air:FareInfo Key="u1eQfYMynDKA7yf9NAAAAA==" FareBasis="EFFO" PassengerTypeCode="ADT" Origin="ICN" Destination="ALA" EffectiveDate="2020-12-04T00:00:00.000+09:00" Amount="NUC400.30" PseudoCityCode="7ZS4" ElStat="A"> <common_v50_0:Endorsement Value="NONENDO/KCONLY"/> <air:BaggageAllowance> <air:NumberOfPieces>2</air:NumberOfPieces> </air:BaggageAllowance> <air:Brand Key="u1eQfYMynDKA7yf9NAAAAA==" BrandID="680361" Name="ECONOMY PLUS" Carrier="KC" BrandTier="0003"> <air:Title Type="External" LanguageCode="EN">Plus</air:Title> <air:Title Type="Short" LanguageCode="EN">PLUS</air:Title> <air:Text Type="ATPCO" LanguageCode="EN">//0L5/C/CARRY ON BAG UP TO 8KG//050/Z/BASICSEAT//06M/Z/NOMAD CLUB POINTS 150PERCENT//0FA/C/23KG 2P BAGGAGEALLOWANCE//07G/Z/PRIORETY SERVICES//068/Z/CHANGEANYTIME//0BX/F/LOUNGE ACCESS FOR ACHARGE//056/Z/REFUND</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Your PLUS fare includes: • 2 pieces of free checked luggage (up to 23 KG each) • Hand baggage • Advanced seat reservation • Changes and refunds permitted • Meals and beverages • Entertainment • 150% Nomad Club bonus points • Priority check-in • WiFi not available • Please note that if the flight is operated by another airline then the onboard product or service maybe different to that described above.</air:Text> <air:Text Type="Upsell" LanguageCode="EN">Upgrade to PLUS for a fully flexible fare option with increased checked baggage allowance.</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Your PLUS fare includes: • 2 pieces of free checked luggage (up to 23 KG each) • Hand baggage • Advanced seat reservation • Changes and refunds permitted • Meals and beverages • Entertainment • 150% Nomad Club bonus points • Priority check-in • WiFi not available • Please note that if the flight is operated by another airline then the onboard product or service maybe different to that described above.</air:Text> <air:Text Type="Strapline" LanguageCode="EN">The fully flexible fare option with increased checked baggage allowance</air:Text> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/airastana/KC_general_medium_138728.jpg</air:ImageLocation> <air:ImageLocation Type="Consumer" ImageWidth="1300" ImageHeight="630">https://cdn.travelport.com/airastana/KC_general_large_80670.png</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="0FA" Key="u1eQfYMynDKA9yf9NAAAAA==" Chargeable="Included in the brand" OptionalServicesRuleRef="u1eQfYMynDKA+yf9NAAAAA==" Tag="Checked Baggage" DisplayOrder="1"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Checked baggage 1x23kg</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2784.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2784.jpg"/> </common_v50_0:ServiceInfo> <air:EMD AssociatedItem="Chargeable Baggage"/> <air:Text Type="Strapline" LanguageCode="EN">Check in your bags for extra convenience</air:Text> <air:Title Type="External" LanguageCode="EN">Checked baggage 1x23kg</air:Title> <air:Title Type="Short" LanguageCode="EN">HoldBag</air:Title> </air:OptionalService> <air:OptionalService Type="Baggage" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="0L5" Key="u1eQfYMynDKA/yf9NAAAAA==" SecondaryType="CY" Chargeable="Included in the brand" OptionalServicesRuleRef="u1eQfYMynDKAAzf9NAAAAA==" Tag="Carry On Hand Baggage" DisplayOrder="2"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Carry on bag 1x8kg</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2785.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2785.jpg"/> </common_v50_0:ServiceInfo> <air:EMD AssociatedItem="Chargeable Baggage"/> <air:Text Type="Strapline" LanguageCode="EN">Taking bags on board</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Carry on 1x8kg bag max 126LCM.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Carry on 1x8kg bag max 126LCM.</air:Text> <air:Title Type="External" LanguageCode="EN">Carry on bag 1x8kg</air:Title> <air:Title Type="Short" LanguageCode="EN">CarryBag</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="06M" Key="u1eQfYMynDKADzf9NAAAAA==" SecondaryType="FR" Chargeable="Included in the brand" Tag="Mileage Accrual" DisplayOrder="10"> <common_v50_0:ServiceInfo> <common_v50_0:Description>150% miles earned</common_v50_0:Description> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2790.jpg"/> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2790.jpg"/> </common_v50_0:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Earn and save</air:Text> <air:Title Type="External" LanguageCode="EN">150% miles earned</air:Title> <air:Title Type="Short" LanguageCode="EN">150PCTMLS</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="07G" Key="u1eQfYMynDKAEzf9NAAAAA==" SecondaryType="PS" Chargeable="Included in the brand" Tag="Priority Services" DisplayOrder="15"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Priority services</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2792.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2792.jpg"/> </common_v50_0:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Beat the queues at the airport</air:Text> <air:Title Type="External" LanguageCode="EN">Priority services</air:Title> <air:Title Type="Short" LanguageCode="EN">Priority</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="056" Key="u1eQfYMynDKAFzf9NAAAAA==" SecondaryType="RF" Chargeable="Included in the brand" Tag="Refund" DisplayOrder="4"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Refundable ticket</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2789.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2789.jpg"/> </common_v50_0:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Cancelling your reservation</air:Text> <air:Title Type="External" LanguageCode="EN">Refundable ticket</air:Title> <air:Title Type="Short" LanguageCode="EN">Refunds</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="050" Key="u1eQfYMynDKAGzf9NAAAAA==" SecondaryType="SE" Chargeable="Included in the brand" Tag="Seat Assignment" DisplayOrder="5"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Basic seat reservation</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2787.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2787.jpg"/> </common_v50_0:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Pre reserve your preferred seat in advance</air:Text> <air:Text Type="MarketingAgent" LanguageCode="EN">Please note that if the flight is operated by another airline then the options to pre assign seats might be different.</air:Text> <air:Text Type="MarketingConsumer" LanguageCode="EN">Please note that if the flight is operated by another airline then the options to pre assign seats might be different.</air:Text> <air:Title Type="External" LanguageCode="EN">Basic seat reservation</air:Title> <air:Title Type="Short" LanguageCode="EN">Seating</air:Title> </air:OptionalService> <air:OptionalService Type="Branded Fares" CreateDate="2020-12-04T08:54:59.073+00:00" ElStat="A" ServiceSubCode="068" Key="u1eQfYMynDKAHzf9NAAAAA==" SecondaryType="VC" Chargeable="Included in the brand" Tag="Rebooking" DisplayOrder="3"> <common_v50_0:ServiceInfo> <common_v50_0:Description>Change anytime</common_v50_0:Description> <common_v50_0:MediaItem caption="Agent" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2788.jpg"/> <common_v50_0:MediaItem caption="Consumer" height="60" width="60" url="https://cdn.travelport.com/airastana/KC_general_medium_2788.jpg"/> </common_v50_0:ServiceInfo> <air:Text Type="Strapline" LanguageCode="EN">Making changes to your reservation</air:Text> <air:Title Type="External" LanguageCode="EN">Change anytime</air:Title> <air:Title Type="Short" LanguageCode="EN">ChgAnytime</air:Title> </air:OptionalService> </air:OptionalServices> </air:Brand> </air:FareInfo> <air:BookingInfo BookingCode="E" CabinClass="Economy" FareInfoRef="u1eQfYMynDKA7yf9NAAAAA==" SegmentRef="u1eQfYMynDKA1yf9NAAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW28000" Key="u1eQfYMynDKA6yf9NAAAAA=="/> <air:FareCalc>SEL KC ALA 400.30EFFO NUC400.30END ROE1127.13192</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="Z/TNfYhxnDKAOhPsOAAAAA=="> <air:FareGuaranteeInfo GuaranteeDate="2020-12-04" GuaranteeType="Guaranteed"/> </air:PassengerType> <common_v50_0:BookingTravelerRef Key="Z/TNfYhxnDKAOhPsOAAAAA=="/> <air:CancelPenalty NoShow="true" PenaltyApplies="Anytime"> <air:Percentage>0.00</air:Percentage> </air:CancelPenalty> <air:TicketingModifiersRef Key="Z/TNfYhxnDKAjvRsOAAAAA=="/> </air:AirPricingInfo> <air:TicketingModifiers PlatingCarrier="KC" Key="Z/TNfYhxnDKAjvRsOAAAAA==" ElStat="A"> <air:DocumentSelect IssueElectronicTicket="true"/> </air:TicketingModifiers> </air:AirReservation> <common_v50_0:AccountingRemark Key="Z/TNfYhxnDKAXhPsOAAAAA==" Category="FT" TypeInGds="Other" ProviderCode="1G" ProviderReservationInfoRef="Z/TNfYhxnDKAdvRsOAAAAA==" ElStat="A"> <common_v50_0:RemarkData>X/-/-T10000112283</common_v50_0:RemarkData> </common_v50_0:AccountingRemark> <common_v50_0:AgencyInfo> <common_v50_0:AgentAction ActionType="Created" AgentCode="uAPI4212155436-316f1d76" BranchCode="P3661397" AgencyCode="S3661389" EventTime="2020-12-04T09:18:11.310+00:00"/> </common_v50_0:AgencyInfo> <common_v50_0:AgencyContactInfo> <common_v50_0:PhoneNumber Key="Z/TNfYhxnDKAlvRsOAAAAA==" Type="Agency" Location="SEL" Number="0220753222" Text="LOTTE TOUR-T" ElStat="A"> <common_v50_0:ProviderReservationInfoRef Key="Z/TNfYhxnDKAdvRsOAAAAA=="/> </common_v50_0:PhoneNumber> <common_v50_0:PhoneNumber Key="Z/TNfYhxnDKAnvRsOAAAAA==" Type="Agency" Location="SEL" Number="KOR//SOFT.CO.KR" ElStat="A"> <common_v50_0:ProviderReservationInfoRef Key="Z/TNfYhxnDKAdvRsOAAAAA=="/> </common_v50_0:PhoneNumber> </common_v50_0:AgencyContactInfo> </universal:UniversalRecord> </universal:AirCreateReservationRsp> </SOAP:Body> </SOAP:Envelope> |