quicktravel_client 3.6.1 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +4 -2
  4. data/CHANGELOG.md +12 -3
  5. data/README.md +1 -1
  6. data/lib/quick_travel.rb +2 -0
  7. data/lib/quick_travel/adapter.rb +8 -58
  8. data/lib/quick_travel/address.rb +4 -2
  9. data/lib/quick_travel/adjustment.rb +3 -2
  10. data/lib/quick_travel/background_check.rb +4 -2
  11. data/lib/quick_travel/bed_configuration.rb +3 -2
  12. data/lib/quick_travel/bed_requirement.rb +3 -2
  13. data/lib/quick_travel/booking.rb +10 -1
  14. data/lib/quick_travel/checkout.rb +1 -1
  15. data/lib/quick_travel/client.rb +3 -2
  16. data/lib/quick_travel/contact.rb +4 -1
  17. data/lib/quick_travel/init_from_hash.rb +54 -1
  18. data/lib/quick_travel/passenger.rb +7 -2
  19. data/lib/quick_travel/passenger_price_break.rb +3 -2
  20. data/lib/quick_travel/passenger_split.rb +5 -0
  21. data/lib/quick_travel/property.rb +2 -1
  22. data/lib/quick_travel/property_facility.rb +3 -2
  23. data/lib/quick_travel/reservation.rb +4 -0
  24. data/lib/quick_travel/resource.rb +11 -2
  25. data/lib/quick_travel/resource_category.rb +5 -1
  26. data/lib/quick_travel/resource_group.rb +9 -0
  27. data/lib/quick_travel/room_facility.rb +3 -2
  28. data/lib/quick_travel/route_stop.rb +11 -2
  29. data/lib/quick_travel/service.rb +3 -2
  30. data/lib/quick_travel/version.rb +1 -1
  31. data/quicktravel_client.gemspec +2 -1
  32. data/spec/adapter_spec.rb +2 -2
  33. data/spec/booking_spec.rb +14 -6
  34. data/spec/checkout_spec.rb +182 -0
  35. data/spec/product_spec.rb +5 -5
  36. data/spec/region_spec.rb +2 -2
  37. data/spec/reservation_spec.rb +2 -6
  38. data/spec/support/cassettes/accommodation_reserve.yml +109 -51
  39. data/spec/support/cassettes/basic_product_scheduled_trips.yml +19 -33
  40. data/spec/support/cassettes/basic_product_scheduled_trips_multi_sector.yml +19 -27
  41. data/spec/support/cassettes/basic_product_scheduled_trips_unbookable.yml +9 -11
  42. data/spec/support/cassettes/booking_activate.yml +25 -28
  43. data/spec/support/cassettes/booking_cancel.yml +25 -28
  44. data/spec/support/cassettes/booking_create.yml +14 -15
  45. data/spec/support/cassettes/booking_create_accommodation.yml +62 -0
  46. data/spec/support/cassettes/booking_documents.yml +9 -11
  47. data/spec/support/cassettes/booking_non_existant.yml +8 -10
  48. data/spec/support/cassettes/booking_price_changes.yml +19 -17
  49. data/spec/support/cassettes/booking_show.yml +13 -14
  50. data/spec/support/cassettes/booking_update.yml +25 -27
  51. data/spec/support/cassettes/booking_with_documents.yml +35 -36
  52. data/spec/support/cassettes/booking_with_nested_attributes.yml +61 -61
  53. data/spec/support/cassettes/booking_with_price_changes.yml +27 -26
  54. data/spec/support/cassettes/checkout_client_token.yml +11 -13
  55. data/spec/support/cassettes/countries.yml +15 -93
  56. data/spec/support/cassettes/country_all.yml +15 -93
  57. data/spec/support/cassettes/create_reservation_fail.yml +8 -10
  58. data/spec/support/cassettes/create_reservation_with_booking.yml +15 -16
  59. data/spec/support/cassettes/locations.yml +12 -14
  60. data/spec/support/cassettes/opal_modern_pay_failed_booking.yml +62 -0
  61. data/spec/support/cassettes/opal_modern_pay_failed_create.yml +59 -0
  62. data/spec/support/cassettes/opal_modern_pay_failed_update.yml +57 -0
  63. data/spec/support/cassettes/opal_modern_pay_successful_booking.yml +62 -0
  64. data/spec/support/cassettes/opal_modern_pay_successful_response.yml +59 -0
  65. data/spec/support/cassettes/opal_modern_pay_successful_update_response.yml +59 -0
  66. data/spec/support/cassettes/opal_pay.yml +59 -0
  67. data/spec/support/cassettes/opal_pay_booking.yml +62 -0
  68. data/spec/support/cassettes/passenger_all.yml +11 -13
  69. data/spec/support/cassettes/payment_info.yml +9 -11
  70. data/spec/support/cassettes/price_quote.yml +17 -21
  71. data/spec/support/cassettes/product_date_range_bookability.yml +32 -48
  72. data/spec/support/cassettes/product_show.yml +13 -17
  73. data/spec/support/cassettes/product_show_as_agent.yml +14 -22
  74. data/spec/support/cassettes/product_type_all.yml +16 -14
  75. data/spec/support/cassettes/product_type_resource_categories.yml +9 -11
  76. data/spec/support/cassettes/product_type_resource_categories_tickets.yml +12 -14
  77. data/spec/support/cassettes/product_type_routes.yml +14 -16
  78. data/spec/support/cassettes/property.yml +16 -18
  79. data/spec/support/cassettes/property_types.yml +12 -14
  80. data/spec/support/cassettes/region_show.yml +11 -13
  81. data/spec/support/cassettes/reservation_resource.yml +62 -0
  82. data/spec/support/cassettes/reservation_with_extra_picks.yml +54 -60
  83. data/spec/support/cassettes/resource_category_all.yml +12 -14
  84. data/spec/support/cassettes/resource_category_all_for_product_type_8.yml +11 -13
  85. data/spec/support/cassettes/resource_fare_bases.yml +18 -23
  86. data/spec/support/cassettes/resource_show.yml +15 -17
  87. data/spec/support/cassettes/resource_with_price.yml +16 -18
  88. data/spec/support/cassettes/settings_basic.yml +9 -11
  89. data/spec/support/cassettes/tenant_switcher.yml +31 -27
  90. data/spec/support/cassettes/wrong_url.yml +25 -46
  91. data/spec/support/coverage_loader.rb +1 -1
  92. metadata +43 -7
@@ -18,22 +18,20 @@ http_interactions:
18
18
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
19
  Content-Type:
20
20
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
21
  Etag:
24
- - '"4b81caf850c90a277ec60621b06aae8b"'
22
+ - W/"9d087a36fd9911293c5f6497f0cf93b8"
25
23
  Cache-Control:
26
24
  - max-age=0, private, must-revalidate
27
25
  X-Request-Id:
28
- - ffcd6273b916fb54bfede404797a0348
26
+ - bf19abe7-2bbd-407c-8281-06d4acce2cab
29
27
  X-Runtime:
30
- - '0.133988'
31
- Vary:
32
- - Origin
28
+ - '0.211104'
33
29
  Date:
34
- - Fri, 01 Jan 2016 02:32:32 GMT
30
+ - Fri, 01 Jan 2016 02:32:22 GMT
35
31
  X-Rack-Cache:
36
32
  - miss
33
+ Vary:
34
+ - Origin
37
35
  X-Content-Type-Options:
38
36
  - nosniff
39
37
  X-Download-Options:
@@ -47,94 +45,18 @@ http_interactions:
47
45
  Server:
48
46
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
47
  Content-Length:
50
- - '41663'
48
+ - '106'
51
49
  Connection:
52
50
  - Keep-Alive
53
51
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTlhNTZiYjNiMDQzYmEwMDdjMDZkYWU1NzE1ZWE5ZDk1BjsAVEkiCXVzZXIGOwBGaQY%3D--581ac4929780ca144a9549374b63ff9bc1536036;
52
+ - _session_id=SWV5emlrV1ZrQUNJY1d5aHYrREVXUjRub0t3dUNHOTd3V1dGYVhaY3gxelRCMWZGVVY1MGFaaVREbkt2K2dWTDduR1hiS0t2VE5nOUVXRXprU2NQRXpqYkY4c0JYZmNSN2ZjV1JrY3d6SFE9LS1kdnRDQ3dTTCs5RldaeXU4L0tMZ0hRPT0%3D--ded21530c4d7e343a173eadbf42eadf0a75bb24a;
55
53
  path=/; HttpOnly
56
54
  body:
57
- encoding: UTF-8
58
- string: '[{"created_at":"2013-03-01T00:00:00+10:30","id":1,"iso_3166_code":"AD","latitude":42.3,"longitude":-1.3,"name":"Andorra","updated_at":"2013-03-01T00:00:00+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":2,"iso_3166_code":"AE","latitude":24.0,"longitude":-54.0,"name":"United
59
- Arab Emirates","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:01+10:30","id":3,"iso_3166_code":"AF","latitude":33.0,"longitude":-65.0,"name":"Afghanistan","updated_at":"2013-03-01T00:00:01+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":4,"iso_3166_code":"AG","latitude":17.03,"longitude":61.48,"name":"Antigua
60
- and Barbuda","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":5,"iso_3166_code":"AI","latitude":18.15,"longitude":63.1,"name":"Anguilla","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:03+10:30","id":6,"iso_3166_code":"AL","latitude":41.0,"longitude":-20.0,"name":"Albania","updated_at":"2013-03-01T00:00:03+10:30"},{"created_at":"2013-03-01T00:00:04+10:30","id":7,"iso_3166_code":"AM","latitude":40.0,"longitude":-45.0,"name":"Armenia","updated_at":"2013-03-01T00:00:04+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":8,"iso_3166_code":"AN","latitude":0.0,"longitude":0.0,"name":"Netherlands
61
- Antilles","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:05+10:30","id":9,"iso_3166_code":"AO","latitude":-12.3,"longitude":-18.3,"name":"Angola","updated_at":"2013-03-01T00:00:05+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":10,"iso_3166_code":"AQ","latitude":-90.0,"longitude":0.0,"name":"Antarctica","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:06+10:30","id":11,"iso_3166_code":"AR","latitude":-34.0,"longitude":64.0,"name":"Argentina","updated_at":"2013-03-01T00:00:06+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":12,"iso_3166_code":"AS","latitude":-14.2,"longitude":170.0,"name":"American
62
- Samoa","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":13,"iso_3166_code":"AT","latitude":47.2,"longitude":-13.2,"name":"Austria","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":14,"iso_3166_code":"AU","latitude":-27.0,"longitude":-133.0,"name":"Australia","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":15,"iso_3166_code":"AW","latitude":12.3,"longitude":69.58,"name":"Aruba","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":16,"iso_3166_code":"AX","latitude":0.0,"longitude":0.0,"name":"\u00c5land
63
- Islands","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:07+10:30","id":17,"iso_3166_code":"AZ","latitude":40.3,"longitude":-47.3,"name":"Azerbaijan","updated_at":"2013-03-01T00:00:07+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":18,"iso_3166_code":"BA","latitude":44.0,"longitude":-18.0,"name":"Bosnia
64
- and Herzegovina","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":19,"iso_3166_code":"BB","latitude":13.1,"longitude":59.32,"name":"Barbados","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:11+10:30","id":20,"iso_3166_code":"BD","latitude":24.0,"longitude":-90.0,"name":"Bangladesh","updated_at":"2013-03-01T00:00:11+10:30"},{"created_at":"2013-03-01T00:00:14+10:30","id":21,"iso_3166_code":"BE","latitude":50.5,"longitude":-4.0,"name":"Belgium","updated_at":"2013-03-01T00:00:14+10:30"},{"created_at":"2013-03-01T00:00:15+10:30","id":22,"iso_3166_code":"BF","latitude":13.0,"longitude":2.0,"name":"Burkina
65
- Faso","updated_at":"2013-03-01T00:00:15+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":23,"iso_3166_code":"BG","latitude":43.0,"longitude":-25.0,"name":"Bulgaria","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":24,"iso_3166_code":"BH","latitude":26.0,"longitude":-50.33,"name":"Bahrain","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":25,"iso_3166_code":"BI","latitude":-3.3,"longitude":-30.0,"name":"Burundi","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:17+10:30","id":26,"iso_3166_code":"BJ","latitude":9.3,"longitude":-2.15,"name":"Benin","updated_at":"2013-03-01T00:00:17+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":27,"iso_3166_code":"BL","latitude":17.9,"longitude":62.85,"name":"Saint
66
- Barth\u00e9lemy","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":28,"iso_3166_code":"BM","latitude":32.2,"longitude":64.45,"name":"Bermuda","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":29,"iso_3166_code":"BN","latitude":4.3,"longitude":-114.4,"name":"Brunei
67
- Darussalam","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":30,"iso_3166_code":"BO","latitude":-17.0,"longitude":65.0,"name":"Bolivia","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:18+10:30","id":31,"iso_3166_code":"BR","latitude":-10.0,"longitude":55.0,"name":"Brazil","updated_at":"2013-03-01T00:00:18+10:30"},{"created_at":"2013-03-01T00:00:19+10:30","id":32,"iso_3166_code":"BS","latitude":24.15,"longitude":76.0,"name":"Bahamas","updated_at":"2013-03-01T00:00:19+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":33,"iso_3166_code":"BT","latitude":27.3,"longitude":-90.3,"name":"Bhutan","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":34,"iso_3166_code":"BV","latitude":-54.26,"longitude":-3.24,"name":"Bouvet
68
- Island","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":35,"iso_3166_code":"BW","latitude":-22.0,"longitude":-24.0,"name":"Botswana","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:20+10:30","id":36,"iso_3166_code":"BY","latitude":53.0,"longitude":-28.0,"name":"Belarus","updated_at":"2013-03-01T00:00:20+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":37,"iso_3166_code":"BZ","latitude":17.15,"longitude":88.45,"name":"Belize","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":38,"iso_3166_code":"CA","latitude":60.0,"longitude":95.0,"name":"Canada","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":39,"iso_3166_code":"CC","latitude":-12.3,"longitude":-96.5,"name":"Cocos
69
- (Keeling) Islands","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:21+10:30","id":40,"iso_3166_code":"CD","latitude":0.0,"longitude":-25.0,"name":"Congo,
70
- The Democratic Republic Of The","updated_at":"2013-03-01T00:00:21+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":41,"iso_3166_code":"CF","latitude":7.0,"longitude":-21.0,"name":"Central
71
- African Republic","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":42,"iso_3166_code":"CG","latitude":-1.0,"longitude":-15.0,"name":"Congo","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:22+10:30","id":43,"iso_3166_code":"CH","latitude":47.0,"longitude":-8.0,"name":"Switzerland","updated_at":"2013-03-01T00:00:22+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":44,"iso_3166_code":"CI","latitude":8.0,"longitude":5.0,"name":"C\u00f4te
72
- D''Ivoire","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":45,"iso_3166_code":"CK","latitude":-21.14,"longitude":159.46,"name":"Cook
73
- Islands","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":46,"iso_3166_code":"CL","latitude":-30.0,"longitude":71.0,"name":"Chile","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":47,"iso_3166_code":"CM","latitude":6.0,"longitude":-12.0,"name":"Cameroon","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:23+10:30","id":48,"iso_3166_code":"CN","latitude":35.0,"longitude":-105.0,"name":"China","updated_at":"2013-03-01T00:00:23+10:30"},{"created_at":"2013-03-01T00:00:24+10:30","id":49,"iso_3166_code":"CO","latitude":4.0,"longitude":72.0,"name":"Colombia","updated_at":"2013-03-01T00:00:24+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":50,"iso_3166_code":"CR","latitude":10.0,"longitude":84.0,"name":"Costa
74
- Rica","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":51,"iso_3166_code":"CU","latitude":21.3,"longitude":80.0,"name":"Cuba","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:25+10:30","id":52,"iso_3166_code":"CV","latitude":16.0,"longitude":24.0,"name":"Cape
75
- Verde","updated_at":"2013-03-01T00:00:25+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":53,"iso_3166_code":"CX","latitude":-10.3,"longitude":-105.4,"name":"Christmas
76
- Island","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":54,"iso_3166_code":"CY","latitude":35.0,"longitude":-33.0,"name":"Cyprus","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":55,"iso_3166_code":"CZ","latitude":49.45,"longitude":-15.3,"name":"Czech
77
- Republic","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":56,"iso_3166_code":"DE","latitude":51.0,"longitude":-9.0,"name":"Germany","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:26+10:30","id":57,"iso_3166_code":"DJ","latitude":11.3,"longitude":-43.0,"name":"Djibouti","updated_at":"2013-03-01T00:00:26+10:30"},{"created_at":"2013-03-01T00:00:27+10:30","id":58,"iso_3166_code":"DK","latitude":56.0,"longitude":-10.0,"name":"Denmark","updated_at":"2013-03-01T00:00:27+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":59,"iso_3166_code":"DM","latitude":15.25,"longitude":61.2,"name":"Dominica","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":60,"iso_3166_code":"DO","latitude":19.0,"longitude":70.4,"name":"Dominican
78
- Republic","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":61,"iso_3166_code":"DZ","latitude":28.0,"longitude":-3.0,"name":"Algeria","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":62,"iso_3166_code":"EC","latitude":-2.0,"longitude":77.3,"name":"Ecuador","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:28+10:30","id":63,"iso_3166_code":"EE","latitude":59.0,"longitude":-26.0,"name":"Estonia","updated_at":"2013-03-01T00:00:28+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":64,"iso_3166_code":"EG","latitude":27.0,"longitude":-30.0,"name":"Egypt","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:29+10:30","id":65,"iso_3166_code":"EH","latitude":24.3,"longitude":13.0,"name":"Western
79
- Sahara","updated_at":"2013-03-01T00:00:29+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":66,"iso_3166_code":"ER","latitude":15.0,"longitude":-39.0,"name":"Eritrea","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:30+10:30","id":67,"iso_3166_code":"ES","latitude":40.0,"longitude":4.0,"name":"Spain","updated_at":"2013-03-01T00:00:30+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":68,"iso_3166_code":"ET","latitude":8.0,"longitude":-38.0,"name":"Ethiopia","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":69,"iso_3166_code":"FI","latitude":64.0,"longitude":-26.0,"name":"Finland","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":70,"iso_3166_code":"FJ","latitude":-18.0,"longitude":-175.0,"name":"Fiji","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":71,"iso_3166_code":"FK","latitude":-51.45,"longitude":59.0,"name":"Falkland
80
- Islands (Malvinas)","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:31+10:30","id":72,"iso_3166_code":"FM","latitude":6.55,"longitude":-158.15,"name":"Micronesia,
81
- Federated States Of","updated_at":"2013-03-01T00:00:31+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":73,"iso_3166_code":"FO","latitude":62.0,"longitude":7.0,"name":"Faroe
82
- Islands","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:32+10:30","id":74,"iso_3166_code":"FR","latitude":46.0,"longitude":-2.0,"name":"France","updated_at":"2013-03-01T00:00:32+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":75,"iso_3166_code":"GA","latitude":-1.0,"longitude":-11.45,"name":"Gabon","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:33+10:30","id":76,"iso_3166_code":"GB","latitude":54.0,"longitude":2.0,"name":"United
83
- Kingdom","updated_at":"2013-03-01T00:00:33+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":77,"iso_3166_code":"GD","latitude":12.07,"longitude":61.4,"name":"Grenada","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:42+10:30","id":78,"iso_3166_code":"GE","latitude":42.0,"longitude":-43.3,"name":"Georgia","updated_at":"2013-03-01T00:00:42+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":79,"iso_3166_code":"GF","latitude":4.0,"longitude":53.0,"name":"French
84
- Guiana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":80,"iso_3166_code":"GG","latitude":49.28,"longitude":2.35,"name":"Guernsey","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":81,"iso_3166_code":"GH","latitude":8.0,"longitude":2.0,"name":"Ghana","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":82,"iso_3166_code":"GI","latitude":36.08,"longitude":5.21,"name":"Gibraltar","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":83,"iso_3166_code":"GL","latitude":72.0,"longitude":40.0,"name":"Greenland","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":84,"iso_3166_code":"GM","latitude":13.28,"longitude":16.34,"name":"Gambia","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:43+10:30","id":85,"iso_3166_code":"GN","latitude":11.0,"longitude":10.0,"name":"Guinea","updated_at":"2013-03-01T00:00:43+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":86,"iso_3166_code":"GP","latitude":0.0,"longitude":0.0,"name":"Guadeloupe","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":87,"iso_3166_code":"GQ","latitude":2.0,"longitude":-10.0,"name":"Equatorial
85
- Guinea","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":88,"iso_3166_code":"GR","latitude":39.0,"longitude":-22.0,"name":"Greece","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":89,"iso_3166_code":"GS","latitude":-54.3,"longitude":37.0,"name":"South
86
- Georgia and the South Sandwich Islands","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:44+10:30","id":90,"iso_3166_code":"GT","latitude":15.3,"longitude":90.15,"name":"Guatemala","updated_at":"2013-03-01T00:00:44+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":91,"iso_3166_code":"GU","latitude":13.28,"longitude":-144.47,"name":"Guam","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":92,"iso_3166_code":"GW","latitude":12.0,"longitude":15.0,"name":"Guinea-Bissau","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":93,"iso_3166_code":"GY","latitude":5.0,"longitude":59.0,"name":"Guyana","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":94,"iso_3166_code":"HK","latitude":22.15,"longitude":-114.1,"name":"Hong
87
- Kong","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":95,"iso_3166_code":"HM","latitude":-53.06,"longitude":-72.31,"name":"Heard
88
- and McDonald Islands","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:45+10:30","id":96,"iso_3166_code":"HN","latitude":15.0,"longitude":86.3,"name":"Honduras","updated_at":"2013-03-01T00:00:45+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":97,"iso_3166_code":"HR","latitude":45.1,"longitude":-15.3,"name":"Croatia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":98,"iso_3166_code":"HT","latitude":19.0,"longitude":72.25,"name":"Haiti","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":99,"iso_3166_code":"HU","latitude":47.0,"longitude":-20.0,"name":"Hungary","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":100,"iso_3166_code":"ID","latitude":-5.0,"longitude":-120.0,"name":"Indonesia","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:46+10:30","id":101,"iso_3166_code":"IE","latitude":53.0,"longitude":8.0,"name":"Ireland","updated_at":"2013-03-01T00:00:46+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":102,"iso_3166_code":"IL","latitude":31.3,"longitude":-34.45,"name":"Israel","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":103,"iso_3166_code":"IM","latitude":54.15,"longitude":4.3,"name":"Isle
89
- of Man","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:47+10:30","id":104,"iso_3166_code":"IN","latitude":20.0,"longitude":-77.0,"name":"India","updated_at":"2013-03-01T00:00:47+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":105,"iso_3166_code":"IO","latitude":-6.0,"longitude":-71.3,"name":"British
90
- Indian Ocean Territory","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":106,"iso_3166_code":"IQ","latitude":33.0,"longitude":-44.0,"name":"Iraq","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":107,"iso_3166_code":"IR","latitude":32.0,"longitude":-53.0,"name":"Iran,
91
- Islamic Republic Of","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":108,"iso_3166_code":"IS","latitude":65.0,"longitude":18.0,"name":"Iceland","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:48+10:30","id":109,"iso_3166_code":"IT","latitude":42.5,"longitude":-12.5,"name":"Italy","updated_at":"2013-03-01T00:00:48+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":110,"iso_3166_code":"JE","latitude":49.15,"longitude":2.1,"name":"Jersey","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":111,"iso_3166_code":"JM","latitude":18.15,"longitude":77.3,"name":"Jamaica","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":112,"iso_3166_code":"JO","latitude":31.0,"longitude":-36.0,"name":"Jordan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":113,"iso_3166_code":"JP","latitude":36.0,"longitude":-138.0,"name":"Japan","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:49+10:30","id":114,"iso_3166_code":"KE","latitude":1.0,"longitude":-38.0,"name":"Kenya","updated_at":"2013-03-01T00:00:49+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":115,"iso_3166_code":"KG","latitude":41.0,"longitude":-75.0,"name":"Kyrgyzstan","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":116,"iso_3166_code":"KH","latitude":13.0,"longitude":-105.0,"name":"Cambodia","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":117,"iso_3166_code":"KI","latitude":1.25,"longitude":-173.0,"name":"Kiribati","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":118,"iso_3166_code":"KM","latitude":-12.1,"longitude":-44.15,"name":"Comoros","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":119,"iso_3166_code":"KN","latitude":17.2,"longitude":62.45,"name":"Saint
92
- Kitts And Nevis","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:50+10:30","id":120,"iso_3166_code":"KP","latitude":40.0,"longitude":-127.0,"name":"Korea,
93
- Democratic People''s Republic Of","updated_at":"2013-03-01T00:00:50+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":121,"iso_3166_code":"KR","latitude":37.0,"longitude":-127.3,"name":"Korea,
94
- Republic of","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":122,"iso_3166_code":"KW","latitude":29.3,"longitude":-45.45,"name":"Kuwait","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":123,"iso_3166_code":"KY","latitude":19.3,"longitude":80.3,"name":"Cayman
95
- Islands","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:51+10:30","id":124,"iso_3166_code":"KZ","latitude":48.0,"longitude":-68.0,"name":"Kazakhstan","updated_at":"2013-03-01T00:00:51+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":125,"iso_3166_code":"LA","latitude":18.0,"longitude":-105.0,"name":"Lao
96
- People''s Democratic Republic","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":126,"iso_3166_code":"LB","latitude":33.5,"longitude":-35.5,"name":"Lebanon","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":127,"iso_3166_code":"LC","latitude":13.53,"longitude":60.58,"name":"Saint
97
- Lucia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":128,"iso_3166_code":"LI","latitude":47.16,"longitude":-9.32,"name":"Liechtenstein","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":129,"iso_3166_code":"LK","latitude":7.0,"longitude":-81.0,"name":"Sri
98
- Lanka","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":130,"iso_3166_code":"LR","latitude":6.3,"longitude":9.3,"name":"Liberia","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:52+10:30","id":131,"iso_3166_code":"LS","latitude":-29.3,"longitude":-28.3,"name":"Lesotho","updated_at":"2013-03-01T00:00:52+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":132,"iso_3166_code":"LT","latitude":56.0,"longitude":-24.0,"name":"Lithuania","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":133,"iso_3166_code":"LU","latitude":49.45,"longitude":-6.1,"name":"Luxembourg","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":134,"iso_3166_code":"LV","latitude":57.0,"longitude":-25.0,"name":"Latvia","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:53+10:30","id":135,"iso_3166_code":"LY","latitude":25.0,"longitude":-17.0,"name":"Libya","updated_at":"2013-03-01T00:00:53+10:30"},{"created_at":"2013-03-01T00:00:54+10:30","id":136,"iso_3166_code":"MA","latitude":32.0,"longitude":5.0,"name":"Morocco","updated_at":"2013-03-01T00:00:54+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":137,"iso_3166_code":"MC","latitude":43.44,"longitude":-7.24,"name":"Monaco","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":138,"iso_3166_code":"MD","latitude":47.0,"longitude":-29.0,"name":"Moldova,
99
- Republic of","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":139,"iso_3166_code":"ME","latitude":42.3,"longitude":-19.18,"name":"Montenegro","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":140,"iso_3166_code":"MF","latitude":18.05,"longitude":63.57,"name":"Saint
100
- Martin","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":141,"iso_3166_code":"MG","latitude":-20.0,"longitude":-47.0,"name":"Madagascar","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:56+10:30","id":142,"iso_3166_code":"MH","latitude":9.0,"longitude":-168.0,"name":"Marshall
101
- Islands","updated_at":"2013-03-01T00:00:56+10:30"},{"created_at":"2013-03-01T00:00:57+10:30","id":143,"iso_3166_code":"MK","latitude":41.5,"longitude":-22.0,"name":"Macedonia,
102
- the Former Yugoslav Republic Of","updated_at":"2013-03-01T00:00:57+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":144,"iso_3166_code":"ML","latitude":17.0,"longitude":4.0,"name":"Mali","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":145,"iso_3166_code":"MM","latitude":22.0,"longitude":-98.0,"name":"Myanmar","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:58+10:30","id":146,"iso_3166_code":"MN","latitude":46.0,"longitude":-105.0,"name":"Mongolia","updated_at":"2013-03-01T00:00:58+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":147,"iso_3166_code":"MO","latitude":22.1,"longitude":-113.33,"name":"Macao","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":148,"iso_3166_code":"MP","latitude":15.12,"longitude":-145.45,"name":"Northern
103
- Mariana Islands","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":149,"iso_3166_code":"MQ","latitude":0.0,"longitude":0.0,"name":"Martinique","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":150,"iso_3166_code":"MR","latitude":20.0,"longitude":12.0,"name":"Mauritania","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":151,"iso_3166_code":"MS","latitude":16.45,"longitude":62.12,"name":"Montserrat","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":152,"iso_3166_code":"MT","latitude":35.5,"longitude":-14.35,"name":"Malta","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:00:59+10:30","id":153,"iso_3166_code":"MU","latitude":-20.17,"longitude":-57.33,"name":"Mauritius","updated_at":"2013-03-01T00:00:59+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":154,"iso_3166_code":"MV","latitude":3.15,"longitude":-73.0,"name":"Maldives","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":155,"iso_3166_code":"MW","latitude":-13.3,"longitude":-34.0,"name":"Malawi","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:00+10:30","id":156,"iso_3166_code":"MX","latitude":23.0,"longitude":102.0,"name":"Mexico","updated_at":"2013-03-01T00:01:00+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":157,"iso_3166_code":"MY","latitude":2.3,"longitude":-112.3,"name":"Malaysia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":158,"iso_3166_code":"MZ","latitude":-18.15,"longitude":-35.0,"name":"Mozambique","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":159,"iso_3166_code":"NA","latitude":-22.0,"longitude":-17.0,"name":"Namibia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":160,"iso_3166_code":"NC","latitude":-21.3,"longitude":-165.3,"name":"New
104
- Caledonia","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":161,"iso_3166_code":"NE","latitude":16.0,"longitude":-8.0,"name":"Niger","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":162,"iso_3166_code":"NF","latitude":-29.02,"longitude":-167.57,"name":"Norfolk
105
- Island","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:01+10:30","id":163,"iso_3166_code":"NG","latitude":10.0,"longitude":-8.0,"name":"Nigeria","updated_at":"2013-03-01T00:01:01+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":164,"iso_3166_code":"NI","latitude":13.0,"longitude":85.0,"name":"Nicaragua","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":165,"iso_3166_code":"NL","latitude":52.3,"longitude":-5.45,"name":"Netherlands","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":166,"iso_3166_code":"NO","latitude":62.0,"longitude":-10.0,"name":"Norway","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":167,"iso_3166_code":"NP","latitude":28.0,"longitude":-84.0,"name":"Nepal","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":168,"iso_3166_code":"NR","latitude":-0.32,"longitude":-166.55,"name":"Nauru","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":169,"iso_3166_code":"NU","latitude":-19.02,"longitude":169.52,"name":"Niue","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:02+10:30","id":170,"iso_3166_code":"NZ","latitude":-41.0,"longitude":-174.0,"name":"New
106
- Zealand","updated_at":"2013-03-01T00:01:02+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":171,"iso_3166_code":"OM","latitude":21.0,"longitude":-57.0,"name":"Oman","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":172,"iso_3166_code":"PA","latitude":9.0,"longitude":80.0,"name":"Panama","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:03+10:30","id":173,"iso_3166_code":"PE","latitude":-10.0,"longitude":76.0,"name":"Peru","updated_at":"2013-03-01T00:01:03+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":174,"iso_3166_code":"PF","latitude":-15.0,"longitude":140.0,"name":"French
107
- Polynesia","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":175,"iso_3166_code":"PG","latitude":-6.0,"longitude":-147.0,"name":"Papua
108
- New Guinea","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:04+10:30","id":176,"iso_3166_code":"PH","latitude":13.0,"longitude":-122.0,"name":"Philippines","updated_at":"2013-03-01T00:01:04+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":177,"iso_3166_code":"PK","latitude":30.0,"longitude":-70.0,"name":"Pakistan","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":178,"iso_3166_code":"PL","latitude":52.0,"longitude":-20.0,"name":"Poland","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":179,"iso_3166_code":"PM","latitude":46.5,"longitude":56.2,"name":"Saint
109
- Pierre And Miquelon","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":180,"iso_3166_code":"PN","latitude":-25.04,"longitude":130.06,"name":"Pitcairn","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":181,"iso_3166_code":"PR","latitude":18.15,"longitude":66.3,"name":"Puerto
110
- Rico","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":182,"iso_3166_code":"PS","latitude":0.0,"longitude":0.0,"name":"Palestinian
111
- Territory, Occupied","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":183,"iso_3166_code":"PT","latitude":39.3,"longitude":8.0,"name":"Portugal","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:07+10:30","id":184,"iso_3166_code":"PW","latitude":7.3,"longitude":-134.3,"name":"Palau","updated_at":"2013-03-01T00:01:07+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":185,"iso_3166_code":"PY","latitude":-23.0,"longitude":58.0,"name":"Paraguay","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":186,"iso_3166_code":"QA","latitude":25.3,"longitude":-51.15,"name":"Qatar","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":187,"iso_3166_code":"RE","latitude":0.0,"longitude":0.0,"name":"R\u00e9union","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:08+10:30","id":188,"iso_3166_code":"RO","latitude":46.0,"longitude":-25.0,"name":"Romania","updated_at":"2013-03-01T00:01:08+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":189,"iso_3166_code":"RS","latitude":44.0,"longitude":-21.0,"name":"Serbia","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:09+10:30","id":190,"iso_3166_code":"RU","latitude":60.0,"longitude":-100.0,"name":"Russian
112
- Federation","updated_at":"2013-03-01T00:01:09+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":191,"iso_3166_code":"RW","latitude":-2.0,"longitude":-30.0,"name":"Rwanda","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":192,"iso_3166_code":"SA","latitude":25.0,"longitude":-45.0,"name":"Saudi
113
- Arabia","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:11+10:30","id":193,"iso_3166_code":"SB","latitude":-8.0,"longitude":-159.0,"name":"Solomon
114
- Islands","updated_at":"2013-03-01T00:01:11+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":194,"iso_3166_code":"SC","latitude":-4.35,"longitude":-55.4,"name":"Seychelles","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":195,"iso_3166_code":"SD","latitude":15.0,"longitude":-30.0,"name":"Sudan","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":196,"iso_3166_code":"SE","latitude":62.0,"longitude":-15.0,"name":"Sweden","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":197,"iso_3166_code":"SG","latitude":1.22,"longitude":-103.48,"name":"Singapore","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":198,"iso_3166_code":"SH","latitude":-15.57,"longitude":5.42,"name":"Saint
115
- Helena","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:12+10:30","id":199,"iso_3166_code":"SI","latitude":46.07,"longitude":-14.49,"name":"Slovenia","updated_at":"2013-03-01T00:01:12+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":200,"iso_3166_code":"SJ","latitude":78.0,"longitude":-20.0,"name":"Svalbard
116
- And Jan Mayen","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":201,"iso_3166_code":"SK","latitude":48.4,"longitude":-19.3,"name":"Slovakia","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":202,"iso_3166_code":"SL","latitude":8.3,"longitude":11.3,"name":"Sierra
117
- Leone","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":203,"iso_3166_code":"SM","latitude":43.46,"longitude":-12.25,"name":"San
118
- Marino","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:19+10:30","id":204,"iso_3166_code":"SN","latitude":14.0,"longitude":14.0,"name":"Senegal","updated_at":"2013-03-01T00:01:19+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":205,"iso_3166_code":"SO","latitude":10.0,"longitude":-49.0,"name":"Somalia","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":206,"iso_3166_code":"SR","latitude":4.0,"longitude":56.0,"name":"Suriname","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":207,"iso_3166_code":"SS","latitude":7.0,"longitude":-30.0,"name":"South
119
- Sudan","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":208,"iso_3166_code":"ST","latitude":1.0,"longitude":-7.0,"name":"Sao
120
- Tome and Principe","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":209,"iso_3166_code":"SV","latitude":13.5,"longitude":88.55,"name":"El
121
- Salvador","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":210,"iso_3166_code":"SY","latitude":35.0,"longitude":-38.0,"name":"Syrian
122
- Arab Republic","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":211,"iso_3166_code":"SZ","latitude":-26.3,"longitude":-31.3,"name":"Swaziland","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":212,"iso_3166_code":"TC","latitude":21.45,"longitude":71.35,"name":"Turks
123
- and Caicos Islands","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":213,"iso_3166_code":"TD","latitude":15.0,"longitude":-19.0,"name":"Chad","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":214,"iso_3166_code":"TF","latitude":0.0,"longitude":0.0,"name":"French
124
- Southern Territories","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:20+10:30","id":215,"iso_3166_code":"TG","latitude":8.0,"longitude":-1.1,"name":"Togo","updated_at":"2013-03-01T00:01:20+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":216,"iso_3166_code":"TH","latitude":15.0,"longitude":-100.0,"name":"Thailand","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":217,"iso_3166_code":"TJ","latitude":39.0,"longitude":-71.0,"name":"Tajikistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":218,"iso_3166_code":"TK","latitude":-9.0,"longitude":172.0,"name":"Tokelau","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":219,"iso_3166_code":"TL","latitude":-8.5,"longitude":-125.55,"name":"Timor-Leste","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":220,"iso_3166_code":"TM","latitude":40.0,"longitude":-60.0,"name":"Turkmenistan","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":221,"iso_3166_code":"TN","latitude":34.0,"longitude":-9.0,"name":"Tunisia","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":222,"iso_3166_code":"TO","latitude":-20.0,"longitude":175.0,"name":"Tonga","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":223,"iso_3166_code":"TR","latitude":39.0,"longitude":-35.0,"name":"Turkey","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:21+10:30","id":224,"iso_3166_code":"TT","latitude":11.0,"longitude":61.0,"name":"Trinidad
125
- and Tobago","updated_at":"2013-03-01T00:01:21+10:30"},{"created_at":"2013-03-01T00:01:22+10:30","id":225,"iso_3166_code":"TV","latitude":-8.0,"longitude":-178.0,"name":"Tuvalu","updated_at":"2013-03-01T00:01:22+10:30"},{"created_at":"2013-03-01T00:01:23+10:30","id":226,"iso_3166_code":"TW","latitude":23.3,"longitude":-121.0,"name":"Taiwan,
126
- Republic Of China","updated_at":"2013-03-01T00:01:23+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":227,"iso_3166_code":"TZ","latitude":-6.0,"longitude":-35.0,"name":"Tanzania,
127
- United Republic of","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":228,"iso_3166_code":"UA","latitude":49.0,"longitude":-32.0,"name":"Ukraine","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:24+10:30","id":229,"iso_3166_code":"UG","latitude":1.0,"longitude":-32.0,"name":"Uganda","updated_at":"2013-03-01T00:01:24+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":230,"iso_3166_code":"UM","latitude":0.0,"longitude":0.0,"name":"United
128
- States Minor Outlying Islands","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":231,"iso_3166_code":"US","latitude":38.0,"longitude":97.0,"name":"United
129
- States","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":232,"iso_3166_code":"UY","latitude":-33.0,"longitude":56.0,"name":"Uruguay","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":233,"iso_3166_code":"UZ","latitude":41.0,"longitude":-64.0,"name":"Uzbekistan","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":234,"iso_3166_code":"VA","latitude":41.54,"longitude":-12.27,"name":"Holy
130
- See (Vatican City State)","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":235,"iso_3166_code":"VC","latitude":13.15,"longitude":61.12,"name":"Saint
131
- Vincent And The Grenedines","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":236,"iso_3166_code":"VE","latitude":8.0,"longitude":66.0,"name":"Venezuela,
132
- Bolivarian Republic of","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":237,"iso_3166_code":"VG","latitude":0.0,"longitude":0.0,"name":"Virgin
133
- Islands, British","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:26+10:30","id":238,"iso_3166_code":"VI","latitude":0.0,"longitude":0.0,"name":"Virgin
134
- Islands, U.S.","updated_at":"2013-03-01T00:01:26+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":239,"iso_3166_code":"VN","latitude":16.1,"longitude":-107.5,"name":"Viet
135
- Nam","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":240,"iso_3166_code":"VU","latitude":-16.0,"longitude":-167.0,"name":"Vanuatu","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":241,"iso_3166_code":"WF","latitude":-13.18,"longitude":176.12,"name":"Wallis
136
- and Futuna","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":242,"iso_3166_code":"WS","latitude":-13.35,"longitude":172.2,"name":"Samoa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":243,"iso_3166_code":"YE","latitude":15.0,"longitude":-48.0,"name":"Yemen","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":244,"iso_3166_code":"YT","latitude":-12.5,"longitude":-45.1,"name":"Mayotte","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":245,"iso_3166_code":"ZA","latitude":-29.0,"longitude":-24.0,"name":"South
137
- Africa","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":246,"iso_3166_code":"ZM","latitude":-15.0,"longitude":-30.0,"name":"Zambia","updated_at":"2013-03-01T00:01:27+10:30"},{"created_at":"2013-03-01T00:01:27+10:30","id":247,"iso_3166_code":"ZW","latitude":-20.0,"longitude":-30.0,"name":"Zimbabwe","updated_at":"2013-03-01T00:01:27+10:30"}]'
55
+ encoding: ASCII-8BIT
56
+ string: !binary |-
57
+ W3siaWQiOjE0LCJuYW1lIjoiQXVzdHJhbGlhIiwiaXNvXzMxNjZfY29kZSI6
58
+ IkFVIn0seyJpZCI6MTYsIm5hbWUiOiLDhWxhbmQgSXNsYW5kcyIsImlzb18z
59
+ MTY2X2NvZGUiOiJBWCJ9XQ==
138
60
  http_version:
139
- recorded_at: Fri, 28 Oct 2016 05:28:09 GMT
140
- recorded_with: VCR 3.0.3
61
+ recorded_at: Wed, 21 Mar 2018 04:40:29 GMT
62
+ recorded_with: VCR 4.0.0
@@ -18,20 +18,18 @@ http_interactions:
18
18
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
19
  Content-Type:
20
20
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
21
  Cache-Control:
24
22
  - no-cache
25
23
  X-Request-Id:
26
- - 1ada1db0058d6d86a4df24687468bb12
24
+ - 0287306d-f330-4d48-91ea-3da53858956b
27
25
  X-Runtime:
28
- - '0.225165'
29
- Vary:
30
- - Origin
26
+ - '0.519951'
31
27
  Date:
32
- - Fri, 01 Jan 2016 02:32:39 GMT
28
+ - Fri, 01 Jan 2016 02:32:34 GMT
33
29
  X-Rack-Cache:
34
30
  - invalidate, pass
31
+ Vary:
32
+ - Origin
35
33
  X-Content-Type-Options:
36
34
  - nosniff
37
35
  X-Download-Options:
@@ -49,12 +47,12 @@ http_interactions:
49
47
  Connection:
50
48
  - Keep-Alive
51
49
  Set-Cookie:
52
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTBmNmVjNDU3OGVkMjY4MTlkN2UyYmMzZTk4OGUwNjczBjsAVEkiCXVzZXIGOwBGaQY%3D--b64e796af441c202e97ba0aeda7bcd682a89e472;
50
+ - _session_id=UHdDcjJYS2NmSVVwY3VVMFQvYUdYQ2g2SGR3YnV5L0JtWHRCd3VXRUhPaFBhbnQwc0JDTzBCOTBtbzR4TDNRMVRWc2VXL21acXpCSGQ1SjR4c0gxN1RQaHFKcVJ2eUl6MnpHNVhGcnJOM0k9LS02aWliZnI5Y1ZKaTNvN1VPbnl1UW1BPT0%3D--8cc41d08686d34f60ae3f015a71c28e58cc31f3d;
53
51
  path=/; HttpOnly
54
52
  body:
55
53
  encoding: UTF-8
56
54
  string: '{"error":"No services selected for [10-09-2099 -- Travel Insurance
57
55
  - Declined -- 0 pax assigned]"}'
58
56
  http_version:
59
- recorded_at: Fri, 28 Oct 2016 05:28:16 GMT
60
- recorded_with: VCR 3.0.3
57
+ recorded_at: Wed, 21 Mar 2018 04:40:41 GMT
58
+ recorded_with: VCR 4.0.0
@@ -18,22 +18,20 @@ http_interactions:
18
18
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
19
  Content-Type:
20
20
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
21
  Etag:
24
- - '"32328bcb7d16793a864c65a57ff52f69"'
22
+ - W/"a4d41818773c0fcb0b1be4863075ec51"
25
23
  Cache-Control:
26
24
  - max-age=0, private, must-revalidate
27
25
  X-Request-Id:
28
- - cd3a5a65cd08794733ac6e9f01af06bf
26
+ - c538ad2c-09c9-431d-91ac-91f3d5bace19
29
27
  X-Runtime:
30
- - '0.579922'
31
- Vary:
32
- - Origin
28
+ - '0.929983'
33
29
  Date:
34
- - Fri, 01 Jan 2016 02:32:39 GMT
30
+ - Fri, 01 Jan 2016 02:32:34 GMT
35
31
  X-Rack-Cache:
36
32
  - invalidate, pass
33
+ Vary:
34
+ - Origin
37
35
  X-Content-Type-Options:
38
36
  - nosniff
39
37
  X-Download-Options:
@@ -47,20 +45,21 @@ http_interactions:
47
45
  Server:
48
46
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
47
  Content-Length:
50
- - '2020'
48
+ - '2027'
51
49
  Connection:
52
50
  - Keep-Alive
53
51
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJTgzZjdkOTc5NDE3NTdhZDY1Y2QyOTdlOGIzYzY5NDgzBjsAVEkiCXVzZXIGOwBGaQY%3D--33f2dc99b47b872b6547cc7be28522a868c52163;
52
+ - _session_id=NU9mWFp4WExZNWJZMWtSY2s5Znc0SUJMK0tseU1YOXY0UThrczM3MHZZYlJYQ2hFV2ZzZ0ViWTQyVVBqMHRRV0JvVUJYS1Z0Vmp4VlhNQ2c3RzdaMzk3YXZIUkVnaU1hbk41TmJ6VEdFSFk9LS1uazA2R2drV0pOSElORVdQVWo0c2xRPT0%3D--1a6bba2eb597a3a47a5607d2eb93daa9e370332a;
55
53
  path=/; HttpOnly
56
54
  body:
57
55
  encoding: UTF-8
58
- string: '{"id":6,"booking_id":4,"description":"You have declined Travel Insurance
56
+ string: '{"id":7,"booking_id":8,"description":"You have declined Travel Insurance
59
57
  for your booking. If you wish to add Travel Insurance to this booking, please
60
- contact the SeaLink Travel Group on 13 13 01 prior to commencing your travels.","comment":null,"active":true,"service_ids":[7],"resource_id":4,"quantity":null,"adjustments_attributes":[],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":"","fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"Travel
61
- Insurance - Declined","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-01"},"durational":true,"duration":1,"duration_units":"Days","date_start_label":"Start
58
+ contact the SeaLink Travel Group on 13 13 01 prior to commencing your travels.","comment":null,"active":true,"service_ids":[7],"resource_id":4,"quantity":null,"adjustments_attributes":[],"complete":true,"reason_not_complete":"","first_reason_not_complete":"","enough_time_before_travel_to_edit":true,"product_type_id":7,"itinerary_footer":true,"fare_basis_set_id":8,"manually_priced":false,"manually_assigned_fare_basis_set":false,"has_fare_basis":true,"fare_basis_season_name":null,"fare_basis_pointer_id":4,"pick_up_info":null,"drop_off_info":null,"selection_name":"Travel
59
+ Insurance - Declined","product_name_underscore":"travel_insurance","resource_class_name_underscore":"insurance","resource_class_name":"Insurance","has_ticket_template":false,"first_travel_date":{"_type":"Date","_value":"2016-03-01"},"last_travel_date":{"_type":"Date","_value":"2016-03-01"},"durational":true,"duration":1,"span":1,"duration_units":"Days","date_start_label":"Start
62
60
  Date:","date_end_label":"End Date:","expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
63
- Priced as: Rack Rate","gross_including_packaged_item_in_cents":0,"pre_adjusted_gross_including_packaged_item_in_cents":0,"gross_in_cents":0,"pre_adjusted_gross_in_cents":0,"pre_adjusted_commission_in_cents":0,"cost_in_cents":0,"rules":[],"package":false,"sub_reservation_depth":0,"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr","notes_for_vendor","vendor_staff","note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[],"passenger_splits":[],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{}}'
61
+ Priced as: Rack Rate","gross_including_packaged_item_in_cents":0,"pre_adjusted_gross_including_packaged_item_in_cents":0,"gross_in_cents":0,"pre_adjusted_gross_in_cents":0,"pre_adjusted_commission_in_cents":0,"cost_in_cents":0,"rules":[],"package":false,"sub_reservation_depth":0,"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr
62
+ notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[],"passenger_splits":[],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{}}'
64
63
  http_version:
65
- recorded_at: Fri, 28 Oct 2016 05:28:16 GMT
66
- recorded_with: VCR 3.0.3
64
+ recorded_at: Wed, 21 Mar 2018 04:40:41 GMT
65
+ recorded_with: VCR 4.0.0
@@ -18,22 +18,20 @@ http_interactions:
18
18
  - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
19
  Content-Type:
20
20
  - application/json; charset=utf-8
21
- X-Ua-Compatible:
22
- - IE=Edge,chrome=1
23
21
  Etag:
24
- - '"559340bc8df8e9afa56c4988e50056fd"'
22
+ - W/"754f79cf51e8c12ce69cb529ec2cc991"
25
23
  Cache-Control:
26
24
  - max-age=0, private, must-revalidate
27
25
  X-Request-Id:
28
- - dce465a4771d31fef9a11e7b5c1dd0a5
26
+ - fc0f2979-77c4-4ceb-b96e-44a934bc8284
29
27
  X-Runtime:
30
- - '0.135948'
31
- Vary:
32
- - Origin
28
+ - '0.216302'
33
29
  Date:
34
- - Fri, 01 Jan 2016 02:32:38 GMT
30
+ - Fri, 01 Jan 2016 02:32:32 GMT
35
31
  X-Rack-Cache:
36
32
  - miss
33
+ Vary:
34
+ - Origin
37
35
  X-Content-Type-Options:
38
36
  - nosniff
39
37
  X-Download-Options:
@@ -47,15 +45,15 @@ http_interactions:
47
45
  Server:
48
46
  - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
49
47
  Content-Length:
50
- - '3105'
48
+ - '51'
51
49
  Connection:
52
50
  - Keep-Alive
53
51
  Set-Cookie:
54
- - _quick_travel_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFVEkiJWMwNjc3NWQ3OGQ4MjYyNDliMzkxNjYxNzQ5ZmJmOTZhBjsAVEkiCXVzZXIGOwBGaQY%3D--c66937bc6407b64b8cf72fc320799d0907d7de31;
52
+ - _session_id=QkFEOTgyZkE5b3pRSm91N3UxTmwrRDRaamVjWHAyVm12YUs1VnYxWUYvMmMwWmN2aGVtMVU1Y1lobnNlcWsvaDY0KzVjTDdzWXpsa013SkdmdUtnUm5HeW5sK0QzVE5DQ3FlVmdHQjFyWFU9LS1NRWY2Z1RKUTN6enMySlQzSGVycG9RPT0%3D--5b49fa19bf5de3e6e55e10e90b2571fa0ad85777;
55
53
  path=/; HttpOnly
56
54
  body:
57
55
  encoding: UTF-8
58
- string: '[{"id":5,"name":"Adelaide CBD","region_ids":[3,19]},{"id":90,"name":"Aldinga Beach","region_ids":[9,19]},{"id":6,"name":"American River","region_ids":[1,19]},{"id":8,"name":"Antechamber Bay","region_ids":[1,19]},{"id":67,"name":"Apollo Bay","region_ids":[11]},{"id":89,"name":"Arkaba","region_ids":[10]},{"id":54,"name":"Ballarat","region_ids":[5]},{"id":10,"name":"Baudin Beach","region_ids":[1,19]},{"id":12,"name":"Brown Beach","region_ids":[1,19]},{"id":11,"name":"Brownlow","region_ids":[1,19]},{"id":37,"name":"Cape Borda","region_ids":[1,19]},{"id":38,"name":"Cape Du Couedic","region_ids":[1,19]},{"id":102,"name":"Cape Hart","region_ids":[1,19]},{"id":2,"name":"Cape Jervis","region_ids":[9,19]},{"id":36,"name":"Cape Willoughby","region_ids":[1,19]},{"id":101,"name":"Cassini","region_ids":[1,19]},{"id":59,"name":"Clare","region_ids":[7,19]},{"id":64,"name":"Coober Pedy","region_ids":[10]},{"id":72,"name":"Coonawarra","region_ids":[14]},{"id":97,"name":"Cygnet River","region_ids":[1,19]}]'
59
- http_version:
60
- recorded_at: Fri, 28 Oct 2016 05:28:14 GMT
61
- recorded_with: VCR 3.0.3
56
+ string: '[{"id":5,"name":"American River","region_ids":[1]}]'
57
+ http_version:
58
+ recorded_at: Wed, 21 Mar 2018 04:40:39 GMT
59
+ recorded_with: VCR 4.0.0
@@ -0,0 +1,62 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://test.qt.sealink.com.au:8080/api/bookings.json
6
+ body:
7
+ encoding: UTF-8
8
+ string: access_key=<QT_KEY>
9
+ headers:
10
+ Content-Length:
11
+ - '0'
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: 'OK '
16
+ headers:
17
+ P3p:
18
+ - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Etag:
22
+ - W/"d552d7792369388633fb16ffff46a095"
23
+ Cache-Control:
24
+ - max-age=0, private, must-revalidate
25
+ X-Request-Id:
26
+ - 1a98afc5-e88d-4227-bf5c-dbba3230a51c
27
+ X-Runtime:
28
+ - '0.186295'
29
+ Date:
30
+ - Fri, 01 Jan 2016 02:32:19 GMT
31
+ X-Rack-Cache:
32
+ - invalidate, pass
33
+ Vary:
34
+ - Origin
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Download-Options:
38
+ - noopen
39
+ X-Frame-Options:
40
+ - sameorigin
41
+ X-Permitted-Cross-Domain-Policies:
42
+ - none
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ Server:
46
+ - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
47
+ Content-Length:
48
+ - '3271'
49
+ Connection:
50
+ - Keep-Alive
51
+ Set-Cookie:
52
+ - _session_id=cngvUkpDckREMzVsa0tsVkh1WUhZMXNVaDZkeFBYZWJHT0dHVlZ5Q3lJZmxTMHE1THp3Y1RKTHhHdURPdXliWUJEbFg0NWFoSVUwTUczUVlqYUw1Z1FQbk9PTlBMUjdIQUo4Skd1MTEvOEE9LS15Y3I0bTZYOGF4cTBxSTZYRGZJQldnPT0%3D--d1a2d718db994973c142025cdc85260e23b8247d;
53
+ path=/; HttpOnly
54
+ body:
55
+ encoding: UTF-8
56
+ string: '{"id":5,"state":"new","reference":"222229","public_comments":null,"internal_comments":null,"customer_contact_name":null,"customer_contact_phone":null,"customer_contact_mobile":null,"customer_contact_email":null,"currency_iso_code":"AUD","country_id":14,"drop_off_option_id":null,"drop_off_location_id":null,"post_code":null,"referral_code_id":1,"external_identifier":null,"created_at":"2016-01-01T13:02:19.000+10:30","updated_at":"2016-01-01T13:02:19.000+10:30","promo_code":null,"promo_code_id":null,"insurance_offered":false,"total_adjustments_in_cents":0,"pre_adjusted_gross_in_cents":0,"nett_in_cents":0,"gross_in_cents":0,"commission_in_cents":0,"balance_in_cents":0,"paid_in_cents":0,"surcharge_in_cents":0,"deposit_in_cents":0,"web_site_name":"SeaLink","deposit_relevant":false,"deposit_due_on":null,"balance_due_on":null,"due":true,"first_travel_date":{"_type":"Date","_value":"2016-01-01"},"last_travel_date":null,"complete":true,"reason_not_complete":"","first_reason_not_complete":"","unprintable_luggage_tags":false,"discardable_in":60,"inactivatable_in":10,"notices":{"currency":["Currency
57
+ has changed to currency AUD. Please set currency as appropriate."]},"client":null,"passenger_ids":[],"vehicle_ids":[],"reservation_ids":[],"adjustment_ids":[],"todo_items":[],"confirmation_requests":[],"passengers_attributes":[],"vehicles_attributes":[],"reservations_attributes":[],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
58
+ made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
59
+ Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
60
+ http_version:
61
+ recorded_at: Wed, 21 Mar 2018 04:40:26 GMT
62
+ recorded_with: VCR 4.0.0
@@ -0,0 +1,59 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://test.qt.sealink.com.au:8080/api/checkouts.json
6
+ body:
7
+ encoding: UTF-8
8
+ string: booking_id=5&payment[payment_type_id]=10&payment[amount_in_cents]=10&payment[uid]=modern-opal-failed-uid&payment[comment]=Test%20Opal%20Payment&access_key=<QT_KEY>
9
+ headers:
10
+ Content-Length:
11
+ - '0'
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: 'OK '
16
+ headers:
17
+ P3p:
18
+ - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Etag:
22
+ - W/"82f4920f9d1df287070e5615a996b73c"
23
+ Cache-Control:
24
+ - max-age=0, private, must-revalidate
25
+ X-Request-Id:
26
+ - 53bcf438-dd61-41ff-b2d0-0729d9cbb5bd
27
+ X-Runtime:
28
+ - '0.227102'
29
+ Date:
30
+ - Fri, 01 Jan 2016 02:32:19 GMT
31
+ X-Rack-Cache:
32
+ - invalidate, pass
33
+ Vary:
34
+ - Origin
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Download-Options:
38
+ - noopen
39
+ X-Frame-Options:
40
+ - sameorigin
41
+ X-Permitted-Cross-Domain-Policies:
42
+ - none
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ Server:
46
+ - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
47
+ Content-Length:
48
+ - '60'
49
+ Connection:
50
+ - Keep-Alive
51
+ Set-Cookie:
52
+ - _session_id=RmIxQ1pzYmZUdTh6cXlvYktNR2NsZ0VZMXIyOUNCSmQ5U3JOdDU4UzhWVXh2b3d2QTAzaTcyVDJZcjRLWmtvUVprL1l0ckcxcVNVc3kxQnNVTWI2dkh5bkZ1SENhR0ZDL0dLWVZXajNhdEU9LS1GNG5ZNENaeUwzUmxsb0VsUyswbDB3PT0%3D--5d7692a0d5a3e8cd63a2a65f193140cd95bb32f3;
53
+ path=/; HttpOnly
54
+ body:
55
+ encoding: UTF-8
56
+ string: '{"checkout_id":"modern-opal-failed-uid","completable":false}'
57
+ http_version:
58
+ recorded_at: Wed, 21 Mar 2018 04:40:26 GMT
59
+ recorded_with: VCR 4.0.0
@@ -0,0 +1,57 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: put
5
+ uri: http://test.qt.sealink.com.au:8080/api/checkouts/modern-opal-failed-uid.json
6
+ body:
7
+ encoding: UTF-8
8
+ string: gateway_response[raw_response]=%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22CardNumber%22%3A%203085227007682330%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22CardBalance%22%3A%206546%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22CardSequenceNumber%22%3A%2055%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22CILAmount%22%3A%200%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22AuthorizedAmount%22%3A%20890%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22SalesReferenceNumber%22%3A%2053183943%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22TransactionDTM%22%3A%20%222018-01-04T09%3A00%3A43.106%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22VoidTransactionReferenceNumber%22%3A%201271099697%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22CardBlockState%22%3A%20false%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22AutoloadAmount%22%3A%200%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D&gateway_response[success]=false&gateway_response[meta_data][applicationInstanceId]=101166&gateway_response[meta_data][operatorId]=an_operator&access_key=<QT_KEY>
9
+ headers:
10
+ Content-Length:
11
+ - '0'
12
+ response:
13
+ status:
14
+ code: 422
15
+ message: 'Unprocessable Entity '
16
+ headers:
17
+ P3p:
18
+ - CP="IDC DSP CAO COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Cache-Control:
22
+ - no-cache
23
+ X-Request-Id:
24
+ - 5de083d1-cefe-4975-9d69-0ced074c77d3
25
+ X-Runtime:
26
+ - '0.226301'
27
+ Date:
28
+ - Fri, 01 Jan 2016 02:32:20 GMT
29
+ X-Rack-Cache:
30
+ - invalidate, pass
31
+ Vary:
32
+ - Origin
33
+ X-Content-Type-Options:
34
+ - nosniff
35
+ X-Download-Options:
36
+ - noopen
37
+ X-Frame-Options:
38
+ - sameorigin
39
+ X-Permitted-Cross-Domain-Policies:
40
+ - none
41
+ X-Xss-Protection:
42
+ - 1; mode=block
43
+ Server:
44
+ - WEBrick/1.3.1 (Ruby/2.2.5/2016-04-26)
45
+ Content-Length:
46
+ - '33'
47
+ Connection:
48
+ - Keep-Alive
49
+ Set-Cookie:
50
+ - _session_id=ZDdSUFRmOHBJUzcxclRCSTZnZ3ZVQTB6WjFSME9xcm00bTVQOGYzdUE1MWxJT2lMQVFGcnVVVjRlKzFtdFh5MG9qbzRxTkNQVWJCdTFIc1RBdHFVMDF0aVFuMTJBckVwQ0d3Nm5ZQ1Z0RDQ9LS1JdHpYR01FS2ZKMjdyMGVZYlNoOEVBPT0%3D--550f85d051573cefd2393c8bbe45b6f1faa2ad4f;
51
+ path=/; HttpOnly
52
+ body:
53
+ encoding: UTF-8
54
+ string: '{"successful":false,"error":null}'
55
+ http_version:
56
+ recorded_at: Wed, 21 Mar 2018 04:40:27 GMT
57
+ recorded_with: VCR 4.0.0