wink-sdk-travel-agent 0.0.55__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. wink_sdk_travel_agent/__init__.py +229 -0
  2. wink_sdk_travel_agent/api/__init__.py +6 -0
  3. wink_sdk_travel_agent/api/analytics_api.py +671 -0
  4. wink_sdk_travel_agent/api/travel_agent_api.py +1668 -0
  5. wink_sdk_travel_agent/api_client.py +805 -0
  6. wink_sdk_travel_agent/api_response.py +21 -0
  7. wink_sdk_travel_agent/configuration.py +582 -0
  8. wink_sdk_travel_agent/exceptions.py +217 -0
  9. wink_sdk_travel_agent/models/__init__.py +106 -0
  10. wink_sdk_travel_agent/models/address_agent.py +111 -0
  11. wink_sdk_travel_agent/models/affiliate_account_agent.py +181 -0
  12. wink_sdk_travel_agent/models/affiliate_account_user_agent.py +115 -0
  13. wink_sdk_travel_agent/models/agent_booking_request_agent.py +130 -0
  14. wink_sdk_travel_agent/models/aggregate_descriptor_agent.py +100 -0
  15. wink_sdk_travel_agent/models/ancillary_request_agent.py +111 -0
  16. wink_sdk_travel_agent/models/authenticated_user_agent.py +100 -0
  17. wink_sdk_travel_agent/models/bed_agent.py +91 -0
  18. wink_sdk_travel_agent/models/bedroom_agent.py +106 -0
  19. wink_sdk_travel_agent/models/bedroom_configuration_agent.py +102 -0
  20. wink_sdk_travel_agent/models/beneficiary_agent.py +156 -0
  21. wink_sdk_travel_agent/models/beneficiary_charge_agent.py +97 -0
  22. wink_sdk_travel_agent/models/booking_agent.py +342 -0
  23. wink_sdk_travel_agent/models/booking_analytics_supplier.py +96 -0
  24. wink_sdk_travel_agent/models/booking_ancillary_agent.py +155 -0
  25. wink_sdk_travel_agent/models/booking_confirmations_agent.py +101 -0
  26. wink_sdk_travel_agent/models/booking_contract_agent.py +697 -0
  27. wink_sdk_travel_agent/models/booking_contract_item_agent.py +206 -0
  28. wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py +124 -0
  29. wink_sdk_travel_agent/models/booking_itinerary_agent.py +113 -0
  30. wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py +98 -0
  31. wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py +90 -0
  32. wink_sdk_travel_agent/models/booking_overview_request_supplier.py +97 -0
  33. wink_sdk_travel_agent/models/booking_user_agent.py +102 -0
  34. wink_sdk_travel_agent/models/booking_user_request_agent.py +96 -0
  35. wink_sdk_travel_agent/models/booking_user_session_agent.py +112 -0
  36. wink_sdk_travel_agent/models/booking_view_agent.py +101 -0
  37. wink_sdk_travel_agent/models/boolean_response_agent.py +90 -0
  38. wink_sdk_travel_agent/models/cancellation_detail_agent.py +98 -0
  39. wink_sdk_travel_agent/models/cancellation_policy_agent.py +166 -0
  40. wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py +100 -0
  41. wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py +97 -0
  42. wink_sdk_travel_agent/models/cancellation_policy_lightweight_agent.py +167 -0
  43. wink_sdk_travel_agent/models/chart_category_axis_supplier.py +88 -0
  44. wink_sdk_travel_agent/models/chart_legend_supplier.py +88 -0
  45. wink_sdk_travel_agent/models/chart_series_supplier.py +90 -0
  46. wink_sdk_travel_agent/models/chart_title_supplier.py +88 -0
  47. wink_sdk_travel_agent/models/child_agent.py +91 -0
  48. wink_sdk_travel_agent/models/commissionable_entry_agent.py +102 -0
  49. wink_sdk_travel_agent/models/company_agent.py +176 -0
  50. wink_sdk_travel_agent/models/company_user_agent.py +114 -0
  51. wink_sdk_travel_agent/models/company_view_agent.py +101 -0
  52. wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py +108 -0
  53. wink_sdk_travel_agent/models/contact_agent.py +104 -0
  54. wink_sdk_travel_agent/models/country_agent.py +100 -0
  55. wink_sdk_travel_agent/models/country_lightweight_agent.py +100 -0
  56. wink_sdk_travel_agent/models/create_agent_booking400_response.py +141 -0
  57. wink_sdk_travel_agent/models/create_agent_booking_request_agent.py +105 -0
  58. wink_sdk_travel_agent/models/custom_monetary_amount.py +91 -0
  59. wink_sdk_travel_agent/models/customization_lightweight_agent.py +232 -0
  60. wink_sdk_travel_agent/models/customization_theme_colors_agent.py +108 -0
  61. wink_sdk_travel_agent/models/daily_rate_agent.py +115 -0
  62. wink_sdk_travel_agent/models/dow_pattern_group_agent.py +102 -0
  63. wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py +230 -0
  64. wink_sdk_travel_agent/models/engine_configuration_theme_agent.py +108 -0
  65. wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py +108 -0
  66. wink_sdk_travel_agent/models/extra_charge_agent.py +103 -0
  67. wink_sdk_travel_agent/models/extra_charges_agent.py +112 -0
  68. wink_sdk_travel_agent/models/fee_agent.py +105 -0
  69. wink_sdk_travel_agent/models/filter_descriptor_agent.py +107 -0
  70. wink_sdk_travel_agent/models/general_manager_agent.py +104 -0
  71. wink_sdk_travel_agent/models/generic_error_message.py +94 -0
  72. wink_sdk_travel_agent/models/geo_json_point_agent.py +94 -0
  73. wink_sdk_travel_agent/models/geo_name_agent.py +136 -0
  74. wink_sdk_travel_agent/models/geo_name_lightweight_agent.py +136 -0
  75. wink_sdk_travel_agent/models/group_descriptor_agent.py +110 -0
  76. wink_sdk_travel_agent/models/grouped_booking_sales_metrics_supplier_details.py +110 -0
  77. wink_sdk_travel_agent/models/guest_room_agent.py +258 -0
  78. wink_sdk_travel_agent/models/guest_room_lightweight_agent.py +259 -0
  79. wink_sdk_travel_agent/models/guest_user_agent.py +108 -0
  80. wink_sdk_travel_agent/models/hotel_on_map_agent.py +270 -0
  81. wink_sdk_travel_agent/models/image_attribution_agent.py +91 -0
  82. wink_sdk_travel_agent/models/line_chart_supplier.py +122 -0
  83. wink_sdk_travel_agent/models/localized_description_agent.py +109 -0
  84. wink_sdk_travel_agent/models/localized_price_agent.py +162 -0
  85. wink_sdk_travel_agent/models/managed_by_entity_agent.py +103 -0
  86. wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py +95 -0
  87. wink_sdk_travel_agent/models/media_author_attribution_agent.py +91 -0
  88. wink_sdk_travel_agent/models/online_presence_agent.py +112 -0
  89. wink_sdk_travel_agent/models/page_booking_agent.py +124 -0
  90. wink_sdk_travel_agent/models/page_booking_view_agent.py +124 -0
  91. wink_sdk_travel_agent/models/pageable_object_agent.py +102 -0
  92. wink_sdk_travel_agent/models/payout_agent.py +158 -0
  93. wink_sdk_travel_agent/models/payout_fee_agent.py +116 -0
  94. wink_sdk_travel_agent/models/pending_refund_agent.py +99 -0
  95. wink_sdk_travel_agent/models/perk_lightweight_agent.py +105 -0
  96. wink_sdk_travel_agent/models/personal_agent.py +139 -0
  97. wink_sdk_travel_agent/models/pet_info_dto_agent.py +90 -0
  98. wink_sdk_travel_agent/models/preferences_agent.py +128 -0
  99. wink_sdk_travel_agent/models/profile_agent.py +110 -0
  100. wink_sdk_travel_agent/models/profile_lightweight_agent.py +111 -0
  101. wink_sdk_travel_agent/models/profile_user_agent.py +100 -0
  102. wink_sdk_travel_agent/models/property_aggregate_lightweight_agent.py +245 -0
  103. wink_sdk_travel_agent/models/property_policy_agent.py +150 -0
  104. wink_sdk_travel_agent/models/quote_agent.py +94 -0
  105. wink_sdk_travel_agent/models/quote_lightweight_agent.py +95 -0
  106. wink_sdk_travel_agent/models/rate_plan_agent.py +172 -0
  107. wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py +112 -0
  108. wink_sdk_travel_agent/models/refund_agent.py +167 -0
  109. wink_sdk_travel_agent/models/reporting_ancillary_agent.py +108 -0
  110. wink_sdk_travel_agent/models/reporting_daily_rate_agent.py +99 -0
  111. wink_sdk_travel_agent/models/reporting_extra_charge_agent.py +98 -0
  112. wink_sdk_travel_agent/models/review_agent.py +133 -0
  113. wink_sdk_travel_agent/models/review_answer_agent.py +102 -0
  114. wink_sdk_travel_agent/models/review_lightweight_agent.py +134 -0
  115. wink_sdk_travel_agent/models/review_user_agent.py +99 -0
  116. wink_sdk_travel_agent/models/room_configuration_agent.py +99 -0
  117. wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py +130 -0
  118. wink_sdk_travel_agent/models/room_stay_agent.py +183 -0
  119. wink_sdk_travel_agent/models/simple_address_agent.py +109 -0
  120. wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py +108 -0
  121. wink_sdk_travel_agent/models/simple_description_agent.py +111 -0
  122. wink_sdk_travel_agent/models/simple_multimedia_agent.py +156 -0
  123. wink_sdk_travel_agent/models/social_agent.py +100 -0
  124. wink_sdk_travel_agent/models/sort_descriptor_agent.py +100 -0
  125. wink_sdk_travel_agent/models/sort_object.py +96 -0
  126. wink_sdk_travel_agent/models/sort_object_agent.py +92 -0
  127. wink_sdk_travel_agent/models/state_agent.py +117 -0
  128. wink_sdk_travel_agent/models/stay_rate_agent.py +209 -0
  129. wink_sdk_travel_agent/models/sub_country_agent.py +92 -0
  130. wink_sdk_travel_agent/models/sub_country_lightweight_agent.py +92 -0
  131. wink_sdk_travel_agent/models/sub_sub_country_agent.py +92 -0
  132. wink_sdk_travel_agent/models/sub_sub_country_lightweight_agent.py +92 -0
  133. wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py +170 -0
  134. wink_sdk_travel_agent/models/travel_agent_agent.py +90 -0
  135. wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py +121 -0
  136. wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py +90 -0
  137. wink_sdk_travel_agent/models/wink_booking_contract_agent.py +697 -0
  138. wink_sdk_travel_agent/py.typed +0 -0
  139. wink_sdk_travel_agent/rest.py +259 -0
  140. wink_sdk_travel_agent-0.0.55.dist-info/METADATA +539 -0
  141. wink_sdk_travel_agent-0.0.55.dist-info/RECORD +144 -0
  142. wink_sdk_travel_agent-0.0.55.dist-info/WHEEL +5 -0
  143. wink_sdk_travel_agent-0.0.55.dist-info/licenses/LICENSE +201 -0
  144. wink_sdk_travel_agent-0.0.55.dist-info/top_level.txt +1 -0
@@ -0,0 +1,144 @@
1
+ wink_sdk_travel_agent/__init__.py,sha256=zgCl-t9YPp4btwJR0Qn9EOIEpIr2MQhl9D2XNcd89UE,21698
2
+ wink_sdk_travel_agent/api_client.py,sha256=dn5eqFelpC2Sexau3484XmCVOtJFUfJcFygwptK3Nao,35083
3
+ wink_sdk_travel_agent/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ wink_sdk_travel_agent/configuration.py,sha256=plVkxYFRrZtIBIBNCPYq-jL_UnNaxGIlc8Lb2AVdAeI,25542
5
+ wink_sdk_travel_agent/exceptions.py,sha256=8O2LqhFVZdlQQtU_0Low4-sXOiZCY6hnfzGU8gKeqqs,13737
6
+ wink_sdk_travel_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ wink_sdk_travel_agent/rest.py,sha256=-Y0XdHU1kBzT6M9qWGGTi1F855kmlCabL9nPvatQd7Q,16741
8
+ wink_sdk_travel_agent/api/__init__.py,sha256=0AD2vMkJIliYg62jgKRDW0A2N0MWi4NyzZ6cNvnnJgM,183
9
+ wink_sdk_travel_agent/api/analytics_api.py,sha256=5sc3hPFmqXAAWuIsZWerAKM1HDalGw2rjQOg7Pxswp0,34714
10
+ wink_sdk_travel_agent/api/travel_agent_api.py,sha256=6paOpPOJ0fx2gqQkdM6MyvqXl4sJighxICrJhPFCF_U,75285
11
+ wink_sdk_travel_agent/models/__init__.py,sha256=8QUNKqXN1PAQTRAy7-t95dS5FYWj-qDU3eNyhOjVDaE,15552
12
+ wink_sdk_travel_agent/models/address_agent.py,sha256=ZYJvoiR-m23N1HKByfxvoKSMjFJm_o5UQYr_pFETb2k,11458
13
+ wink_sdk_travel_agent/models/affiliate_account_agent.py,sha256=DKIrLxPcLvMpHwrAKX8XpLaai33k15Z8yCGgfsNR8x4,17788
14
+ wink_sdk_travel_agent/models/affiliate_account_user_agent.py,sha256=QS03B_fZp08TtLA8f7mUofk8q52TvZxjosqBrTJYS5g,11638
15
+ wink_sdk_travel_agent/models/agent_booking_request_agent.py,sha256=L2hgYxpfmRVIKVHcAjQXVeH-cI54UvY0ZIQam8H3I24,14175
16
+ wink_sdk_travel_agent/models/aggregate_descriptor_agent.py,sha256=l9k6lQkZxLk7gmtWXwfjQOhLu7ArVMgDmBaI6C6ic6I,10427
17
+ wink_sdk_travel_agent/models/ancillary_request_agent.py,sha256=orCP8nkplUqQy1C7egpOmqZl8UVfeEFsCxBv_nDWteY,11821
18
+ wink_sdk_travel_agent/models/authenticated_user_agent.py,sha256=_XM89-dtzIlWnep6NMK5IFpEllhlpzzaajK5tW5S1Fk,10691
19
+ wink_sdk_travel_agent/models/bed_agent.py,sha256=HI1SqaPKXyUfduvhSvO7yjfqhF_iUgsaIKKw_Ea-Xzc,10240
20
+ wink_sdk_travel_agent/models/bedroom_agent.py,sha256=0ZQ80gn4w7lUBM2iakH4DeDlo2lzEGeZZvYe-oE_nCQ,11010
21
+ wink_sdk_travel_agent/models/bedroom_configuration_agent.py,sha256=vU9acx9qNWvf42NFCsryc1Or3F1pFEYbUiycdvqsB30,10726
22
+ wink_sdk_travel_agent/models/beneficiary_agent.py,sha256=Nvux-MiIs2OESzAb7vSk0-IVOIMVmr5oqEuHIx1e7cE,18096
23
+ wink_sdk_travel_agent/models/beneficiary_charge_agent.py,sha256=Ol1564FVOfRINoQHOehUIKAp0J5MrKBxRTR5IvWLGHQ,10400
24
+ wink_sdk_travel_agent/models/booking_agent.py,sha256=O9ZU7jpuMXO5-yEapAyq8-P8X7KY5EfcSAlztLC3mvo,32838
25
+ wink_sdk_travel_agent/models/booking_analytics_supplier.py,sha256=z8FDC0vQiWLZroFsiM1RgaN4UsvtaLXd6r6l1qZR63A,10356
26
+ wink_sdk_travel_agent/models/booking_ancillary_agent.py,sha256=G8pvAjhIln9vx5nVEbVYGu3_j-2Z_gVhGto7F0DfwH4,15359
27
+ wink_sdk_travel_agent/models/booking_confirmations_agent.py,sha256=G6PPGDdM4SnFRASF_Td6LBCJLmJTKRMzvswqqr-oEAw,11324
28
+ wink_sdk_travel_agent/models/booking_contract_agent.py,sha256=jv4J6gEn9_7BVrWfzdGgzL3TplouqFgwbdvofg0Xi38,89736
29
+ wink_sdk_travel_agent/models/booking_contract_item_agent.py,sha256=sXBoYDWbehpaYUmpq8C6mxaNDIhVTRR0Dg6byhqACDs,22673
30
+ wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py,sha256=VukDqbfa5V7vSPKEq8ySSGJRqGKtLV-rAxg_0tCzLcs,12927
31
+ wink_sdk_travel_agent/models/booking_itinerary_agent.py,sha256=aQi3y2fMEvIaIPXCckzmgurv-26dVggGSByEQS_xrxA,11872
32
+ wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py,sha256=uSIDSnDqQglIThfod9ejYUANUHW_aw9XLDt0_deofFA,10644
33
+ wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py,sha256=0lK7eppL-gCypR5QpwwUC0BL5ZmSXIHsft5EFOW8b_E,9995
34
+ wink_sdk_travel_agent/models/booking_overview_request_supplier.py,sha256=MKRYS3DRb70G0rmrnoSukoSE2FrioUvcqRdsCnJTovE,10362
35
+ wink_sdk_travel_agent/models/booking_user_agent.py,sha256=dq0iGwwdF_9jMSTkOTqxYWGyC0wo5DO5uHBW6Acxqa8,10809
36
+ wink_sdk_travel_agent/models/booking_user_request_agent.py,sha256=uPIs7f4_onF03yzz81N48SKkEAPIPzfcXQk3KkEvYFY,10337
37
+ wink_sdk_travel_agent/models/booking_user_session_agent.py,sha256=Iur126EY6IHJ6r4Q5G73EjZ33CAVyYMj2AAtvpffHKY,12552
38
+ wink_sdk_travel_agent/models/booking_view_agent.py,sha256=R5YzS1WHT2Om7NPxphAWBZxDaxHilfWbGiUEyL2DVEI,11002
39
+ wink_sdk_travel_agent/models/boolean_response_agent.py,sha256=ggYu6Smu-R3YrcagbTLfz5aT_yOFhs5TJ1Uy2JMIiNo,10106
40
+ wink_sdk_travel_agent/models/cancellation_detail_agent.py,sha256=Nnp4whtrsO7fxOpb0dCNMImJhxbQl3K_4QVX7Vz-ZwU,10534
41
+ wink_sdk_travel_agent/models/cancellation_policy_agent.py,sha256=efhkvDZRfgfvb7Bdu8JDE-BkNEWLQ0wjszO7hcwFbwM,16926
42
+ wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py,sha256=dxgVaCHScV1JSyYuf2dM4rdpimK5oWFNh3vMBDJ087w,11106
43
+ wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py,sha256=why6APMig65Iu4YcTFguNc-43f44bOWNCcnuhaUz7hs,10431
44
+ wink_sdk_travel_agent/models/cancellation_policy_lightweight_agent.py,sha256=gG2Cb72M-VzCYeFzQWQ8zb-LdttPhzPEhhjDAQ2lOnc,16865
45
+ wink_sdk_travel_agent/models/chart_category_axis_supplier.py,sha256=mj5yb5sd1R61yonQ2KN1wH-7WGcunz2LKR400Ieo_iQ,9930
46
+ wink_sdk_travel_agent/models/chart_legend_supplier.py,sha256=d1Mg9e_rVehcZlHUQAE46MWseYTvmA4TXYVbfM4Awl4,9774
47
+ wink_sdk_travel_agent/models/chart_series_supplier.py,sha256=7BFkeE2wLFRjt2Jw8UdGYGSKUE6QiEl7DNPxoBJGZ4k,10629
48
+ wink_sdk_travel_agent/models/chart_title_supplier.py,sha256=g87pPWA0RADlx8hgzCCL-X3w7wKAqQ1Y3r-UG3nj6nM,9781
49
+ wink_sdk_travel_agent/models/child_agent.py,sha256=DOiuJZQViG1i6ZNcQP15x_ZKPU9zUlA3fvLTrTyP2gc,10020
50
+ wink_sdk_travel_agent/models/commissionable_entry_agent.py,sha256=_C0gxKVx-2uaUxBFlhazGAblpJQkbDzuQ6KCy12w1Y4,10685
51
+ wink_sdk_travel_agent/models/company_agent.py,sha256=EZpDs5dGujbGOLjlCVjGW3JSSpu0WRGFcXeYMISpUsA,16563
52
+ wink_sdk_travel_agent/models/company_user_agent.py,sha256=va5moJJIWNR5xqO-w6LFy-wvw7uJFLiHOBLmVTbex4E,11510
53
+ wink_sdk_travel_agent/models/company_view_agent.py,sha256=Ll9UMBrfG4SxNw9syzn44LoaepIe0bhfLxlKZM0ylKE,10962
54
+ wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py,sha256=a3xiNIrZlweD9DDIkwqYQprFFPfsanZ8lJzWAT9F3aQ,10925
55
+ wink_sdk_travel_agent/models/contact_agent.py,sha256=sqA1FcJ18ffG_hOP9iYSIbSpdz7WDvX-okJwzEp_Shg,10980
56
+ wink_sdk_travel_agent/models/country_agent.py,sha256=8iwTPElm4bYsFwDrYmhyY6acmfPlLYbqn8L-9Rj9cAQ,10736
57
+ wink_sdk_travel_agent/models/country_lightweight_agent.py,sha256=G3LlwFSE8RerFJeNFqkogBQA5vbqsCUlxJ-RO_3LVfM,10782
58
+ wink_sdk_travel_agent/models/create_agent_booking400_response.py,sha256=Q6PSgg4Sej3MEdRQ62bPXq6RtQejuHMw8ExCAa6yD6Y,12911
59
+ wink_sdk_travel_agent/models/create_agent_booking_request_agent.py,sha256=e8IXoJOPX-hw9j_fBtmul-xrNbCRvEUQrKw5CGVjfT8,11503
60
+ wink_sdk_travel_agent/models/custom_monetary_amount.py,sha256=btjIKRBrMg4qKpvwQB7CSGywYZ_ZqtWmn88wXEHM36o,9977
61
+ wink_sdk_travel_agent/models/customization_lightweight_agent.py,sha256=V4J57EL-rQEm5eu6lplScEJXs4xvAWxA6a36LSr1rK0,24907
62
+ wink_sdk_travel_agent/models/customization_theme_colors_agent.py,sha256=9k9QX2g4_uu5THFUX07YPk3DJGXHQkiVUkXzwSTUqgg,11778
63
+ wink_sdk_travel_agent/models/daily_rate_agent.py,sha256=C6RwBSYciMi836dvm0MUeu6BURBSAjaW4YtGFzb3Dxw,11874
64
+ wink_sdk_travel_agent/models/dow_pattern_group_agent.py,sha256=HQdhJKh_qcokR1O75egeQ9M0-xxc58LOSP1zF799ekU,10904
65
+ wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py,sha256=853TA4_zkheaDARd9PCHbns7o_SeMrEUcpFdiBieXis,24749
66
+ wink_sdk_travel_agent/models/engine_configuration_theme_agent.py,sha256=UoWzv_kCcmh1_5df2vkgRvqqw0CEG8R220bvfMEkiu0,11814
67
+ wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py,sha256=pdFDOLp7rIX9-6iy3jEe9q8KkGg_EOEXO6z6qJmlpAU,11849
68
+ wink_sdk_travel_agent/models/extra_charge_agent.py,sha256=EVfwg_mnKhe2A_t2bK15zSQLYbpf8PxzIrLacz7SqZg,11235
69
+ wink_sdk_travel_agent/models/extra_charges_agent.py,sha256=VqHjGkfZYK0uu6usYa67rKpuxdLBWHIC__M2iKtBuA8,11869
70
+ wink_sdk_travel_agent/models/fee_agent.py,sha256=axcnKIFR5R9732WznnnBtcDQEWqf4SNQ-FQJPTy7RME,10684
71
+ wink_sdk_travel_agent/models/filter_descriptor_agent.py,sha256=Y3KCUfF5IP-iws0DfYPw59CDpIofuocmtqarDuqKZp8,11132
72
+ wink_sdk_travel_agent/models/general_manager_agent.py,sha256=n9enEa_dGFclMw-1QsaKGe0JmwHuVnWRDVaGfRMTlcA,11060
73
+ wink_sdk_travel_agent/models/generic_error_message.py,sha256=fUmXNrS9yu7jloKfA4qPCpJFFAQqPyuw2YY4RRd4v_k,10088
74
+ wink_sdk_travel_agent/models/geo_json_point_agent.py,sha256=BJTl1t-pwGoi8PLyxkU8YBaaX_-NbYs5cz0zgWTgT9M,10124
75
+ wink_sdk_travel_agent/models/geo_name_agent.py,sha256=binLC1UEIX_UhwSGEY4Iz8how_8qYzxB75NujdPKon8,13164
76
+ wink_sdk_travel_agent/models/geo_name_lightweight_agent.py,sha256=wCmJ0A4e9e74EL4Jh4TmL9AciUQVbL6ggZlSjdDUW5g,13530
77
+ wink_sdk_travel_agent/models/group_descriptor_agent.py,sha256=NAQrHG8m7bhtn82sw5HsOaV3qljGf1vb7DV8fD-ZS5s,11049
78
+ wink_sdk_travel_agent/models/grouped_booking_sales_metrics_supplier_details.py,sha256=YYRRp_Un1_m8FdM5ZM6Sfzwg39uScLZdYpYYBTjtlps,11227
79
+ wink_sdk_travel_agent/models/guest_room_agent.py,sha256=rNSKSfpXvl7wh9UuVTYDVNqovPwiw4tshAl_K3I-7Ho,26959
80
+ wink_sdk_travel_agent/models/guest_room_lightweight_agent.py,sha256=A1FfZEEbcW0UKmPhtK7SD5lIbd6ytVsG7Z0FBAhZ0PY,26884
81
+ wink_sdk_travel_agent/models/guest_user_agent.py,sha256=3L-6xdxMgJzbmkqNV1zH4ZyXGUB0mAsOfmoi02MGD-s,11294
82
+ wink_sdk_travel_agent/models/hotel_on_map_agent.py,sha256=4vU1w7qxLKyNIL05n3XZngR0OxPldG7np8UEU0z6V14,29569
83
+ wink_sdk_travel_agent/models/image_attribution_agent.py,sha256=SEXQHtE-u-Rwgi2BynBxomRdJci2-YwJHfSoOr9tO3I,10034
84
+ wink_sdk_travel_agent/models/line_chart_supplier.py,sha256=5FD78EN-tUJuF3D-R420-1-T_196Za8UoQVyriN8c3E,12733
85
+ wink_sdk_travel_agent/models/localized_description_agent.py,sha256=gXxP7y0qI2EwQXW_mMm8QoMCvj9-k4Rk6v6FeuVOqS8,11247
86
+ wink_sdk_travel_agent/models/localized_price_agent.py,sha256=HdYG-m26f4P7R9eknNQh6Nz2jL60amM8mCeoEElCIbo,18708
87
+ wink_sdk_travel_agent/models/managed_by_entity_agent.py,sha256=B0T6i41C9l7Iz9QMfFPHSnT3VMQxfkB16BeTjm4UQKE,11099
88
+ wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py,sha256=D42qBhV746EVd48ZKoX1EfjOuomopYcb2SqIh8s7c2c,10565
89
+ wink_sdk_travel_agent/models/media_author_attribution_agent.py,sha256=dlH35QzA2wshx-r6y3sYpYxDQ081Re1j_iZEiji0OV0,10056
90
+ wink_sdk_travel_agent/models/online_presence_agent.py,sha256=6Mwg7GQsH4voW_9Du9TrGINMSZToQR2aAduwpsEf5UU,13189
91
+ wink_sdk_travel_agent/models/page_booking_agent.py,sha256=Kk6rVWoLX90g_ocZHjdcL4WuAz5I1hpmiWujDy6bQ0s,12008
92
+ wink_sdk_travel_agent/models/page_booking_view_agent.py,sha256=_BwChdfUVjKQwLo6G0JSeNi1CZEF9B7AEW5cB9MFFmI,12028
93
+ wink_sdk_travel_agent/models/pageable_object_agent.py,sha256=2ODfQUaTMviJkMygFVeaNcuG8WUoIYyAPyTljgEMhbk,10648
94
+ wink_sdk_travel_agent/models/payout_agent.py,sha256=HsJAk5aIc2qhGtUnOtYYAAUP06uCht4AQ50IyYKzCbU,14837
95
+ wink_sdk_travel_agent/models/payout_fee_agent.py,sha256=Xg08CVTh1zS_ofPF9SXWVo8qB_1rBwb_x_TpaUUnj_w,11228
96
+ wink_sdk_travel_agent/models/pending_refund_agent.py,sha256=1sItYONPKjIRA0aNTfzRcuEKCAAYbb_vFPoiJsxKKhg,11941
97
+ wink_sdk_travel_agent/models/perk_lightweight_agent.py,sha256=bbbG-k6m5_5dPB1U0SIuvqrozb8gpcXNttKJ3dClilw,11247
98
+ wink_sdk_travel_agent/models/personal_agent.py,sha256=-Qbp6BZpNTzYziOL9hiwH8bSqk2Et7OoM8UfEJE1JcI,13286
99
+ wink_sdk_travel_agent/models/pet_info_dto_agent.py,sha256=ROniMQzpfBM7xLmOYhnddV3WSKhRfwl8SplfLEmkyuo,9874
100
+ wink_sdk_travel_agent/models/preferences_agent.py,sha256=UcocLYPONO6h-s4NfumJ0WVeL7qCE_UOJYjs26_LdFg,13850
101
+ wink_sdk_travel_agent/models/profile_agent.py,sha256=bAL87pdQuMuHAJwHZVADuP3qfuE6FGy0CVEJgW9JXMo,11400
102
+ wink_sdk_travel_agent/models/profile_lightweight_agent.py,sha256=N1ABJLfjcvfALMxLhXFG6XJ7i5rZtsxDKMHRWXd0e5U,11597
103
+ wink_sdk_travel_agent/models/profile_user_agent.py,sha256=bROIkWBHvaH3ZL_Q-qVxoiE2qY3L_70WHQYtf6DJL4A,10711
104
+ wink_sdk_travel_agent/models/property_aggregate_lightweight_agent.py,sha256=zw3gZIWD0bFbZv4O1B5LSxbLHKlrcuZ0z1eAncn8F9E,26447
105
+ wink_sdk_travel_agent/models/property_policy_agent.py,sha256=8YPafSD49jut0rSV0VxyH66a1p-HuqknbVsi-9IqQYs,14869
106
+ wink_sdk_travel_agent/models/quote_agent.py,sha256=wfzu2XK3YilAnB5kdAmZrGv-N_RnaD4OkW5KO0AfdoQ,10200
107
+ wink_sdk_travel_agent/models/quote_lightweight_agent.py,sha256=koT6NpQ7XXci0oQ8toyTm3kmwUWpGMN5t34A4krhs6w,10347
108
+ wink_sdk_travel_agent/models/rate_plan_agent.py,sha256=9zi6b7bdXwWSbph4Z2fm-uFIFEiUJmkWHhI_YBtiPWU,19126
109
+ wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py,sha256=RnXg31wt9g5hFLwV8P3yQpAk6wmKjjH6tDHgCIw_Td0,11552
110
+ wink_sdk_travel_agent/models/refund_agent.py,sha256=XUe6yROpAAr9x7qZHD_nnpfFAJ0XZ3rIuQwgJPPyNjg,15956
111
+ wink_sdk_travel_agent/models/reporting_ancillary_agent.py,sha256=1yhjVPdofYGPPwzV24HV4A2n4_VjnRcl39eAdQ0yw_8,11408
112
+ wink_sdk_travel_agent/models/reporting_daily_rate_agent.py,sha256=6zrNWUj05ciSK42vKOghcSUylJP9Gs0QzYhF4LOpF_Q,11089
113
+ wink_sdk_travel_agent/models/reporting_extra_charge_agent.py,sha256=ZownYSusvwj2LcV8-amgigHraKuCA070DIU02Q48RZA,10591
114
+ wink_sdk_travel_agent/models/review_agent.py,sha256=pWTo1B0FFVNwSWwOqqvWJ8f5h-6MllyrfWIy0A_b0tc,14201
115
+ wink_sdk_travel_agent/models/review_answer_agent.py,sha256=QsgggEL8F2W-Kq1pjMct-biYTap0ZvJx1GU4-xEbkv0,10698
116
+ wink_sdk_travel_agent/models/review_lightweight_agent.py,sha256=i609_S3p6r3kY7GnGewK8xxvzWI6u5_Nv2ujR0uz0Fo,14133
117
+ wink_sdk_travel_agent/models/review_user_agent.py,sha256=oHzI2w-22tNmAeDJqVk5wEsWfguK8N74aIGW6ztbzCc,10645
118
+ wink_sdk_travel_agent/models/room_configuration_agent.py,sha256=xGiYt07Ef_jnD6rtxWduqt9A-oQOB3s7Vzx7zGHIiZE,10520
119
+ wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py,sha256=cpNFnTzLeZLpc21gGFVlqZ6pzDx_p2pSBplsENaTBpY,13801
120
+ wink_sdk_travel_agent/models/room_stay_agent.py,sha256=96fKHxHY3Ez-j_7aTVQqJAj94bCwibY--tBHVHZcxAc,18243
121
+ wink_sdk_travel_agent/models/simple_address_agent.py,sha256=QWkS63dcDg1phwbOewGu9gl8otZDE3VuQ5FvJakTKi4,11316
122
+ wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py,sha256=-PNx925_A6LMjhPGoqJ-MGi4DUIHgidEiTF2tAMM4Wo,11216
123
+ wink_sdk_travel_agent/models/simple_description_agent.py,sha256=WVXVvfXPUJSkRdm9BqFVq39Ep9XZX6AZ0azJCBmyIx4,11362
124
+ wink_sdk_travel_agent/models/simple_multimedia_agent.py,sha256=cMb15TtUci6LmJhyfyrRAEat6ABWgRIuN1igiSh7JMk,15717
125
+ wink_sdk_travel_agent/models/social_agent.py,sha256=MIJgvVMajGyC4_h34fXL0IIj-8eAohkg4wBGxARfeUc,10634
126
+ wink_sdk_travel_agent/models/sort_descriptor_agent.py,sha256=aB7idin8pC96LHSIBc8aDKQBNqEMnC-RiZO5sI-aOT4,10331
127
+ wink_sdk_travel_agent/models/sort_object.py,sha256=YH73z113i-4q9TQ-MInYhlr-hpYbmkj2-2oTbavKijc,10308
128
+ wink_sdk_travel_agent/models/sort_object_agent.py,sha256=Kbnmj-2sJx407dbfZhmTeZq_P17lnZhmRWWrBhJcVQc,9965
129
+ wink_sdk_travel_agent/models/state_agent.py,sha256=gtm6kiHMvHrUTlFyDVWgdmfOiy-0A5yh7aF2pE-OTYw,11983
130
+ wink_sdk_travel_agent/models/stay_rate_agent.py,sha256=aD0cvFSRdhBadkLlDPm7J34XtXcdm8dn5spSQgH_dS8,24860
131
+ wink_sdk_travel_agent/models/sub_country_agent.py,sha256=tQ5tuRkdv-FtFe_IrOwOCqrvcXugBOiAoAQSJQS58DI,10202
132
+ wink_sdk_travel_agent/models/sub_country_lightweight_agent.py,sha256=uCSiwWhTXbKobtUugNmqxgb6pZxqx4nOjboMVE_kuKQ,10248
133
+ wink_sdk_travel_agent/models/sub_sub_country_agent.py,sha256=6qRvsTbseB-EqZX-91FfyYEj1Xqg8j9_Kh8pvXe_Lr4,10056
134
+ wink_sdk_travel_agent/models/sub_sub_country_lightweight_agent.py,sha256=AgUlB89FNAv64eWpvWMauiYz2G68IY6btJbK-7Syz6U,10107
135
+ wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py,sha256=nnXQvjqFNOU-yibQZOA2_QuLrNUc-QbbcIq008oAo7E,17064
136
+ wink_sdk_travel_agent/models/travel_agent_agent.py,sha256=DyBz62a3lE0ZTsa5l1Mur_NUdwdc6nBZLEiQraBYCXM,10094
137
+ wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py,sha256=MwpZXzTiswkdilfiU9RAyFWbdRVOkjl83nArstlv6co,12472
138
+ wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py,sha256=K1fzAzZwvgBOWU4dIltLIC4evIaM5tNqJjyvCePmS58,10146
139
+ wink_sdk_travel_agent/models/wink_booking_contract_agent.py,sha256=Vm_yKScnBks4sSANx5ZFZMkp_NegmtZ2pkNJxqlSSrE,89752
140
+ wink_sdk_travel_agent-0.0.55.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
141
+ wink_sdk_travel_agent-0.0.55.dist-info/METADATA,sha256=JdIYEuJJYE5eyjPEPT658wegTCOK1xbSCC3o16sncLA,31067
142
+ wink_sdk_travel_agent-0.0.55.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
+ wink_sdk_travel_agent-0.0.55.dist-info/top_level.txt,sha256=r4wUq-aj0a5gUjGGjn0pA0NpDhSk11ci-Vrb-PonzIo,22
144
+ wink_sdk_travel_agent-0.0.55.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ wink_sdk_travel_agent