sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,286 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- http://connect.bookt.com/svc/connect.svc?wsdl=wsdl0 -->
|
3
|
+
<wsdl:definitions targetNamespace="https://connect.bookt.com/connect" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="https://connect.bookt.com/connect" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
|
4
|
+
<wsdl:types>
|
5
|
+
<xsd:schema targetNamespace="https://connect.bookt.com/connect/Imports">
|
6
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd0" namespace="https://connect.bookt.com/connect"/>
|
7
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/"/>
|
8
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd2" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
9
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd3" namespace="http://connect.bookt.com/Schemas/Property.xsd"/>
|
10
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd4" namespace="http://connect.bookt.com/Schemas/Fee.xsd"/>
|
11
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd5" namespace="http://connect.bookt.com/Schemas/Media.xsd"/>
|
12
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd6" namespace="http://connect.bookt.com/Schemas/Tax.xsd"/>
|
13
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd7" namespace="http://connect.bookt.com/Schemas/Unit.xsd"/>
|
14
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd8" namespace="http://connect.bookt.com/Schemas/Rate.xsd"/>
|
15
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd9" namespace="http://connect.bookt.com/Schemas/Booking.xsd"/>
|
16
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd10" namespace="http://connect.bookt.com/Schemas/Person.xsd"/>
|
17
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd11" namespace="http://connect.bookt.com/Schemas/CreditCard.xsd"/>
|
18
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd12" namespace="http://connect.bookt.com/Schemas/Statement.xsd"/>
|
19
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd13" namespace="http://connect.bookt.com/Schemas/StatementDetail.xsd"/>
|
20
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd14" namespace="http://connect.bookt.com/Schemas/Event.xsd"/>
|
21
|
+
<xsd:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd15" namespace="http://connect.bookt.com/Schemas/Review.xsd"/>
|
22
|
+
</xsd:schema>
|
23
|
+
</wsdl:types>
|
24
|
+
<wsdl:message name="IConnect_GetPropertyCategories_InputMessage">
|
25
|
+
<wsdl:part name="parameters" element="tns:GetPropertyCategories"/>
|
26
|
+
</wsdl:message>
|
27
|
+
<wsdl:message name="IConnect_GetPropertyCategories_OutputMessage">
|
28
|
+
<wsdl:part name="parameters" element="tns:GetPropertyCategoriesResponse"/>
|
29
|
+
</wsdl:message>
|
30
|
+
<wsdl:message name="IConnect_GetPropertyIDs_InputMessage">
|
31
|
+
<wsdl:part name="parameters" element="tns:GetPropertyIDs"/>
|
32
|
+
</wsdl:message>
|
33
|
+
<wsdl:message name="IConnect_GetPropertyIDs_OutputMessage">
|
34
|
+
<wsdl:part name="parameters" element="tns:GetPropertyIDsResponse"/>
|
35
|
+
</wsdl:message>
|
36
|
+
<wsdl:message name="IConnect_GetProperty_InputMessage">
|
37
|
+
<wsdl:part name="parameters" element="tns:GetProperty"/>
|
38
|
+
</wsdl:message>
|
39
|
+
<wsdl:message name="IConnect_GetProperty_OutputMessage">
|
40
|
+
<wsdl:part name="parameters" element="tns:GetPropertyResponse"/>
|
41
|
+
</wsdl:message>
|
42
|
+
<wsdl:message name="IConnect_GetPropertyIDsByCategory_InputMessage">
|
43
|
+
<wsdl:part name="parameters" element="tns:GetPropertyIDsByCategory"/>
|
44
|
+
</wsdl:message>
|
45
|
+
<wsdl:message name="IConnect_GetPropertyIDsByCategory_OutputMessage">
|
46
|
+
<wsdl:part name="parameters" element="tns:GetPropertyIDsByCategoryResponse"/>
|
47
|
+
</wsdl:message>
|
48
|
+
<wsdl:message name="IConnect_GetRates_InputMessage">
|
49
|
+
<wsdl:part name="parameters" element="tns:GetRates"/>
|
50
|
+
</wsdl:message>
|
51
|
+
<wsdl:message name="IConnect_GetRates_OutputMessage">
|
52
|
+
<wsdl:part name="parameters" element="tns:GetRatesResponse"/>
|
53
|
+
</wsdl:message>
|
54
|
+
<wsdl:message name="IConnect_GetPerRoomRates_InputMessage">
|
55
|
+
<wsdl:part name="parameters" element="tns:GetPerRoomRates"/>
|
56
|
+
</wsdl:message>
|
57
|
+
<wsdl:message name="IConnect_GetPerRoomRates_OutputMessage">
|
58
|
+
<wsdl:part name="parameters" element="tns:GetPerRoomRatesResponse"/>
|
59
|
+
</wsdl:message>
|
60
|
+
<wsdl:message name="IConnect_GetAvailability_InputMessage">
|
61
|
+
<wsdl:part name="parameters" element="tns:GetAvailability"/>
|
62
|
+
</wsdl:message>
|
63
|
+
<wsdl:message name="IConnect_GetAvailability_OutputMessage">
|
64
|
+
<wsdl:part name="parameters" element="tns:GetAvailabilityResponse"/>
|
65
|
+
</wsdl:message>
|
66
|
+
<wsdl:message name="IConnect_SetRates_InputMessage">
|
67
|
+
<wsdl:part name="parameters" element="tns:SetRates"/>
|
68
|
+
</wsdl:message>
|
69
|
+
<wsdl:message name="IConnect_SetRates_OutputMessage">
|
70
|
+
<wsdl:part name="parameters" element="tns:SetRatesResponse"/>
|
71
|
+
</wsdl:message>
|
72
|
+
<wsdl:message name="IConnect_SetPerRoomRates_InputMessage">
|
73
|
+
<wsdl:part name="parameters" element="tns:SetPerRoomRates"/>
|
74
|
+
</wsdl:message>
|
75
|
+
<wsdl:message name="IConnect_SetPerRoomRates_OutputMessage">
|
76
|
+
<wsdl:part name="parameters" element="tns:SetPerRoomRatesResponse"/>
|
77
|
+
</wsdl:message>
|
78
|
+
<wsdl:message name="IConnect_SetAvailability_InputMessage">
|
79
|
+
<wsdl:part name="parameters" element="tns:SetAvailability"/>
|
80
|
+
</wsdl:message>
|
81
|
+
<wsdl:message name="IConnect_SetAvailability_OutputMessage">
|
82
|
+
<wsdl:part name="parameters" element="tns:SetAvailabilityResponse"/>
|
83
|
+
</wsdl:message>
|
84
|
+
<wsdl:message name="IConnect_SetRatesAndAvailability_InputMessage">
|
85
|
+
<wsdl:part name="parameters" element="tns:SetRatesAndAvailability"/>
|
86
|
+
</wsdl:message>
|
87
|
+
<wsdl:message name="IConnect_SetRatesAndAvailability_OutputMessage">
|
88
|
+
<wsdl:part name="parameters" element="tns:SetRatesAndAvailabilityResponse"/>
|
89
|
+
</wsdl:message>
|
90
|
+
<wsdl:message name="IConnect_GetBooking_InputMessage">
|
91
|
+
<wsdl:part name="parameters" element="tns:GetBooking"/>
|
92
|
+
</wsdl:message>
|
93
|
+
<wsdl:message name="IConnect_GetBooking_OutputMessage">
|
94
|
+
<wsdl:part name="parameters" element="tns:GetBookingResponse"/>
|
95
|
+
</wsdl:message>
|
96
|
+
<wsdl:message name="IConnect_MakeBooking_InputMessage">
|
97
|
+
<wsdl:part name="parameters" element="tns:MakeBooking"/>
|
98
|
+
</wsdl:message>
|
99
|
+
<wsdl:message name="IConnect_MakeBooking_OutputMessage">
|
100
|
+
<wsdl:part name="parameters" element="tns:MakeBookingResponse"/>
|
101
|
+
</wsdl:message>
|
102
|
+
<wsdl:message name="IConnect_CancelBooking_InputMessage">
|
103
|
+
<wsdl:part name="parameters" element="tns:CancelBooking"/>
|
104
|
+
</wsdl:message>
|
105
|
+
<wsdl:message name="IConnect_CancelBooking_OutputMessage">
|
106
|
+
<wsdl:part name="parameters" element="tns:CancelBookingResponse"/>
|
107
|
+
</wsdl:message>
|
108
|
+
<wsdl:message name="IConnect_ModifyBooking_InputMessage">
|
109
|
+
<wsdl:part name="parameters" element="tns:ModifyBooking"/>
|
110
|
+
</wsdl:message>
|
111
|
+
<wsdl:message name="IConnect_ModifyBooking_OutputMessage">
|
112
|
+
<wsdl:part name="parameters" element="tns:ModifyBookingResponse"/>
|
113
|
+
</wsdl:message>
|
114
|
+
<wsdl:message name="IConnect_CreateLead_InputMessage">
|
115
|
+
<wsdl:part name="parameters" element="tns:CreateLead"/>
|
116
|
+
</wsdl:message>
|
117
|
+
<wsdl:message name="IConnect_CreateLead_OutputMessage">
|
118
|
+
<wsdl:part name="parameters" element="tns:CreateLeadResponse"/>
|
119
|
+
</wsdl:message>
|
120
|
+
<wsdl:message name="IConnect_CreateEvent_InputMessage">
|
121
|
+
<wsdl:part name="parameters" element="tns:CreateEvent"/>
|
122
|
+
</wsdl:message>
|
123
|
+
<wsdl:message name="IConnect_CreateEvent_OutputMessage">
|
124
|
+
<wsdl:part name="parameters" element="tns:CreateEventResponse"/>
|
125
|
+
</wsdl:message>
|
126
|
+
<wsdl:message name="IConnect_GetEventCategories_InputMessage">
|
127
|
+
<wsdl:part name="parameters" element="tns:GetEventCategories"/>
|
128
|
+
</wsdl:message>
|
129
|
+
<wsdl:message name="IConnect_GetEventCategories_OutputMessage">
|
130
|
+
<wsdl:part name="parameters" element="tns:GetEventCategoriesResponse"/>
|
131
|
+
</wsdl:message>
|
132
|
+
<wsdl:message name="IConnect_GetLead_InputMessage">
|
133
|
+
<wsdl:part name="parameters" element="tns:GetLead"/>
|
134
|
+
</wsdl:message>
|
135
|
+
<wsdl:message name="IConnect_GetLead_OutputMessage">
|
136
|
+
<wsdl:part name="parameters" element="tns:GetLeadResponse"/>
|
137
|
+
</wsdl:message>
|
138
|
+
<wsdl:message name="IConnect_GetEvent_InputMessage">
|
139
|
+
<wsdl:part name="parameters" element="tns:GetEvent"/>
|
140
|
+
</wsdl:message>
|
141
|
+
<wsdl:message name="IConnect_GetEvent_OutputMessage">
|
142
|
+
<wsdl:part name="parameters" element="tns:GetEventResponse"/>
|
143
|
+
</wsdl:message>
|
144
|
+
<wsdl:message name="IConnect_GetReviewIDs_InputMessage">
|
145
|
+
<wsdl:part name="parameters" element="tns:GetReviewIDs"/>
|
146
|
+
</wsdl:message>
|
147
|
+
<wsdl:message name="IConnect_GetReviewIDs_OutputMessage">
|
148
|
+
<wsdl:part name="parameters" element="tns:GetReviewIDsResponse"/>
|
149
|
+
</wsdl:message>
|
150
|
+
<wsdl:message name="IConnect_GetReview_InputMessage">
|
151
|
+
<wsdl:part name="parameters" element="tns:GetReview"/>
|
152
|
+
</wsdl:message>
|
153
|
+
<wsdl:message name="IConnect_GetReview_OutputMessage">
|
154
|
+
<wsdl:part name="parameters" element="tns:GetReviewResponse"/>
|
155
|
+
</wsdl:message>
|
156
|
+
<wsdl:message name="IConnect_GetReviews_InputMessage">
|
157
|
+
<wsdl:part name="parameters" element="tns:GetReviews"/>
|
158
|
+
</wsdl:message>
|
159
|
+
<wsdl:message name="IConnect_GetReviews_OutputMessage">
|
160
|
+
<wsdl:part name="parameters" element="tns:GetReviewsResponse"/>
|
161
|
+
</wsdl:message>
|
162
|
+
<wsdl:message name="IConnect_CreateReview_InputMessage">
|
163
|
+
<wsdl:part name="parameters" element="tns:CreateReview"/>
|
164
|
+
</wsdl:message>
|
165
|
+
<wsdl:message name="IConnect_CreateReview_OutputMessage">
|
166
|
+
<wsdl:part name="parameters" element="tns:CreateReviewResponse"/>
|
167
|
+
</wsdl:message>
|
168
|
+
<wsdl:message name="IConnect_DeleteReview_InputMessage">
|
169
|
+
<wsdl:part name="parameters" element="tns:DeleteReview"/>
|
170
|
+
</wsdl:message>
|
171
|
+
<wsdl:message name="IConnect_DeleteReview_OutputMessage">
|
172
|
+
<wsdl:part name="parameters" element="tns:DeleteReviewResponse"/>
|
173
|
+
</wsdl:message>
|
174
|
+
<wsdl:message name="IConnect_GetBusinessRules_InputMessage">
|
175
|
+
<wsdl:part name="parameters" element="tns:GetBusinessRules"/>
|
176
|
+
</wsdl:message>
|
177
|
+
<wsdl:message name="IConnect_GetBusinessRules_OutputMessage">
|
178
|
+
<wsdl:part name="parameters" element="tns:GetBusinessRulesResponse"/>
|
179
|
+
</wsdl:message>
|
180
|
+
<wsdl:portType name="IConnect">
|
181
|
+
<wsdl:operation name="GetPropertyCategories">
|
182
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyCategories" message="tns:IConnect_GetPropertyCategories_InputMessage"/>
|
183
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyCategoriesResponse" message="tns:IConnect_GetPropertyCategories_OutputMessage"/>
|
184
|
+
</wsdl:operation>
|
185
|
+
<wsdl:operation name="GetPropertyIDs">
|
186
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyIDs" message="tns:IConnect_GetPropertyIDs_InputMessage"/>
|
187
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyIDsResponse" message="tns:IConnect_GetPropertyIDs_OutputMessage"/>
|
188
|
+
</wsdl:operation>
|
189
|
+
<wsdl:operation name="GetProperty">
|
190
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetProperty" message="tns:IConnect_GetProperty_InputMessage"/>
|
191
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyResponse" message="tns:IConnect_GetProperty_OutputMessage"/>
|
192
|
+
</wsdl:operation>
|
193
|
+
<wsdl:operation name="GetPropertyIDsByCategory">
|
194
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyIDsByCategory" message="tns:IConnect_GetPropertyIDsByCategory_InputMessage"/>
|
195
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPropertyIDsByCategoryResponse" message="tns:IConnect_GetPropertyIDsByCategory_OutputMessage"/>
|
196
|
+
</wsdl:operation>
|
197
|
+
<wsdl:operation name="GetRates">
|
198
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetRates" message="tns:IConnect_GetRates_InputMessage"/>
|
199
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetRatesResponse" message="tns:IConnect_GetRates_OutputMessage"/>
|
200
|
+
</wsdl:operation>
|
201
|
+
<wsdl:operation name="GetPerRoomRates">
|
202
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPerRoomRates" message="tns:IConnect_GetPerRoomRates_InputMessage"/>
|
203
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetPerRoomRatesResponse" message="tns:IConnect_GetPerRoomRates_OutputMessage"/>
|
204
|
+
</wsdl:operation>
|
205
|
+
<wsdl:operation name="GetAvailability">
|
206
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetAvailability" message="tns:IConnect_GetAvailability_InputMessage"/>
|
207
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetAvailabilityResponse" message="tns:IConnect_GetAvailability_OutputMessage"/>
|
208
|
+
</wsdl:operation>
|
209
|
+
<wsdl:operation name="SetRates">
|
210
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/SetRates" message="tns:IConnect_SetRates_InputMessage"/>
|
211
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/SetRatesResponse" message="tns:IConnect_SetRates_OutputMessage"/>
|
212
|
+
</wsdl:operation>
|
213
|
+
<wsdl:operation name="SetPerRoomRates">
|
214
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/SetPerRoomRates" message="tns:IConnect_SetPerRoomRates_InputMessage"/>
|
215
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/SetPerRoomRatesResponse" message="tns:IConnect_SetPerRoomRates_OutputMessage"/>
|
216
|
+
</wsdl:operation>
|
217
|
+
<wsdl:operation name="SetAvailability">
|
218
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/SetAvailability" message="tns:IConnect_SetAvailability_InputMessage"/>
|
219
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/SetAvailabilityResponse" message="tns:IConnect_SetAvailability_OutputMessage"/>
|
220
|
+
</wsdl:operation>
|
221
|
+
<wsdl:operation name="SetRatesAndAvailability">
|
222
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/SetRatesAndAvailability" message="tns:IConnect_SetRatesAndAvailability_InputMessage"/>
|
223
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/SetRatesAndAvailabilityResponse" message="tns:IConnect_SetRatesAndAvailability_OutputMessage"/>
|
224
|
+
</wsdl:operation>
|
225
|
+
<wsdl:operation name="GetBooking">
|
226
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetBooking" message="tns:IConnect_GetBooking_InputMessage"/>
|
227
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetBookingResponse" message="tns:IConnect_GetBooking_OutputMessage"/>
|
228
|
+
</wsdl:operation>
|
229
|
+
<wsdl:operation name="MakeBooking">
|
230
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/MakeBooking" message="tns:IConnect_MakeBooking_InputMessage"/>
|
231
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/MakeBookingResponse" message="tns:IConnect_MakeBooking_OutputMessage"/>
|
232
|
+
</wsdl:operation>
|
233
|
+
<wsdl:operation name="CancelBooking">
|
234
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/CancelBooking" message="tns:IConnect_CancelBooking_InputMessage"/>
|
235
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/CancelBookingResponse" message="tns:IConnect_CancelBooking_OutputMessage"/>
|
236
|
+
</wsdl:operation>
|
237
|
+
<wsdl:operation name="ModifyBooking">
|
238
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/ModifyBooking" message="tns:IConnect_ModifyBooking_InputMessage"/>
|
239
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/ModifyBookingResponse" message="tns:IConnect_ModifyBooking_OutputMessage"/>
|
240
|
+
</wsdl:operation>
|
241
|
+
<wsdl:operation name="CreateLead">
|
242
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateLead" message="tns:IConnect_CreateLead_InputMessage"/>
|
243
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateLeadResponse" message="tns:IConnect_CreateLead_OutputMessage"/>
|
244
|
+
</wsdl:operation>
|
245
|
+
<wsdl:operation name="CreateEvent">
|
246
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateEvent" message="tns:IConnect_CreateEvent_InputMessage"/>
|
247
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateEventResponse" message="tns:IConnect_CreateEvent_OutputMessage"/>
|
248
|
+
</wsdl:operation>
|
249
|
+
<wsdl:operation name="GetEventCategories">
|
250
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetEventCategories" message="tns:IConnect_GetEventCategories_InputMessage"/>
|
251
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetEventCategoriesResponse" message="tns:IConnect_GetEventCategories_OutputMessage"/>
|
252
|
+
</wsdl:operation>
|
253
|
+
<wsdl:operation name="GetLead">
|
254
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetLead" message="tns:IConnect_GetLead_InputMessage"/>
|
255
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetLeadResponse" message="tns:IConnect_GetLead_OutputMessage"/>
|
256
|
+
</wsdl:operation>
|
257
|
+
<wsdl:operation name="GetEvent">
|
258
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetEvent" message="tns:IConnect_GetEvent_InputMessage"/>
|
259
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetEventResponse" message="tns:IConnect_GetEvent_OutputMessage"/>
|
260
|
+
</wsdl:operation>
|
261
|
+
<wsdl:operation name="GetReviewIDs">
|
262
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReviewIDs" message="tns:IConnect_GetReviewIDs_InputMessage"/>
|
263
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReviewIDsResponse" message="tns:IConnect_GetReviewIDs_OutputMessage"/>
|
264
|
+
</wsdl:operation>
|
265
|
+
<wsdl:operation name="GetReview">
|
266
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReview" message="tns:IConnect_GetReview_InputMessage"/>
|
267
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReviewResponse" message="tns:IConnect_GetReview_OutputMessage"/>
|
268
|
+
</wsdl:operation>
|
269
|
+
<wsdl:operation name="GetReviews">
|
270
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReviews" message="tns:IConnect_GetReviews_InputMessage"/>
|
271
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetReviewsResponse" message="tns:IConnect_GetReviews_OutputMessage"/>
|
272
|
+
</wsdl:operation>
|
273
|
+
<wsdl:operation name="CreateReview">
|
274
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateReview" message="tns:IConnect_CreateReview_InputMessage"/>
|
275
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/CreateReviewResponse" message="tns:IConnect_CreateReview_OutputMessage"/>
|
276
|
+
</wsdl:operation>
|
277
|
+
<wsdl:operation name="DeleteReview">
|
278
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/DeleteReview" message="tns:IConnect_DeleteReview_InputMessage"/>
|
279
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/DeleteReviewResponse" message="tns:IConnect_DeleteReview_OutputMessage"/>
|
280
|
+
</wsdl:operation>
|
281
|
+
<wsdl:operation name="GetBusinessRules">
|
282
|
+
<wsdl:input wsaw:Action="https://connect.bookt.com/connect/IConnect/GetBusinessRules" message="tns:IConnect_GetBusinessRules_InputMessage"/>
|
283
|
+
<wsdl:output wsaw:Action="https://connect.bookt.com/connect/IConnect/GetBusinessRulesResponse" message="tns:IConnect_GetBusinessRules_OutputMessage"/>
|
284
|
+
</wsdl:operation>
|
285
|
+
</wsdl:portType>
|
286
|
+
</wsdl:definitions>
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://connect.bookt.com/Schemas/Property.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://connect.bookt.com/Schemas/Property.xsd">
|
3
|
+
<xs:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd2" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
4
|
+
<xs:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd4" namespace="http://connect.bookt.com/Schemas/Fee.xsd"/>
|
5
|
+
<xs:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd5" namespace="http://connect.bookt.com/Schemas/Media.xsd"/>
|
6
|
+
<xs:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd6" namespace="http://connect.bookt.com/Schemas/Tax.xsd"/>
|
7
|
+
<xs:import schemaLocation="http://connect.bookt.com/svc/connect.svc?xsd=xsd7" namespace="http://connect.bookt.com/Schemas/Unit.xsd"/>
|
8
|
+
<xs:complexType name="Property">
|
9
|
+
<xs:sequence>
|
10
|
+
<xs:element minOccurs="0" name="Address1" nillable="true" type="xs:string"/>
|
11
|
+
<xs:element minOccurs="0" name="Address2" nillable="true" type="xs:string"/>
|
12
|
+
<xs:element minOccurs="0" name="AdjLivingSpace" nillable="true" type="xs:string"/>
|
13
|
+
<xs:element minOccurs="0" name="AltID" nillable="true" type="xs:string"/>
|
14
|
+
<xs:element minOccurs="0" name="Amenities" nillable="true" type="q1:ArrayOfstring" xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
15
|
+
<xs:element minOccurs="0" name="AmenityTypes" nillable="true" type="q2:ArrayOfstring" xmlns:q2="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
16
|
+
<xs:element minOccurs="0" name="AvailableOnline" type="xs:boolean"/>
|
17
|
+
<xs:element minOccurs="0" name="AvgReview" type="xs:decimal"/>
|
18
|
+
<xs:element minOccurs="0" name="Bathrooms" type="xs:decimal"/>
|
19
|
+
<xs:element minOccurs="0" name="Bedrooms" type="xs:int"/>
|
20
|
+
<xs:element minOccurs="0" name="CheckInInstructions" nillable="true" type="xs:string"/>
|
21
|
+
<xs:element minOccurs="0" name="City" nillable="true" type="xs:string"/>
|
22
|
+
<xs:element minOccurs="0" name="Country" nillable="true" type="xs:string"/>
|
23
|
+
<xs:element minOccurs="0" name="County" nillable="true" type="xs:string"/>
|
24
|
+
<xs:element minOccurs="0" name="Description" nillable="true" type="xs:string"/>
|
25
|
+
<xs:element minOccurs="0" name="Development" nillable="true" type="xs:string"/>
|
26
|
+
<xs:element minOccurs="0" name="Fees" nillable="true" type="q3:ArrayOfFee" xmlns:q3="http://connect.bookt.com/Schemas/Fee.xsd"/>
|
27
|
+
<xs:element minOccurs="0" name="Floor" type="xs:int"/>
|
28
|
+
<xs:element minOccurs="0" name="GarageSpaces" type="xs:int"/>
|
29
|
+
<xs:element minOccurs="0" name="Headline" nillable="true" type="xs:string"/>
|
30
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
31
|
+
<xs:element minOccurs="0" name="Images" nillable="true" type="q4:ArrayOfMedia" xmlns:q4="http://connect.bookt.com/Schemas/Media.xsd"/>
|
32
|
+
<xs:element minOccurs="0" name="IsBookable" type="xs:boolean"/>
|
33
|
+
<xs:element minOccurs="0" name="Latitude" type="xs:decimal"/>
|
34
|
+
<xs:element minOccurs="0" name="Longitude" type="xs:decimal"/>
|
35
|
+
<xs:element minOccurs="0" name="LotSize" type="xs:int"/>
|
36
|
+
<xs:element minOccurs="0" name="ManagedBy" nillable="true" type="xs:string"/>
|
37
|
+
<xs:element minOccurs="0" name="MasterID" nillable="true" type="xs:string"/>
|
38
|
+
<xs:element minOccurs="0" name="MaxRate" type="xs:decimal"/>
|
39
|
+
<xs:element minOccurs="0" name="MaxRateCurrency" nillable="true" type="xs:string"/>
|
40
|
+
<xs:element minOccurs="0" name="Metro" nillable="true" type="xs:string"/>
|
41
|
+
<xs:element minOccurs="0" name="MinRate" type="xs:decimal"/>
|
42
|
+
<xs:element minOccurs="0" name="MinRateCurrency" nillable="true" type="xs:string"/>
|
43
|
+
<xs:element minOccurs="0" name="Neighborhood" nillable="true" type="xs:string"/>
|
44
|
+
<xs:element minOccurs="0" name="NumReviews" type="xs:int"/>
|
45
|
+
<xs:element minOccurs="0" name="PostalCode" nillable="true" type="xs:string"/>
|
46
|
+
<xs:element minOccurs="0" name="PrimaryImage" nillable="true" type="q5:Media" xmlns:q5="http://connect.bookt.com/Schemas/Media.xsd"/>
|
47
|
+
<xs:element minOccurs="0" name="Region" nillable="true" type="xs:string"/>
|
48
|
+
<xs:element minOccurs="0" name="Sleeps" type="xs:int"/>
|
49
|
+
<xs:element minOccurs="0" name="State" nillable="true" type="xs:string"/>
|
50
|
+
<xs:element minOccurs="0" name="Status" nillable="true" type="xs:string"/>
|
51
|
+
<xs:element minOccurs="0" name="Stories" type="xs:int"/>
|
52
|
+
<xs:element minOccurs="0" name="Summary" nillable="true" type="xs:string"/>
|
53
|
+
<xs:element minOccurs="0" name="Tags" nillable="true" type="q6:ArrayOfstring" xmlns:q6="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
54
|
+
<xs:element minOccurs="0" name="Taxes" nillable="true" type="q7:ArrayOfTax" xmlns:q7="http://connect.bookt.com/Schemas/Tax.xsd"/>
|
55
|
+
<xs:element minOccurs="0" name="Type" nillable="true" type="xs:string"/>
|
56
|
+
<xs:element minOccurs="0" name="Units" nillable="true" type="q8:ArrayOfUnit" xmlns:q8="http://connect.bookt.com/Schemas/Unit.xsd"/>
|
57
|
+
<xs:element minOccurs="0" name="YearBuilt" type="xs:int"/>
|
58
|
+
</xs:sequence>
|
59
|
+
</xs:complexType>
|
60
|
+
<xs:element name="Property" nillable="true" type="tns:Property"/>
|
61
|
+
</xs:schema>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://connect.bookt.com/Schemas/Fee.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://connect.bookt.com/Schemas/Fee.xsd">
|
3
|
+
<xs:complexType name="ArrayOfFee">
|
4
|
+
<xs:sequence>
|
5
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="Fee" nillable="true" type="tns:Fee"/>
|
6
|
+
</xs:sequence>
|
7
|
+
</xs:complexType>
|
8
|
+
<xs:element name="ArrayOfFee" nillable="true" type="tns:ArrayOfFee"/>
|
9
|
+
<xs:complexType name="Fee">
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element minOccurs="0" name="Amount" type="xs:decimal"/>
|
12
|
+
<xs:element minOccurs="0" name="BoolField" type="xs:boolean"/>
|
13
|
+
<xs:element minOccurs="0" name="CalculatePerAdult" type="xs:boolean"/>
|
14
|
+
<xs:element minOccurs="0" name="CalculatePerChild" type="xs:boolean"/>
|
15
|
+
<xs:element minOccurs="0" name="CalculatePerNight" type="xs:boolean"/>
|
16
|
+
<xs:element minOccurs="0" name="CalculatePerPerson" type="xs:boolean"/>
|
17
|
+
<xs:element minOccurs="0" name="Currency" nillable="true" type="xs:string"/>
|
18
|
+
<xs:element minOccurs="0" name="DefaultQty" type="xs:int"/>
|
19
|
+
<xs:element minOccurs="0" name="EffectiveDate" type="xs:dateTime"/>
|
20
|
+
<xs:element minOccurs="0" name="EndDate" type="xs:dateTime"/>
|
21
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
22
|
+
<xs:element minOccurs="0" name="IsFlatRate" type="xs:boolean"/>
|
23
|
+
<xs:element minOccurs="0" name="MaxConditionValue" type="xs:decimal"/>
|
24
|
+
<xs:element minOccurs="0" name="MinConditionValue" type="xs:decimal"/>
|
25
|
+
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
|
26
|
+
<xs:element minOccurs="0" name="Notes" nillable="true" type="xs:string"/>
|
27
|
+
<xs:element minOccurs="0" name="Percentage" type="xs:decimal"/>
|
28
|
+
<xs:element minOccurs="0" name="QtyField" type="xs:boolean"/>
|
29
|
+
<xs:element minOccurs="0" name="StartDate" type="xs:dateTime"/>
|
30
|
+
<xs:element minOccurs="0" name="Status" nillable="true" type="xs:string"/>
|
31
|
+
<xs:element minOccurs="0" name="Type" nillable="true" type="xs:string"/>
|
32
|
+
</xs:sequence>
|
33
|
+
</xs:complexType>
|
34
|
+
<xs:element name="Fee" nillable="true" type="tns:Fee"/>
|
35
|
+
</xs:schema>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://connect.bookt.com/Schemas/Media.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://connect.bookt.com/Schemas/Media.xsd">
|
3
|
+
<xs:complexType name="ArrayOfMedia">
|
4
|
+
<xs:sequence>
|
5
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="Media" nillable="true" type="tns:Media"/>
|
6
|
+
</xs:sequence>
|
7
|
+
</xs:complexType>
|
8
|
+
<xs:element name="ArrayOfMedia" nillable="true" type="tns:ArrayOfMedia"/>
|
9
|
+
<xs:complexType name="Media">
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element minOccurs="0" name="Caption" nillable="true" type="xs:string"/>
|
12
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
13
|
+
<xs:element minOccurs="0" name="MediaName" nillable="true" type="xs:string"/>
|
14
|
+
<xs:element minOccurs="0" name="MediumURL" nillable="true" type="xs:string"/>
|
15
|
+
<xs:element minOccurs="0" name="OriginalURL" nillable="true" type="xs:string"/>
|
16
|
+
<xs:element minOccurs="0" name="Status" nillable="true" type="xs:string"/>
|
17
|
+
<xs:element minOccurs="0" name="ThumbnailURL" nillable="true" type="xs:string"/>
|
18
|
+
<xs:element minOccurs="0" name="Type" nillable="true" type="xs:string"/>
|
19
|
+
</xs:sequence>
|
20
|
+
</xs:complexType>
|
21
|
+
<xs:element name="Media" nillable="true" type="tns:Media"/>
|
22
|
+
</xs:schema>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://connect.bookt.com/Schemas/Tax.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://connect.bookt.com/Schemas/Tax.xsd">
|
3
|
+
<xs:complexType name="ArrayOfTax">
|
4
|
+
<xs:sequence>
|
5
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="Tax" nillable="true" type="tns:Tax"/>
|
6
|
+
</xs:sequence>
|
7
|
+
</xs:complexType>
|
8
|
+
<xs:element name="ArrayOfTax" nillable="true" type="tns:ArrayOfTax"/>
|
9
|
+
<xs:complexType name="Tax">
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element minOccurs="0" name="Amount" type="xs:decimal"/>
|
12
|
+
<xs:element minOccurs="0" name="Currency" nillable="true" type="xs:string"/>
|
13
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
14
|
+
<xs:element minOccurs="0" name="IncludeFees" type="xs:boolean"/>
|
15
|
+
<xs:element minOccurs="0" name="IsFlatRate" type="xs:boolean"/>
|
16
|
+
<xs:element minOccurs="0" name="MaxConditionValue" type="xs:decimal"/>
|
17
|
+
<xs:element minOccurs="0" name="MinConditionValue" type="xs:decimal"/>
|
18
|
+
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
|
19
|
+
<xs:element minOccurs="0" name="Notes" nillable="true" type="xs:string"/>
|
20
|
+
<xs:element minOccurs="0" name="Percentage" type="xs:decimal"/>
|
21
|
+
<xs:element minOccurs="0" name="Status" nillable="true" type="xs:string"/>
|
22
|
+
<xs:element minOccurs="0" name="Type" nillable="true" type="xs:string"/>
|
23
|
+
</xs:sequence>
|
24
|
+
</xs:complexType>
|
25
|
+
<xs:element name="Tax" nillable="true" type="tns:Tax"/>
|
26
|
+
</xs:schema>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://connect.bookt.com/Schemas/Unit.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://connect.bookt.com/Schemas/Unit.xsd">
|
3
|
+
<xs:complexType name="ArrayOfUnit">
|
4
|
+
<xs:sequence>
|
5
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="Unit" nillable="true" type="tns:Unit"/>
|
6
|
+
</xs:sequence>
|
7
|
+
</xs:complexType>
|
8
|
+
<xs:element name="ArrayOfUnit" nillable="true" type="tns:ArrayOfUnit"/>
|
9
|
+
<xs:complexType name="Unit">
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
12
|
+
<xs:element minOccurs="0" name="PropertyUnitID" nillable="true" type="xs:string"/>
|
13
|
+
<xs:element minOccurs="0" name="Status" nillable="true" type="xs:string"/>
|
14
|
+
<xs:element minOccurs="0" name="UnitName" nillable="true" type="xs:string"/>
|
15
|
+
</xs:sequence>
|
16
|
+
</xs:complexType>
|
17
|
+
<xs:element name="Unit" nillable="true" type="tns:Unit"/>
|
18
|
+
</xs:schema>
|