resmarkee 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest ADDED
@@ -0,0 +1,15 @@
1
+ Manifest
2
+ README.textile
3
+ Rakefile
4
+ generators/booking_generator.rb
5
+ generators/templates/controllers/bookings_controller.rb
6
+ generators/templates/helpers/bookings_helper.rb
7
+ generators/templates/images/calendar.png
8
+ generators/templates/models/booking.rb
9
+ generators/templates/views/bookings/_activities.html.haml
10
+ generators/templates/views/bookings/index.html.haml
11
+ lib/ReadOnlyWebServiceDispatcherService.rb
12
+ lib/ReadOnlyWebServiceDispatcherServiceClient.rb
13
+ lib/ReadOnlyWebServiceDispatcherServiceDriver.rb
14
+ lib/resmarkee.rb
15
+ resmarkee.gemspec
data/README.textile ADDED
@@ -0,0 +1,77 @@
1
+ h1. Remarkee
2
+
3
+ Resmarkee is a rubygem that provides a SOAP connection to a Resmark reservation server and displays a list of locations, associated activities, start/end dates, and number of guests in an "Expedia"-like widget for booking trips. Form values in the widget are submitted to the Resmark reservation server, and the user is directed to the organization's reservation server to complete the transaction.
4
+
5
+ h3. Features
6
+
7
+ * Populates a select box of all available locations
8
+ * Selecting a location populates a select box of activities for that location via AJAX
9
+ * Field for start date, end date, and number of guests
10
+ * Submitting the form takes the user to the Resmark reservation system to complete the transaction
11
+
12
+ h3. Requirements
13
+
14
+ * haml
15
+ * jrails, jquery, jquery-ui javascript libraries
16
+ * Resmark web services account
17
+
18
+ h3. How to Use
19
+
20
+ First, be sure you have the echoe gem installed:
21
+ <pre><code>
22
+ sudo gem install echoe
23
+ </code></pre>
24
+
25
+ Clone the gem:
26
+ <pre><code>
27
+ git clone git@codaset.com:bcalloway/resmarkee.git
28
+ </code></pre>
29
+
30
+ Navigate to the directory where you cloned the gem and run:
31
+ <pre><code>
32
+ rake manifest
33
+ rake install
34
+ </code></pre>
35
+
36
+ Require the gem in your environment.rb file:
37
+ <pre><code>
38
+ config.gem "resmarkee", :lib => "resmarkee"
39
+ </code></pre>
40
+
41
+ Vendor the gem:
42
+ <pre><code>
43
+ rake gems:unpack
44
+ </code></pre>
45
+
46
+ Insert the following near the top of your environment.rb file:
47
+ <pre><code>
48
+ USERNAME = 'myresmarkusername'
49
+ PASSWORD = '123abc123abc123abc123abc'
50
+ HOST = 'reservations.mydomain.com'
51
+ </code></pre>
52
+ _Note that you must have a valid username and password for accessing the Resmark Web Services._
53
+
54
+ Run the supplied generator from within your Rails app:
55
+ <pre><code>
56
+ script/generate booking
57
+ </code></pre>
58
+
59
+ This installs the following template files:
60
+ <pre><code>
61
+ |____controllers
62
+ | |____bookings_controller.rb
63
+ |____helpers
64
+ | |____bookings_helper.rb
65
+ |____models
66
+ | |____booking.rb
67
+ |____views
68
+ | |____bookings
69
+ | | |_____activities.html.haml
70
+ | | |____index.html.haml
71
+ </code></pre>
72
+
73
+ Be sure to reference the required javascripts and stylesheets in your layout:
74
+ <pre><code>
75
+ = stylesheet_link_tag 'http://jqueryui.com/latest/themes/base/ui.all.css'
76
+ = javascript_include_tag :defaults, 'http://jqueryui.com/latest/ui/ui.datepicker.js', 'booking'
77
+ </code></pre>
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('resmarkee', '0.1.1') do |p|
6
+ p.description = "Connect to Resmark Reservation Web Services"
7
+ p.url = "http://github.com/scullygroup/resmarkee"
8
+ p.author = "Brandon Calloway"
9
+ p.email = "brandon@scullytown.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
13
+
14
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
@@ -0,0 +1,24 @@
1
+ class BookingGenerator < Rails::Generator::Base
2
+ def manifest
3
+ record do |m|
4
+
5
+ # Controller
6
+ m.file "controllers/bookings_controller.rb", "app/controllers/bookings_controller.rb"
7
+
8
+ # Helper
9
+ m.file "helpers/bookings_helper.rb", "app/helpers/bookings_helper.rb"
10
+
11
+ # Model
12
+ m.file "models/booking.rb", "app/models/booking.rb"
13
+
14
+ # Views
15
+ m.directory "app/views/bookings"
16
+ m.file "views/bookings/_activities.html.haml", "app/views/bookings/_activities.html.haml"
17
+ m.file "views/bookings/index.html.haml", "app/views/bookings/index.html.haml"
18
+
19
+ # Images
20
+ m.file "images/calendar.png", "public/images/calendar.png"
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,11 @@
1
+ class BookingsController < ApplicationController
2
+
3
+ def index
4
+ end
5
+
6
+ def show_activities
7
+ @id = params[:locationId]
8
+ render :partial => 'activities', :locals => { :location_id => "#{@id}" }
9
+ end
10
+
11
+ end
@@ -0,0 +1,71 @@
1
+ module BookingsHelper
2
+
3
+ require 'resmark'
4
+ require 'nokogiri'
5
+
6
+ # Setup SOAP request and check for cached file
7
+ def soap_response(action)
8
+ @host = HOST
9
+
10
+ if File.exist?("db/#{action}.xml")
11
+ @file = File.new("db/#{action}.xml")
12
+ @ft = @file.ctime + 86400 #file time + 24 hours
13
+ end
14
+
15
+ #if the cached xml file is older than 24 hours, make a SOAP request and create a new one
16
+ if !@ft || @ft <= Time.now
17
+ @driver = ReadOnlyWebServiceDispatcher.new
18
+ @driver.headerhandler << Resmark::SoapAuthHeader.new
19
+ @action = @driver.getLocationsForUrl("arg0" => "#{@host}").to_a
20
+
21
+ File.open( "db/getLocationsForUrl.xml", "w" ) do | f |
22
+ f << SOAP::Marshal.marshal( @action )
23
+ end
24
+ end
25
+
26
+ # read the cached xml file
27
+ xml = File.read("db/getLocationsForUrl.xml")
28
+
29
+ @doc = Nokogiri::XML.parse(xml)
30
+ end
31
+
32
+
33
+ ################################################
34
+ #
35
+ # Show all items in lists
36
+ #
37
+ ################################################
38
+
39
+ def show_locations_activities
40
+ self.soap_response('getLocationsForUrl')
41
+
42
+ locations = []
43
+ locations.push("<option value=\"\">-- Select a Location --</option>")
44
+
45
+ @doc.xpath('/env:Envelope/env:Body/Array/item/return/activityNames').each do |node|
46
+ id = node.xpath('id')
47
+ city = node.xpath('city')
48
+ locations.push("<option value=\"#{id.text}\">#{city.text}</option>")
49
+ end
50
+
51
+ haml_concat "#{locations}"
52
+
53
+ end
54
+
55
+ def show_activities(id)
56
+ self.soap_response('getLocationsForUrl')
57
+
58
+ activities = []
59
+ haml_concat '<select id="activityNameId" name="activityNameId">'
60
+
61
+ #@doc.xpath("/env:Envelope/env:Body/Array/item/return/item[id='#{id}']/activityNames/item").each do |node|
62
+ @doc.xpath("/env:Envelope/env:Body/Array/item/return/activityNames").each do |node|
63
+ id = node.xpath('id')
64
+ name = node.xpath('name')
65
+ activities.push("<option value=\"#{id.text}\">#{name.text}</option>")
66
+ end
67
+
68
+ haml_concat "#{activities}</select>"
69
+ end
70
+
71
+ end
@@ -0,0 +1,3 @@
1
+ class Booking < ActiveRecord::Base
2
+
3
+ end
@@ -0,0 +1 @@
1
+ - show_activities(location_id)
@@ -0,0 +1,40 @@
1
+ %h1
2
+ Book a Tour
3
+
4
+ %form{ :id => "resmarkForm", :action => "https://#{HOST}/express/reservation/results.jsf", :target => "_blank" }
5
+ %p
6
+ %label
7
+ Locations
8
+ %select{ :id => 'locationId', :name => 'locationId' }
9
+ - show_locations_activities
10
+
11
+ %p
12
+ %label
13
+ Activities
14
+ %span#activity_list
15
+ %select{ :id => 'activityNameId', :name => 'activityNameId' }
16
+ %option{ :value => "" }-- Select an Activity --
17
+
18
+ #datepicker
19
+ %p
20
+ %label
21
+ Start Date
22
+ %input{ :id => "startDate", :class => "date-pick", :name => "startDate" }
23
+ %a{ :class => "dp-choose-date", :title => "Choose date", :href => "#" }
24
+
25
+ %p
26
+ %label
27
+ End Date
28
+ %input{ :id => "endDate", :class => "date-pick", :name => "endDate" }
29
+ %a{ :class => "dp-choose-date", :title => "Choose date", :href => "#" }
30
+
31
+ %p
32
+ Guests
33
+ %select{ :id => 'guestCount', :name => 'guestCount' }
34
+ - for n in 1..35
35
+ %option{ :value => "#{n}" }#{n}
36
+
37
+ %p
38
+ %input{ :type => "submit", :value => "Submit" }
39
+
40
+ = observe_field("locationId", :update => "activity_list", :url => { :action => 'show_activities' }, :with => "'locationId='+value")
@@ -0,0 +1,1876 @@
1
+ require 'xsd/qname'
2
+
3
+ # {http://ws.resmarksystems.com/}getAgencyById
4
+ class GetAgencyById
5
+ @@schema_type = "getAgencyById"
6
+ @@schema_ns = "http://ws.resmarksystems.com/"
7
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]]]
8
+
9
+ attr_accessor :id
10
+
11
+ def initialize(id = nil)
12
+ @id = id
13
+ end
14
+ end
15
+
16
+ # {http://ws.resmarksystems.com/}getAgencyByIdResponse
17
+ class GetAgencyByIdResponse
18
+ @@schema_type = "getAgencyByIdResponse"
19
+ @@schema_ns = "http://ws.resmarksystems.com/"
20
+ @@schema_element = [["v_return", ["TravelAgencyLite", XSD::QName.new(nil, "return")]]]
21
+
22
+ def return
23
+ @v_return
24
+ end
25
+
26
+ def return=(value)
27
+ @v_return = value
28
+ end
29
+
30
+ def initialize(v_return = nil)
31
+ @v_return = v_return
32
+ end
33
+ end
34
+
35
+ # {http://ws.resmarksystems.com/}travelAgencyLite
36
+ class TravelAgencyLite
37
+ @@schema_type = "travelAgencyLite"
38
+ @@schema_ns = "http://ws.resmarksystems.com/"
39
+ @@schema_element = []
40
+
41
+ def initialize
42
+ end
43
+ end
44
+
45
+ # {http://ws.resmarksystems.com/}resEntityLite
46
+ class ResEntityLite
47
+ @@schema_type = "resEntityLite"
48
+ @@schema_ns = "http://ws.resmarksystems.com/"
49
+ @@schema_element = [["address", ["SOAP::SOAPString", XSD::QName.new(nil, "address")]], ["comments", ["SOAP::SOAPString", XSD::QName.new(nil, "comments")]], ["country", ["Country", XSD::QName.new(nil, "country")]], ["createdBy", ["WreUser", XSD::QName.new(nil, "createdBy")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["entityType", ["SOAP::SOAPShort", XSD::QName.new(nil, "entityType")]], ["fax", ["SOAP::SOAPString", XSD::QName.new(nil, "fax")]], ["history", ["SOAP::SOAPString", XSD::QName.new(nil, "history")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["interests", ["Interest[]", XSD::QName.new(nil, "interests")]], ["locality", ["SOAP::SOAPString", XSD::QName.new(nil, "locality")]], ["locations", ["Location[]", XSD::QName.new(nil, "locations")]], ["noBulkMail", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "noBulkMail")]], ["noEmail", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "noEmail")]], ["organizationName", ["SOAP::SOAPString", XSD::QName.new(nil, "organizationName")]], ["postalCode", ["SOAP::SOAPString", XSD::QName.new(nil, "postalCode")]], ["region", ["SOAP::SOAPString", XSD::QName.new(nil, "region")]], ["reservationLites", ["ReservationLite[]", XSD::QName.new(nil, "reservationLites")]], ["sendInquiry", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "sendInquiry")]], ["sendInquiryAfter", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "sendInquiryAfter")]], ["sendReservation", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "sendReservation")]], ["sendReservationAfter", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "sendReservationAfter")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
50
+
51
+ attr_accessor :address
52
+ attr_accessor :comments
53
+ attr_accessor :country
54
+ attr_accessor :createdBy
55
+ attr_accessor :createdDate
56
+ attr_accessor :email
57
+ attr_accessor :entityType
58
+ attr_accessor :fax
59
+ attr_accessor :history
60
+ attr_accessor :id
61
+ attr_accessor :interests
62
+ attr_accessor :locality
63
+ attr_accessor :locations
64
+ attr_accessor :noBulkMail
65
+ attr_accessor :noEmail
66
+ attr_accessor :organizationName
67
+ attr_accessor :postalCode
68
+ attr_accessor :region
69
+ attr_accessor :reservationLites
70
+ attr_accessor :sendInquiry
71
+ attr_accessor :sendInquiryAfter
72
+ attr_accessor :sendReservation
73
+ attr_accessor :sendReservationAfter
74
+ attr_accessor :version
75
+
76
+ def initialize(address = nil, comments = nil, country = nil, createdBy = nil, createdDate = nil, email = nil, entityType = nil, fax = nil, history = nil, id = nil, interests = [], locality = nil, locations = [], noBulkMail = nil, noEmail = nil, organizationName = nil, postalCode = nil, region = nil, reservationLites = [], sendInquiry = nil, sendInquiryAfter = nil, sendReservation = nil, sendReservationAfter = nil, version = nil)
77
+ @address = address
78
+ @comments = comments
79
+ @country = country
80
+ @createdBy = createdBy
81
+ @createdDate = createdDate
82
+ @email = email
83
+ @entityType = entityType
84
+ @fax = fax
85
+ @history = history
86
+ @id = id
87
+ @interests = interests
88
+ @locality = locality
89
+ @locations = locations
90
+ @noBulkMail = noBulkMail
91
+ @noEmail = noEmail
92
+ @organizationName = organizationName
93
+ @postalCode = postalCode
94
+ @region = region
95
+ @reservationLites = reservationLites
96
+ @sendInquiry = sendInquiry
97
+ @sendInquiryAfter = sendInquiryAfter
98
+ @sendReservation = sendReservation
99
+ @sendReservationAfter = sendReservationAfter
100
+ @version = version
101
+ end
102
+ end
103
+
104
+ # {http://ws.resmarksystems.com/}commission2TravelAgency
105
+ class Commission2TravelAgency
106
+ @@schema_type = "commission2TravelAgency"
107
+ @@schema_ns = "http://ws.resmarksystems.com/"
108
+ @@schema_element = []
109
+
110
+ def initialize
111
+ end
112
+ end
113
+
114
+ # {http://ws.resmarksystems.com/}abstractEntity
115
+ class AbstractEntity
116
+ @@schema_type = "abstractEntity"
117
+ @@schema_ns = "http://ws.resmarksystems.com/"
118
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
119
+
120
+ attr_accessor :id
121
+ attr_accessor :version
122
+
123
+ def initialize(id = nil, version = nil)
124
+ @id = id
125
+ @version = version
126
+ end
127
+ end
128
+
129
+ # {http://ws.resmarksystems.com/}activityName
130
+ class ActivityName
131
+ @@schema_type = "activityName"
132
+ @@schema_ns = "http://ws.resmarksystems.com/"
133
+ @@schema_element = []
134
+
135
+ def initialize
136
+ end
137
+ end
138
+
139
+ # {http://ws.resmarksystems.com/}chargeItem
140
+ class ChargeItem
141
+ @@schema_type = "chargeItem"
142
+ @@schema_ns = "http://ws.resmarksystems.com/"
143
+ @@schema_element = []
144
+
145
+ def initialize
146
+ end
147
+ end
148
+
149
+ # {http://ws.resmarksystems.com/}activityType
150
+ class ActivityType
151
+ @@schema_type = "activityType"
152
+ @@schema_ns = "http://ws.resmarksystems.com/"
153
+ @@schema_element = []
154
+
155
+ def initialize
156
+ end
157
+ end
158
+
159
+ # {http://ws.resmarksystems.com/}activityReservationChargeItem
160
+ class ActivityReservationChargeItem
161
+ @@schema_type = "activityReservationChargeItem"
162
+ @@schema_ns = "http://ws.resmarksystems.com/"
163
+ @@schema_element = []
164
+
165
+ def initialize
166
+ end
167
+ end
168
+
169
+ # {http://ws.resmarksystems.com/}fee
170
+ class Fee
171
+ @@schema_type = "fee"
172
+ @@schema_ns = "http://ws.resmarksystems.com/"
173
+ @@schema_element = []
174
+
175
+ def initialize
176
+ end
177
+ end
178
+
179
+ # {http://ws.resmarksystems.com/}option
180
+ class Option
181
+ @@schema_type = "option"
182
+ @@schema_ns = "http://ws.resmarksystems.com/"
183
+ @@schema_element = []
184
+
185
+ def initialize
186
+ end
187
+ end
188
+
189
+ # {http://ws.resmarksystems.com/}dateLite
190
+ class DateLite
191
+ @@schema_type = "dateLite"
192
+ @@schema_ns = "http://ws.resmarksystems.com/"
193
+ @@schema_element = [["day", ["SOAP::SOAPInt", XSD::QName.new(nil, "day")]], ["month", ["SOAP::SOAPInt", XSD::QName.new(nil, "month")]], ["year", ["SOAP::SOAPInt", XSD::QName.new(nil, "year")]]]
194
+
195
+ attr_accessor :day
196
+ attr_accessor :month
197
+ attr_accessor :year
198
+
199
+ def initialize(day = nil, month = nil, year = nil)
200
+ @day = day
201
+ @month = month
202
+ @year = year
203
+ end
204
+ end
205
+
206
+ # {http://ws.resmarksystems.com/}pickupOption
207
+ class PickupOption
208
+ @@schema_type = "pickupOption"
209
+ @@schema_ns = "http://ws.resmarksystems.com/"
210
+ @@schema_element = []
211
+
212
+ def initialize
213
+ end
214
+ end
215
+
216
+ # {http://ws.resmarksystems.com/}pickupLocation
217
+ class PickupLocation
218
+ @@schema_type = "pickupLocation"
219
+ @@schema_ns = "http://ws.resmarksystems.com/"
220
+ @@schema_element = []
221
+
222
+ def initialize
223
+ end
224
+ end
225
+
226
+ # {http://ws.resmarksystems.com/}discount
227
+ class Discount
228
+ @@schema_type = "discount"
229
+ @@schema_ns = "http://ws.resmarksystems.com/"
230
+ @@schema_element = []
231
+
232
+ def initialize
233
+ end
234
+ end
235
+
236
+ # {http://ws.resmarksystems.com/}discountExclusionDate
237
+ class DiscountExclusionDate
238
+ @@schema_type = "discountExclusionDate"
239
+ @@schema_ns = "http://ws.resmarksystems.com/"
240
+ @@schema_element = [["discountId", ["SOAP::SOAPInt", XSD::QName.new(nil, "discountId")]], ["exclusionDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "exclusionDate")]], ["exclusionDateLite", ["DateLite", XSD::QName.new(nil, "exclusionDateLite")]]]
241
+
242
+ attr_accessor :discountId
243
+ attr_accessor :exclusionDate
244
+ attr_accessor :exclusionDateLite
245
+
246
+ def initialize(discountId = nil, exclusionDate = nil, exclusionDateLite = nil)
247
+ @discountId = discountId
248
+ @exclusionDate = exclusionDate
249
+ @exclusionDateLite = exclusionDateLite
250
+ end
251
+ end
252
+
253
+ # {http://ws.resmarksystems.com/}groupDiscount
254
+ class GroupDiscount
255
+ @@schema_type = "groupDiscount"
256
+ @@schema_ns = "http://ws.resmarksystems.com/"
257
+ @@schema_element = []
258
+
259
+ def initialize
260
+ end
261
+ end
262
+
263
+ # {http://ws.resmarksystems.com/}timeLite
264
+ class TimeLite
265
+ @@schema_type = "timeLite"
266
+ @@schema_ns = "http://ws.resmarksystems.com/"
267
+ @@schema_element = [["hour", ["SOAP::SOAPInt", XSD::QName.new(nil, "hour")]], ["minute", ["SOAP::SOAPInt", XSD::QName.new(nil, "minute")]], ["second", ["SOAP::SOAPInt", XSD::QName.new(nil, "second")]]]
268
+
269
+ attr_accessor :hour
270
+ attr_accessor :minute
271
+ attr_accessor :second
272
+
273
+ def initialize(hour = nil, minute = nil, second = nil)
274
+ @hour = hour
275
+ @minute = minute
276
+ @second = second
277
+ end
278
+ end
279
+
280
+ # {http://ws.resmarksystems.com/}commission2ActivityReservation
281
+ class Commission2ActivityReservation
282
+ @@schema_type = "commission2ActivityReservation"
283
+ @@schema_ns = "http://ws.resmarksystems.com/"
284
+ @@schema_element = []
285
+
286
+ def initialize
287
+ end
288
+ end
289
+
290
+ # {http://ws.resmarksystems.com/}commission
291
+ class Commission
292
+ @@schema_type = "commission"
293
+ @@schema_ns = "http://ws.resmarksystems.com/"
294
+ @@schema_element = []
295
+
296
+ def initialize
297
+ end
298
+ end
299
+
300
+ # {http://ws.resmarksystems.com/}specialFee
301
+ class SpecialFee
302
+ @@schema_type = "specialFee"
303
+ @@schema_ns = "http://ws.resmarksystems.com/"
304
+ @@schema_element = []
305
+
306
+ def initialize
307
+ end
308
+ end
309
+
310
+ # {http://ws.resmarksystems.com/}specialChargeItem
311
+ class SpecialChargeItem
312
+ @@schema_type = "specialChargeItem"
313
+ @@schema_ns = "http://ws.resmarksystems.com/"
314
+ @@schema_element = []
315
+
316
+ def initialize
317
+ end
318
+ end
319
+
320
+ # {http://ws.resmarksystems.com/}wreUser
321
+ class WreUser
322
+ @@schema_type = "wreUser"
323
+ @@schema_ns = "http://ws.resmarksystems.com/"
324
+ @@schema_element = []
325
+
326
+ def initialize
327
+ end
328
+ end
329
+
330
+ # {http://ws.resmarksystems.com/}division
331
+ class Division
332
+ @@schema_type = "division"
333
+ @@schema_ns = "http://ws.resmarksystems.com/"
334
+ @@schema_element = []
335
+
336
+ def initialize
337
+ end
338
+ end
339
+
340
+ # {http://ws.resmarksystems.com/}creditCardType
341
+ class CreditCardType
342
+ @@schema_type = "creditCardType"
343
+ @@schema_ns = "http://ws.resmarksystems.com/"
344
+ @@schema_element = []
345
+
346
+ def initialize
347
+ end
348
+ end
349
+
350
+ # {http://ws.resmarksystems.com/}country
351
+ class Country
352
+ @@schema_type = "country"
353
+ @@schema_ns = "http://ws.resmarksystems.com/"
354
+ @@schema_element = []
355
+
356
+ def initialize
357
+ end
358
+ end
359
+
360
+ # {http://ws.resmarksystems.com/}specialDiscount
361
+ class SpecialDiscount
362
+ @@schema_type = "specialDiscount"
363
+ @@schema_ns = "http://ws.resmarksystems.com/"
364
+ @@schema_element = []
365
+
366
+ def initialize
367
+ end
368
+ end
369
+
370
+ # {http://ws.resmarksystems.com/}tax
371
+ class Tax
372
+ @@schema_type = "tax"
373
+ @@schema_ns = "http://ws.resmarksystems.com/"
374
+ @@schema_element = []
375
+
376
+ def initialize
377
+ end
378
+ end
379
+
380
+ # {http://ws.resmarksystems.com/}commission2ActivityName
381
+ class Commission2ActivityName
382
+ @@schema_type = "commission2ActivityName"
383
+ @@schema_ns = "http://ws.resmarksystems.com/"
384
+ @@schema_element = []
385
+
386
+ def initialize
387
+ end
388
+ end
389
+
390
+ # {http://ws.resmarksystems.com/}divisionWeb
391
+ class DivisionWeb
392
+ @@schema_type = "divisionWeb"
393
+ @@schema_ns = "http://ws.resmarksystems.com/"
394
+ @@schema_element = []
395
+
396
+ def initialize
397
+ end
398
+ end
399
+
400
+ # {http://ws.resmarksystems.com/}coordinator
401
+ class Coordinator
402
+ @@schema_type = "coordinator"
403
+ @@schema_ns = "http://ws.resmarksystems.com/"
404
+ @@schema_element = []
405
+
406
+ def initialize
407
+ end
408
+ end
409
+
410
+ # {http://ws.resmarksystems.com/}location
411
+ class Location
412
+ @@schema_type = "location"
413
+ @@schema_ns = "http://ws.resmarksystems.com/"
414
+ @@schema_element = []
415
+
416
+ def initialize
417
+ end
418
+ end
419
+
420
+ # {http://ws.resmarksystems.com/}perGuestItem
421
+ class PerGuestItem
422
+ @@schema_type = "perGuestItem"
423
+ @@schema_ns = "http://ws.resmarksystems.com/"
424
+ @@schema_element = []
425
+
426
+ def initialize
427
+ end
428
+ end
429
+
430
+ # {http://ws.resmarksystems.com/}policy
431
+ class Policy
432
+ @@schema_type = "policy"
433
+ @@schema_ns = "http://ws.resmarksystems.com/"
434
+ @@schema_element = []
435
+
436
+ def initialize
437
+ end
438
+ end
439
+
440
+ # {http://ws.resmarksystems.com/}activityName2ResourceGroup
441
+ class ActivityName2ResourceGroup
442
+ @@schema_type = "activityName2ResourceGroup"
443
+ @@schema_ns = "http://ws.resmarksystems.com/"
444
+ @@schema_element = []
445
+
446
+ def initialize
447
+ end
448
+ end
449
+
450
+ # {http://ws.resmarksystems.com/}resourceGroup
451
+ class ResourceGroup
452
+ @@schema_type = "resourceGroup"
453
+ @@schema_ns = "http://ws.resmarksystems.com/"
454
+ @@schema_element = []
455
+
456
+ def initialize
457
+ end
458
+ end
459
+
460
+ # {http://ws.resmarksystems.com/}resourceName
461
+ class ResourceName
462
+ @@schema_type = "resourceName"
463
+ @@schema_ns = "http://ws.resmarksystems.com/"
464
+ @@schema_element = []
465
+
466
+ def initialize
467
+ end
468
+ end
469
+
470
+ # {http://ws.resmarksystems.com/}resourceType
471
+ class ResourceType
472
+ @@schema_type = "resourceType"
473
+ @@schema_ns = "http://ws.resmarksystems.com/"
474
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]]
475
+
476
+ attr_accessor :id
477
+ attr_accessor :name
478
+
479
+ def initialize(id = nil, name = nil)
480
+ @id = id
481
+ @name = name
482
+ end
483
+ end
484
+
485
+ # {http://ws.resmarksystems.com/}travelAgent
486
+ class TravelAgent
487
+ @@schema_type = "travelAgent"
488
+ @@schema_ns = "http://ws.resmarksystems.com/"
489
+ @@schema_element = []
490
+
491
+ def initialize
492
+ end
493
+ end
494
+
495
+ # {http://ws.resmarksystems.com/}interest
496
+ class Interest
497
+ @@schema_type = "interest"
498
+ @@schema_ns = "http://ws.resmarksystems.com/"
499
+ @@schema_element = []
500
+
501
+ def initialize
502
+ end
503
+ end
504
+
505
+ # {http://ws.resmarksystems.com/}reservationLite
506
+ class ReservationLite
507
+ @@schema_type = "reservationLite"
508
+ @@schema_ns = "http://ws.resmarksystems.com/"
509
+ @@schema_element = [["activityReservationLites", ["ActivityReservationLite[]", XSD::QName.new(nil, "activityReservationLites")]], ["advertisingSourceId", ["SOAP::SOAPInt", XSD::QName.new(nil, "advertisingSourceId")]], ["balanceDue", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "balanceDue")]], ["balanceDueDate", ["DateLite", XSD::QName.new(nil, "balanceDueDate")]], ["batchPrintConfirmation", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "batchPrintConfirmation")]], ["billingModel", ["SOAP::SOAPString", XSD::QName.new(nil, "billingModel")]], ["cancellationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "cancellationComments")]], ["createdById", ["SOAP::SOAPInt", XSD::QName.new(nil, "createdById")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["depositDueDate", ["DateLite", XSD::QName.new(nil, "depositDueDate")]], ["directBill", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "directBill")]], ["divisionId", ["SOAP::SOAPInt", XSD::QName.new(nil, "divisionId")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["lastGuestCreatedOrderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "lastGuestCreatedOrderId")]], ["officeComments", ["SOAP::SOAPString", XSD::QName.new(nil, "officeComments")]], ["packageReservationLites", ["PackageReservationLite[]", XSD::QName.new(nil, "packageReservationLites")]], ["paymentTransfersForSourceReservation", ["PaymentTransfer[]", XSD::QName.new(nil, "paymentTransfersForSourceReservation")]], ["paymentTransfersForTargetReservation", ["PaymentTransfer[]", XSD::QName.new(nil, "paymentTransfersForTargetReservation")]], ["payments", ["PaymentLite[]", XSD::QName.new(nil, "payments")]], ["resEntityId", ["SOAP::SOAPInt", XSD::QName.new(nil, "resEntityId")]], ["resEntityType", ["SOAP::SOAPInt", XSD::QName.new(nil, "resEntityType")]], ["totalCost", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "totalCost")]], ["totalPaid", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "totalPaid")]], ["travelAgent", ["TravelAgent", XSD::QName.new(nil, "travelAgent")]], ["travelPartyTypes", ["TravelPartyType[]", XSD::QName.new(nil, "travelPartyTypes")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["webModified", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "webModified")]]]
510
+
511
+ attr_accessor :activityReservationLites
512
+ attr_accessor :advertisingSourceId
513
+ attr_accessor :balanceDue
514
+ attr_accessor :balanceDueDate
515
+ attr_accessor :batchPrintConfirmation
516
+ attr_accessor :billingModel
517
+ attr_accessor :cancellationComments
518
+ attr_accessor :createdById
519
+ attr_accessor :createdDate
520
+ attr_accessor :depositDueDate
521
+ attr_accessor :directBill
522
+ attr_accessor :divisionId
523
+ attr_accessor :id
524
+ attr_accessor :lastGuestCreatedOrderId
525
+ attr_accessor :officeComments
526
+ attr_accessor :packageReservationLites
527
+ attr_accessor :paymentTransfersForSourceReservation
528
+ attr_accessor :paymentTransfersForTargetReservation
529
+ attr_accessor :payments
530
+ attr_accessor :resEntityId
531
+ attr_accessor :resEntityType
532
+ attr_accessor :totalCost
533
+ attr_accessor :totalPaid
534
+ attr_accessor :travelAgent
535
+ attr_accessor :travelPartyTypes
536
+ attr_accessor :version
537
+ attr_accessor :webModified
538
+
539
+ def initialize(activityReservationLites = [], advertisingSourceId = nil, balanceDue = nil, balanceDueDate = nil, batchPrintConfirmation = nil, billingModel = nil, cancellationComments = nil, createdById = nil, createdDate = nil, depositDueDate = nil, directBill = nil, divisionId = nil, id = nil, lastGuestCreatedOrderId = nil, officeComments = nil, packageReservationLites = [], paymentTransfersForSourceReservation = [], paymentTransfersForTargetReservation = [], payments = [], resEntityId = nil, resEntityType = nil, totalCost = nil, totalPaid = nil, travelAgent = nil, travelPartyTypes = [], version = nil, webModified = nil)
540
+ @activityReservationLites = activityReservationLites
541
+ @advertisingSourceId = advertisingSourceId
542
+ @balanceDue = balanceDue
543
+ @balanceDueDate = balanceDueDate
544
+ @batchPrintConfirmation = batchPrintConfirmation
545
+ @billingModel = billingModel
546
+ @cancellationComments = cancellationComments
547
+ @createdById = createdById
548
+ @createdDate = createdDate
549
+ @depositDueDate = depositDueDate
550
+ @directBill = directBill
551
+ @divisionId = divisionId
552
+ @id = id
553
+ @lastGuestCreatedOrderId = lastGuestCreatedOrderId
554
+ @officeComments = officeComments
555
+ @packageReservationLites = packageReservationLites
556
+ @paymentTransfersForSourceReservation = paymentTransfersForSourceReservation
557
+ @paymentTransfersForTargetReservation = paymentTransfersForTargetReservation
558
+ @payments = payments
559
+ @resEntityId = resEntityId
560
+ @resEntityType = resEntityType
561
+ @totalCost = totalCost
562
+ @totalPaid = totalPaid
563
+ @travelAgent = travelAgent
564
+ @travelPartyTypes = travelPartyTypes
565
+ @version = version
566
+ @webModified = webModified
567
+ end
568
+ end
569
+
570
+ # {http://ws.resmarksystems.com/}activityReservationLite
571
+ class ActivityReservationLite
572
+ @@schema_type = "activityReservationLite"
573
+ @@schema_ns = "http://ws.resmarksystems.com/"
574
+ @@schema_element = [["activity", ["ActivityLite", XSD::QName.new(nil, "activity")]], ["activityGroupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "activityGroupId")]], ["activityReservationComments", ["ActivityReservationCommentLite[]", XSD::QName.new(nil, "activityReservationComments")]], ["balanceDue", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "balanceDue")]], ["cancelled", ["CancelledLite", XSD::QName.new(nil, "cancelled")]], ["commission2activityReservations", ["Commission2ActivityReservation[]", XSD::QName.new(nil, "commission2activityReservations")]], ["confirmationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "confirmationComments")]], ["createdById", ["SOAP::SOAPInt", XSD::QName.new(nil, "createdById")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["discount2activityReservations", ["Discount2ActivityReservationLite[]", XSD::QName.new(nil, "discount2activityReservations")]], ["fee2activityReservations", ["Fee2ActivityReservationLite[]", XSD::QName.new(nil, "fee2activityReservations")]], ["guestLites", ["GuestLite[]", XSD::QName.new(nil, "guestLites")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["itemResourceAllocations", ["ItemResourceAllocationLite[]", XSD::QName.new(nil, "itemResourceAllocations")]], ["option2activityReservations", ["Option2ActivityReservationLite[]", XSD::QName.new(nil, "option2activityReservations")]], ["packageReservationCode", ["SOAP::SOAPString", XSD::QName.new(nil, "packageReservationCode")]], ["packageReservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "packageReservationId")]], ["policiesAccepted", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "policiesAccepted")]], ["ratePlan", ["RatePlan", XSD::QName.new(nil, "ratePlan")]], ["resEntityId", ["SOAP::SOAPInt", XSD::QName.new(nil, "resEntityId")]], ["resEntityType", ["SOAP::SOAPInt", XSD::QName.new(nil, "resEntityType")]], ["reservationAgencyName", ["SOAP::SOAPString", XSD::QName.new(nil, "reservationAgencyName")]], ["reservationCreatedDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "reservationCreatedDate")]], ["reservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "reservationId")]], ["reservationPersonName", ["SOAP::SOAPString", XSD::QName.new(nil, "reservationPersonName")]], ["rosterFooterComments", ["SOAP::SOAPString", XSD::QName.new(nil, "rosterFooterComments")]], ["seatsExpired", ["SeatsExpired", XSD::QName.new(nil, "seatsExpired")]], ["seatsHeld", ["SeatsHeld", XSD::QName.new(nil, "seatsHeld")]], ["specialDiscount", ["SpecialDiscount", XSD::QName.new(nil, "specialDiscount")]], ["specialFee", ["SpecialFee", XSD::QName.new(nil, "specialFee")]], ["taxes", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "taxes")]], ["totalCost", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "totalCost")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
575
+
576
+ attr_accessor :activity
577
+ attr_accessor :activityGroupId
578
+ attr_accessor :activityReservationComments
579
+ attr_accessor :balanceDue
580
+ attr_accessor :cancelled
581
+ attr_accessor :commission2activityReservations
582
+ attr_accessor :confirmationComments
583
+ attr_accessor :createdById
584
+ attr_accessor :createdDate
585
+ attr_accessor :discount2activityReservations
586
+ attr_accessor :fee2activityReservations
587
+ attr_accessor :guestLites
588
+ attr_accessor :id
589
+ attr_accessor :itemResourceAllocations
590
+ attr_accessor :option2activityReservations
591
+ attr_accessor :packageReservationCode
592
+ attr_accessor :packageReservationId
593
+ attr_accessor :policiesAccepted
594
+ attr_accessor :ratePlan
595
+ attr_accessor :resEntityId
596
+ attr_accessor :resEntityType
597
+ attr_accessor :reservationAgencyName
598
+ attr_accessor :reservationCreatedDate
599
+ attr_accessor :reservationId
600
+ attr_accessor :reservationPersonName
601
+ attr_accessor :rosterFooterComments
602
+ attr_accessor :seatsExpired
603
+ attr_accessor :seatsHeld
604
+ attr_accessor :specialDiscount
605
+ attr_accessor :specialFee
606
+ attr_accessor :taxes
607
+ attr_accessor :totalCost
608
+ attr_accessor :version
609
+
610
+ def initialize(activity = nil, activityGroupId = nil, activityReservationComments = [], balanceDue = nil, cancelled = nil, commission2activityReservations = [], confirmationComments = nil, createdById = nil, createdDate = nil, discount2activityReservations = [], fee2activityReservations = [], guestLites = [], id = nil, itemResourceAllocations = [], option2activityReservations = [], packageReservationCode = nil, packageReservationId = nil, policiesAccepted = nil, ratePlan = nil, resEntityId = nil, resEntityType = nil, reservationAgencyName = nil, reservationCreatedDate = nil, reservationId = nil, reservationPersonName = nil, rosterFooterComments = nil, seatsExpired = nil, seatsHeld = nil, specialDiscount = nil, specialFee = nil, taxes = [], totalCost = nil, version = nil)
611
+ @activity = activity
612
+ @activityGroupId = activityGroupId
613
+ @activityReservationComments = activityReservationComments
614
+ @balanceDue = balanceDue
615
+ @cancelled = cancelled
616
+ @commission2activityReservations = commission2activityReservations
617
+ @confirmationComments = confirmationComments
618
+ @createdById = createdById
619
+ @createdDate = createdDate
620
+ @discount2activityReservations = discount2activityReservations
621
+ @fee2activityReservations = fee2activityReservations
622
+ @guestLites = guestLites
623
+ @id = id
624
+ @itemResourceAllocations = itemResourceAllocations
625
+ @option2activityReservations = option2activityReservations
626
+ @packageReservationCode = packageReservationCode
627
+ @packageReservationId = packageReservationId
628
+ @policiesAccepted = policiesAccepted
629
+ @ratePlan = ratePlan
630
+ @resEntityId = resEntityId
631
+ @resEntityType = resEntityType
632
+ @reservationAgencyName = reservationAgencyName
633
+ @reservationCreatedDate = reservationCreatedDate
634
+ @reservationId = reservationId
635
+ @reservationPersonName = reservationPersonName
636
+ @rosterFooterComments = rosterFooterComments
637
+ @seatsExpired = seatsExpired
638
+ @seatsHeld = seatsHeld
639
+ @specialDiscount = specialDiscount
640
+ @specialFee = specialFee
641
+ @taxes = taxes
642
+ @totalCost = totalCost
643
+ @version = version
644
+ end
645
+ end
646
+
647
+ # {http://ws.resmarksystems.com/}activityLite
648
+ class ActivityLite
649
+ @@schema_type = "activityLite"
650
+ @@schema_ns = "http://ws.resmarksystems.com/"
651
+ @@schema_element = [["activityNameId", ["SOAP::SOAPInt", XSD::QName.new(nil, "activityNameId")]], ["balanceDueDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "balanceDueDate")]], ["beginTimeDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "beginTimeDescription")]], ["bookOnline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "bookOnline")]], ["bracket", ["ItemBracket", XSD::QName.new(nil, "bracket")]], ["confirmationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "confirmationComments")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["displayOnlineUnavailable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "displayOnlineUnavailable")]], ["endDate", ["DateLite", XSD::QName.new(nil, "endDate")]], ["endTimeDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "endTimeDescription")]], ["generalLedgerCode", ["SOAP::SOAPInt", XSD::QName.new(nil, "generalLedgerCode")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["includes", ["SOAP::SOAPString", XSD::QName.new(nil, "includes")]], ["launchNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "launchNumber")]], ["maxWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxWeight")]], ["meetingTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "meetingTime")]], ["meetingTimeHour", ["SOAP::SOAPInt", XSD::QName.new(nil, "meetingTimeHour")]], ["meetingTimeMinute", ["SOAP::SOAPInt", XSD::QName.new(nil, "meetingTimeMinute")]], ["minAdultAge", ["SOAP::SOAPShort", XSD::QName.new(nil, "minAdultAge")]], ["minWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "minWeight")]], ["minYouthAge", ["SOAP::SOAPShort", XSD::QName.new(nil, "minYouthAge")]], ["onlinePreReservationCommments", ["SOAP::SOAPString", XSD::QName.new(nil, "onlinePreReservationCommments")]], ["preReservationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "preReservationComments")]], ["ratePlanId", ["SOAP::SOAPInt", XSD::QName.new(nil, "ratePlanId")]], ["returnTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "returnTime")]], ["returnTimeHour", ["SOAP::SOAPInt", XSD::QName.new(nil, "returnTimeHour")]], ["returnTimeMinute", ["SOAP::SOAPInt", XSD::QName.new(nil, "returnTimeMinute")]], ["rosterFooterComments", ["SOAP::SOAPString", XSD::QName.new(nil, "rosterFooterComments")]], ["showOnline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showOnline")]], ["startDate", ["DateLite", XSD::QName.new(nil, "startDate")]], ["totalSeats", ["SOAP::SOAPInt", XSD::QName.new(nil, "totalSeats")]], ["totalUnits", ["SOAP::SOAPInt", XSD::QName.new(nil, "totalUnits")]], ["unavailableWithin", ["SOAP::SOAPInt", XSD::QName.new(nil, "unavailableWithin")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
652
+
653
+ attr_accessor :activityNameId
654
+ attr_accessor :balanceDueDate
655
+ attr_accessor :beginTimeDescription
656
+ attr_accessor :bookOnline
657
+ attr_accessor :bracket
658
+ attr_accessor :confirmationComments
659
+ attr_accessor :createdDate
660
+ attr_accessor :displayOnlineUnavailable
661
+ attr_accessor :endDate
662
+ attr_accessor :endTimeDescription
663
+ attr_accessor :generalLedgerCode
664
+ attr_accessor :id
665
+ attr_accessor :includes
666
+ attr_accessor :launchNumber
667
+ attr_accessor :maxWeight
668
+ attr_accessor :meetingTime
669
+ attr_accessor :meetingTimeHour
670
+ attr_accessor :meetingTimeMinute
671
+ attr_accessor :minAdultAge
672
+ attr_accessor :minWeight
673
+ attr_accessor :minYouthAge
674
+ attr_accessor :onlinePreReservationCommments
675
+ attr_accessor :preReservationComments
676
+ attr_accessor :ratePlanId
677
+ attr_accessor :returnTime
678
+ attr_accessor :returnTimeHour
679
+ attr_accessor :returnTimeMinute
680
+ attr_accessor :rosterFooterComments
681
+ attr_accessor :showOnline
682
+ attr_accessor :startDate
683
+ attr_accessor :totalSeats
684
+ attr_accessor :totalUnits
685
+ attr_accessor :unavailableWithin
686
+ attr_accessor :version
687
+
688
+ def initialize(activityNameId = nil, balanceDueDate = nil, beginTimeDescription = nil, bookOnline = nil, bracket = nil, confirmationComments = nil, createdDate = nil, displayOnlineUnavailable = nil, endDate = nil, endTimeDescription = nil, generalLedgerCode = nil, id = nil, includes = nil, launchNumber = nil, maxWeight = nil, meetingTime = nil, meetingTimeHour = nil, meetingTimeMinute = nil, minAdultAge = nil, minWeight = nil, minYouthAge = nil, onlinePreReservationCommments = nil, preReservationComments = nil, ratePlanId = nil, returnTime = nil, returnTimeHour = nil, returnTimeMinute = nil, rosterFooterComments = nil, showOnline = nil, startDate = nil, totalSeats = nil, totalUnits = nil, unavailableWithin = nil, version = nil)
689
+ @activityNameId = activityNameId
690
+ @balanceDueDate = balanceDueDate
691
+ @beginTimeDescription = beginTimeDescription
692
+ @bookOnline = bookOnline
693
+ @bracket = bracket
694
+ @confirmationComments = confirmationComments
695
+ @createdDate = createdDate
696
+ @displayOnlineUnavailable = displayOnlineUnavailable
697
+ @endDate = endDate
698
+ @endTimeDescription = endTimeDescription
699
+ @generalLedgerCode = generalLedgerCode
700
+ @id = id
701
+ @includes = includes
702
+ @launchNumber = launchNumber
703
+ @maxWeight = maxWeight
704
+ @meetingTime = meetingTime
705
+ @meetingTimeHour = meetingTimeHour
706
+ @meetingTimeMinute = meetingTimeMinute
707
+ @minAdultAge = minAdultAge
708
+ @minWeight = minWeight
709
+ @minYouthAge = minYouthAge
710
+ @onlinePreReservationCommments = onlinePreReservationCommments
711
+ @preReservationComments = preReservationComments
712
+ @ratePlanId = ratePlanId
713
+ @returnTime = returnTime
714
+ @returnTimeHour = returnTimeHour
715
+ @returnTimeMinute = returnTimeMinute
716
+ @rosterFooterComments = rosterFooterComments
717
+ @showOnline = showOnline
718
+ @startDate = startDate
719
+ @totalSeats = totalSeats
720
+ @totalUnits = totalUnits
721
+ @unavailableWithin = unavailableWithin
722
+ @version = version
723
+ end
724
+ end
725
+
726
+ # {http://ws.resmarksystems.com/}itemBracket
727
+ class ItemBracket
728
+ @@schema_type = "itemBracket"
729
+ @@schema_ns = "http://ws.resmarksystems.com/"
730
+ @@schema_element = []
731
+
732
+ def initialize
733
+ end
734
+ end
735
+
736
+ # {http://ws.resmarksystems.com/}activityReservationCommentLite
737
+ class ActivityReservationCommentLite
738
+ @@schema_type = "activityReservationCommentLite"
739
+ @@schema_ns = "http://ws.resmarksystems.com/"
740
+ @@schema_element = []
741
+
742
+ def initialize
743
+ end
744
+ end
745
+
746
+ # {http://ws.resmarksystems.com/}abstractLite
747
+ class AbstractLite
748
+ @@schema_type = "abstractLite"
749
+ @@schema_ns = "http://ws.resmarksystems.com/"
750
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
751
+
752
+ attr_accessor :id
753
+ attr_accessor :version
754
+
755
+ def initialize(id = nil, version = nil)
756
+ @id = id
757
+ @version = version
758
+ end
759
+ end
760
+
761
+ # {http://ws.resmarksystems.com/}activityNameLite
762
+ class ActivityNameLite
763
+ @@schema_type = "activityNameLite"
764
+ @@schema_ns = "http://ws.resmarksystems.com/"
765
+ @@schema_element = []
766
+
767
+ def initialize
768
+ end
769
+ end
770
+
771
+ # {http://ws.resmarksystems.com/}wreUserLite
772
+ class WreUserLite
773
+ @@schema_type = "wreUserLite"
774
+ @@schema_ns = "http://ws.resmarksystems.com/"
775
+ @@schema_element = []
776
+
777
+ def initialize
778
+ end
779
+ end
780
+
781
+ # {http://ws.resmarksystems.com/}cancelledLite
782
+ class CancelledLite
783
+ @@schema_type = "cancelledLite"
784
+ @@schema_ns = "http://ws.resmarksystems.com/"
785
+ @@schema_element = [["cancelledDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "cancelledDate")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["wreUserId", ["SOAP::SOAPInt", XSD::QName.new(nil, "wreUserId")]]]
786
+
787
+ attr_accessor :cancelledDate
788
+ attr_accessor :id
789
+ attr_accessor :version
790
+ attr_accessor :wreUserId
791
+
792
+ def initialize(cancelledDate = nil, id = nil, version = nil, wreUserId = nil)
793
+ @cancelledDate = cancelledDate
794
+ @id = id
795
+ @version = version
796
+ @wreUserId = wreUserId
797
+ end
798
+ end
799
+
800
+ # {http://ws.resmarksystems.com/}discount2ActivityReservationLite
801
+ class Discount2ActivityReservationLite
802
+ @@schema_type = "discount2ActivityReservationLite"
803
+ @@schema_ns = "http://ws.resmarksystems.com/"
804
+ @@schema_element = [["adultMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "adultMultiplier")]], ["discountId", ["SOAP::SOAPInt", XSD::QName.new(nil, "discountId")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["unitMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "unitMultiplier")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["youthMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "youthMultiplier")]]]
805
+
806
+ attr_accessor :adultMultiplier
807
+ attr_accessor :discountId
808
+ attr_accessor :id
809
+ attr_accessor :unitMultiplier
810
+ attr_accessor :version
811
+ attr_accessor :youthMultiplier
812
+
813
+ def initialize(adultMultiplier = nil, discountId = nil, id = nil, unitMultiplier = nil, version = nil, youthMultiplier = nil)
814
+ @adultMultiplier = adultMultiplier
815
+ @discountId = discountId
816
+ @id = id
817
+ @unitMultiplier = unitMultiplier
818
+ @version = version
819
+ @youthMultiplier = youthMultiplier
820
+ end
821
+ end
822
+
823
+ # {http://ws.resmarksystems.com/}fee2ActivityReservationLite
824
+ class Fee2ActivityReservationLite
825
+ @@schema_type = "fee2ActivityReservationLite"
826
+ @@schema_ns = "http://ws.resmarksystems.com/"
827
+ @@schema_element = [["adultMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "adultMultiplier")]], ["feeId", ["SOAP::SOAPInt", XSD::QName.new(nil, "feeId")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["unitMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "unitMultiplier")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["youthMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "youthMultiplier")]]]
828
+
829
+ attr_accessor :adultMultiplier
830
+ attr_accessor :feeId
831
+ attr_accessor :id
832
+ attr_accessor :unitMultiplier
833
+ attr_accessor :version
834
+ attr_accessor :youthMultiplier
835
+
836
+ def initialize(adultMultiplier = nil, feeId = nil, id = nil, unitMultiplier = nil, version = nil, youthMultiplier = nil)
837
+ @adultMultiplier = adultMultiplier
838
+ @feeId = feeId
839
+ @id = id
840
+ @unitMultiplier = unitMultiplier
841
+ @version = version
842
+ @youthMultiplier = youthMultiplier
843
+ end
844
+ end
845
+
846
+ # {http://ws.resmarksystems.com/}guestLite
847
+ class GuestLite
848
+ @@schema_type = "guestLite"
849
+ @@schema_ns = "http://ws.resmarksystems.com/"
850
+ @@schema_element = [["adult", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "adult")]], ["cancelled", ["CancelledLite", XSD::QName.new(nil, "cancelled")]], ["checkedIn", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "checkedIn")]], ["createdById", ["SOAP::SOAPInt", XSD::QName.new(nil, "createdById")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["createdOrder", ["SOAP::SOAPInt", XSD::QName.new(nil, "createdOrder")]], ["discounts", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "discounts")]], ["fee2guests", ["Fee2GuestLite[]", XSD::QName.new(nil, "fee2guests")]], ["guestComments", ["GuestCommentLite[]", XSD::QName.new(nil, "guestComments")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["options", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "options")]], ["perGuestItems", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "perGuestItems")]], ["releaseReceived", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "releaseReceived")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
851
+
852
+ attr_accessor :adult
853
+ attr_accessor :cancelled
854
+ attr_accessor :checkedIn
855
+ attr_accessor :createdById
856
+ attr_accessor :createdDate
857
+ attr_accessor :createdOrder
858
+ attr_accessor :discounts
859
+ attr_accessor :fee2guests
860
+ attr_accessor :guestComments
861
+ attr_accessor :id
862
+ attr_accessor :options
863
+ attr_accessor :perGuestItems
864
+ attr_accessor :releaseReceived
865
+ attr_accessor :status
866
+ attr_accessor :version
867
+
868
+ def initialize(adult = nil, cancelled = nil, checkedIn = nil, createdById = nil, createdDate = nil, createdOrder = nil, discounts = [], fee2guests = [], guestComments = [], id = nil, options = [], perGuestItems = [], releaseReceived = nil, status = nil, version = nil)
869
+ @adult = adult
870
+ @cancelled = cancelled
871
+ @checkedIn = checkedIn
872
+ @createdById = createdById
873
+ @createdDate = createdDate
874
+ @createdOrder = createdOrder
875
+ @discounts = discounts
876
+ @fee2guests = fee2guests
877
+ @guestComments = guestComments
878
+ @id = id
879
+ @options = options
880
+ @perGuestItems = perGuestItems
881
+ @releaseReceived = releaseReceived
882
+ @status = status
883
+ @version = version
884
+ end
885
+ end
886
+
887
+ # {http://ws.resmarksystems.com/}fee2GuestLite
888
+ class Fee2GuestLite
889
+ @@schema_type = "fee2GuestLite"
890
+ @@schema_ns = "http://ws.resmarksystems.com/"
891
+ @@schema_element = [["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["feeId", ["SOAP::SOAPInt", XSD::QName.new(nil, "feeId")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
892
+
893
+ attr_accessor :amount
894
+ attr_accessor :feeId
895
+ attr_accessor :id
896
+ attr_accessor :version
897
+
898
+ def initialize(amount = nil, feeId = nil, id = nil, version = nil)
899
+ @amount = amount
900
+ @feeId = feeId
901
+ @id = id
902
+ @version = version
903
+ end
904
+ end
905
+
906
+ # {http://ws.resmarksystems.com/}guestCommentLite
907
+ class GuestCommentLite
908
+ @@schema_type = "guestCommentLite"
909
+ @@schema_ns = "http://ws.resmarksystems.com/"
910
+ @@schema_element = [["comments", ["SOAP::SOAPString", XSD::QName.new(nil, "comments")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["showConfirmation", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showConfirmation")]], ["showRoster", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showRoster")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["wreUserId", ["SOAP::SOAPInt", XSD::QName.new(nil, "wreUserId")]]]
911
+
912
+ attr_accessor :comments
913
+ attr_accessor :createdDate
914
+ attr_accessor :id
915
+ attr_accessor :showConfirmation
916
+ attr_accessor :showRoster
917
+ attr_accessor :version
918
+ attr_accessor :wreUserId
919
+
920
+ def initialize(comments = nil, createdDate = nil, id = nil, showConfirmation = nil, showRoster = nil, version = nil, wreUserId = nil)
921
+ @comments = comments
922
+ @createdDate = createdDate
923
+ @id = id
924
+ @showConfirmation = showConfirmation
925
+ @showRoster = showRoster
926
+ @version = version
927
+ @wreUserId = wreUserId
928
+ end
929
+ end
930
+
931
+ # {http://ws.resmarksystems.com/}dummyGuestLite
932
+ class DummyGuestLite
933
+ @@schema_type = "dummyGuestLite"
934
+ @@schema_ns = "http://ws.resmarksystems.com/"
935
+ @@schema_element = []
936
+
937
+ def initialize
938
+ end
939
+ end
940
+
941
+ # {http://ws.resmarksystems.com/}personGuestLite
942
+ class PersonGuestLite
943
+ @@schema_type = "personGuestLite"
944
+ @@schema_ns = "http://ws.resmarksystems.com/"
945
+ @@schema_element = []
946
+
947
+ def initialize
948
+ end
949
+ end
950
+
951
+ # {http://ws.resmarksystems.com/}pastTripOption
952
+ class PastTripOption
953
+ @@schema_type = "pastTripOption"
954
+ @@schema_ns = "http://ws.resmarksystems.com/"
955
+ @@schema_element = []
956
+
957
+ def initialize
958
+ end
959
+ end
960
+
961
+ # {http://ws.resmarksystems.com/}travelPartyType
962
+ class TravelPartyType
963
+ @@schema_type = "travelPartyType"
964
+ @@schema_ns = "http://ws.resmarksystems.com/"
965
+ @@schema_element = []
966
+
967
+ def initialize
968
+ end
969
+ end
970
+
971
+ # {http://ws.resmarksystems.com/}itemResourceAllocationLite
972
+ class ItemResourceAllocationLite
973
+ @@schema_type = "itemResourceAllocationLite"
974
+ @@schema_ns = "http://ws.resmarksystems.com/"
975
+ @@schema_element = [["cancelled", ["CancelledLite", XSD::QName.new(nil, "cancelled")]], ["discounts", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "discounts")]], ["fee2Units", ["Fee2UnitLite[]", XSD::QName.new(nil, "fee2Units")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["options", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "options")]], ["unit2ResourceNameAvailabilities", ["Unit2ResourceNameAvailability[]", XSD::QName.new(nil, "unit2ResourceNameAvailabilities")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
976
+
977
+ attr_accessor :cancelled
978
+ attr_accessor :discounts
979
+ attr_accessor :fee2Units
980
+ attr_accessor :id
981
+ attr_accessor :options
982
+ attr_accessor :unit2ResourceNameAvailabilities
983
+ attr_accessor :version
984
+
985
+ def initialize(cancelled = nil, discounts = [], fee2Units = [], id = nil, options = [], unit2ResourceNameAvailabilities = [], version = nil)
986
+ @cancelled = cancelled
987
+ @discounts = discounts
988
+ @fee2Units = fee2Units
989
+ @id = id
990
+ @options = options
991
+ @unit2ResourceNameAvailabilities = unit2ResourceNameAvailabilities
992
+ @version = version
993
+ end
994
+ end
995
+
996
+ # {http://ws.resmarksystems.com/}fee2UnitLite
997
+ class Fee2UnitLite
998
+ @@schema_type = "fee2UnitLite"
999
+ @@schema_ns = "http://ws.resmarksystems.com/"
1000
+ @@schema_element = [["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["fee", ["SOAP::SOAPInt", XSD::QName.new(nil, "fee")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
1001
+
1002
+ attr_accessor :amount
1003
+ attr_accessor :fee
1004
+ attr_accessor :id
1005
+ attr_accessor :version
1006
+
1007
+ def initialize(amount = nil, fee = nil, id = nil, version = nil)
1008
+ @amount = amount
1009
+ @fee = fee
1010
+ @id = id
1011
+ @version = version
1012
+ end
1013
+ end
1014
+
1015
+ # {http://ws.resmarksystems.com/}unit2ResourceNameAvailability
1016
+ class Unit2ResourceNameAvailability
1017
+ @@schema_type = "unit2ResourceNameAvailability"
1018
+ @@schema_ns = "http://ws.resmarksystems.com/"
1019
+ @@schema_element = []
1020
+
1021
+ def initialize
1022
+ end
1023
+ end
1024
+
1025
+ # {http://ws.resmarksystems.com/}resourceNameAvailability
1026
+ class ResourceNameAvailability
1027
+ @@schema_type = "resourceNameAvailability"
1028
+ @@schema_ns = "http://ws.resmarksystems.com/"
1029
+ @@schema_element = []
1030
+
1031
+ def initialize
1032
+ end
1033
+ end
1034
+
1035
+ # {http://ws.resmarksystems.com/}option2ActivityReservationLite
1036
+ class Option2ActivityReservationLite
1037
+ @@schema_type = "option2ActivityReservationLite"
1038
+ @@schema_ns = "http://ws.resmarksystems.com/"
1039
+ @@schema_element = [["adultMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "adultMultiplier")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["optionId", ["SOAP::SOAPInt", XSD::QName.new(nil, "optionId")]], ["taxes", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "taxes")]], ["unitMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "unitMultiplier")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["youthMultiplier", ["SOAP::SOAPInt", XSD::QName.new(nil, "youthMultiplier")]]]
1040
+
1041
+ attr_accessor :adultMultiplier
1042
+ attr_accessor :id
1043
+ attr_accessor :optionId
1044
+ attr_accessor :taxes
1045
+ attr_accessor :unitMultiplier
1046
+ attr_accessor :version
1047
+ attr_accessor :youthMultiplier
1048
+
1049
+ def initialize(adultMultiplier = nil, id = nil, optionId = nil, taxes = [], unitMultiplier = nil, version = nil, youthMultiplier = nil)
1050
+ @adultMultiplier = adultMultiplier
1051
+ @id = id
1052
+ @optionId = optionId
1053
+ @taxes = taxes
1054
+ @unitMultiplier = unitMultiplier
1055
+ @version = version
1056
+ @youthMultiplier = youthMultiplier
1057
+ end
1058
+ end
1059
+
1060
+ # {http://ws.resmarksystems.com/}ratePlan
1061
+ class RatePlan
1062
+ @@schema_type = "ratePlan"
1063
+ @@schema_ns = "http://ws.resmarksystems.com/"
1064
+ @@schema_element = []
1065
+
1066
+ def initialize
1067
+ end
1068
+ end
1069
+
1070
+ # {http://ws.resmarksystems.com/}seatsExpired
1071
+ class SeatsExpired
1072
+ @@schema_type = "seatsExpired"
1073
+ @@schema_ns = "http://ws.resmarksystems.com/"
1074
+ @@schema_element = []
1075
+
1076
+ def initialize
1077
+ end
1078
+ end
1079
+
1080
+ # {http://ws.resmarksystems.com/}seatsHeld
1081
+ class SeatsHeld
1082
+ @@schema_type = "seatsHeld"
1083
+ @@schema_ns = "http://ws.resmarksystems.com/"
1084
+ @@schema_element = []
1085
+
1086
+ def initialize
1087
+ end
1088
+ end
1089
+
1090
+ # {http://ws.resmarksystems.com/}packageReservationLite
1091
+ class PackageReservationLite
1092
+ @@schema_type = "packageReservationLite"
1093
+ @@schema_ns = "http://ws.resmarksystems.com/"
1094
+ @@schema_element = [["activityReservations", ["ActivityReservationLite[]", XSD::QName.new(nil, "activityReservations")]], ["createdById", ["SOAP::SOAPInt", XSD::QName.new(nil, "createdById")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["resPackage", ["ResPackageLite", XSD::QName.new(nil, "resPackage")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
1095
+
1096
+ attr_accessor :activityReservations
1097
+ attr_accessor :createdById
1098
+ attr_accessor :createdDate
1099
+ attr_accessor :id
1100
+ attr_accessor :resPackage
1101
+ attr_accessor :version
1102
+
1103
+ def initialize(activityReservations = [], createdById = nil, createdDate = nil, id = nil, resPackage = nil, version = nil)
1104
+ @activityReservations = activityReservations
1105
+ @createdById = createdById
1106
+ @createdDate = createdDate
1107
+ @id = id
1108
+ @resPackage = resPackage
1109
+ @version = version
1110
+ end
1111
+ end
1112
+
1113
+ # {http://ws.resmarksystems.com/}resPackageLite
1114
+ class ResPackageLite
1115
+ @@schema_type = "resPackageLite"
1116
+ @@schema_ns = "http://ws.resmarksystems.com/"
1117
+ @@schema_element = [["activityNameId", ["SOAP::SOAPInt", XSD::QName.new(nil, "activityNameId")]], ["beginTimeDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "beginTimeDescription")]], ["bookOnline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "bookOnline")]], ["bracket", ["ItemBracket", XSD::QName.new(nil, "bracket")]], ["confirmationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "confirmationComments")]], ["displayOnlineUnavailable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "displayOnlineUnavailable")]], ["dueDateOffset", ["SOAP::SOAPInt", XSD::QName.new(nil, "dueDateOffset")]], ["endTimeDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "endTimeDescription")]], ["generalLedgerCode", ["SOAP::SOAPString", XSD::QName.new(nil, "generalLedgerCode")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["overrideConfirmationInfo", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "overrideConfirmationInfo")]], ["overridePrice", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "overridePrice")]], ["package2activities", ["ResPackage2ActivityLite[]", XSD::QName.new(nil, "package2activities")]], ["preReservationComments", ["SOAP::SOAPString", XSD::QName.new(nil, "preReservationComments")]], ["rosterComments", ["SOAP::SOAPString", XSD::QName.new(nil, "rosterComments")]], ["showOnline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showOnline")]], ["unavailableWithin", ["SOAP::SOAPInt", XSD::QName.new(nil, "unavailableWithin")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]]]
1118
+
1119
+ attr_accessor :activityNameId
1120
+ attr_accessor :beginTimeDescription
1121
+ attr_accessor :bookOnline
1122
+ attr_accessor :bracket
1123
+ attr_accessor :confirmationComments
1124
+ attr_accessor :displayOnlineUnavailable
1125
+ attr_accessor :dueDateOffset
1126
+ attr_accessor :endTimeDescription
1127
+ attr_accessor :generalLedgerCode
1128
+ attr_accessor :id
1129
+ attr_accessor :overrideConfirmationInfo
1130
+ attr_accessor :overridePrice
1131
+ attr_accessor :package2activities
1132
+ attr_accessor :preReservationComments
1133
+ attr_accessor :rosterComments
1134
+ attr_accessor :showOnline
1135
+ attr_accessor :unavailableWithin
1136
+ attr_accessor :version
1137
+
1138
+ def initialize(activityNameId = nil, beginTimeDescription = nil, bookOnline = nil, bracket = nil, confirmationComments = nil, displayOnlineUnavailable = nil, dueDateOffset = nil, endTimeDescription = nil, generalLedgerCode = nil, id = nil, overrideConfirmationInfo = nil, overridePrice = nil, package2activities = [], preReservationComments = nil, rosterComments = nil, showOnline = nil, unavailableWithin = nil, version = nil)
1139
+ @activityNameId = activityNameId
1140
+ @beginTimeDescription = beginTimeDescription
1141
+ @bookOnline = bookOnline
1142
+ @bracket = bracket
1143
+ @confirmationComments = confirmationComments
1144
+ @displayOnlineUnavailable = displayOnlineUnavailable
1145
+ @dueDateOffset = dueDateOffset
1146
+ @endTimeDescription = endTimeDescription
1147
+ @generalLedgerCode = generalLedgerCode
1148
+ @id = id
1149
+ @overrideConfirmationInfo = overrideConfirmationInfo
1150
+ @overridePrice = overridePrice
1151
+ @package2activities = package2activities
1152
+ @preReservationComments = preReservationComments
1153
+ @rosterComments = rosterComments
1154
+ @showOnline = showOnline
1155
+ @unavailableWithin = unavailableWithin
1156
+ @version = version
1157
+ end
1158
+ end
1159
+
1160
+ # {http://ws.resmarksystems.com/}resPackage2ActivityLite
1161
+ class ResPackage2ActivityLite
1162
+ @@schema_type = "resPackage2ActivityLite"
1163
+ @@schema_ns = "http://ws.resmarksystems.com/"
1164
+ @@schema_element = [["activity", ["ActivityLite", XSD::QName.new(nil, "activity")]], ["adultDeposit", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "adultDeposit")]], ["adultRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "adultRate")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["unitDeposit", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "unitDeposit")]], ["unitRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "unitRate")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["youthDeposit", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "youthDeposit")]], ["youthRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "youthRate")]]]
1165
+
1166
+ attr_accessor :activity
1167
+ attr_accessor :adultDeposit
1168
+ attr_accessor :adultRate
1169
+ attr_accessor :id
1170
+ attr_accessor :unitDeposit
1171
+ attr_accessor :unitRate
1172
+ attr_accessor :version
1173
+ attr_accessor :youthDeposit
1174
+ attr_accessor :youthRate
1175
+
1176
+ def initialize(activity = nil, adultDeposit = nil, adultRate = nil, id = nil, unitDeposit = nil, unitRate = nil, version = nil, youthDeposit = nil, youthRate = nil)
1177
+ @activity = activity
1178
+ @adultDeposit = adultDeposit
1179
+ @adultRate = adultRate
1180
+ @id = id
1181
+ @unitDeposit = unitDeposit
1182
+ @unitRate = unitRate
1183
+ @version = version
1184
+ @youthDeposit = youthDeposit
1185
+ @youthRate = youthRate
1186
+ end
1187
+ end
1188
+
1189
+ # {http://ws.resmarksystems.com/}paymentTransfer
1190
+ class PaymentTransfer
1191
+ @@schema_type = "paymentTransfer"
1192
+ @@schema_ns = "http://ws.resmarksystems.com/"
1193
+ @@schema_element = []
1194
+
1195
+ def initialize
1196
+ end
1197
+ end
1198
+
1199
+ # {http://ws.resmarksystems.com/}paymentLite
1200
+ class PaymentLite
1201
+ @@schema_type = "paymentLite"
1202
+ @@schema_ns = "http://ws.resmarksystems.com/"
1203
+ @@schema_element = [["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["comments", ["SOAP::SOAPString", XSD::QName.new(nil, "comments")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["divisionId", ["SOAP::SOAPInt", XSD::QName.new(nil, "divisionId")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["paymentLocationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "paymentLocationId")]], ["payorName", ["SOAP::SOAPString", XSD::QName.new(nil, "payorName")]], ["processed", ["SOAP::SOAPString", XSD::QName.new(nil, "processed")]], ["refunds", ["RefundLite[]", XSD::QName.new(nil, "refunds")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["wreUserId", ["SOAP::SOAPInt", XSD::QName.new(nil, "wreUserId")]]]
1204
+
1205
+ attr_accessor :amount
1206
+ attr_accessor :comments
1207
+ attr_accessor :createdDate
1208
+ attr_accessor :divisionId
1209
+ attr_accessor :id
1210
+ attr_accessor :paymentLocationId
1211
+ attr_accessor :payorName
1212
+ attr_accessor :processed
1213
+ attr_accessor :refunds
1214
+ attr_accessor :version
1215
+ attr_accessor :wreUserId
1216
+
1217
+ def initialize(amount = nil, comments = nil, createdDate = nil, divisionId = nil, id = nil, paymentLocationId = nil, payorName = nil, processed = nil, refunds = [], version = nil, wreUserId = nil)
1218
+ @amount = amount
1219
+ @comments = comments
1220
+ @createdDate = createdDate
1221
+ @divisionId = divisionId
1222
+ @id = id
1223
+ @paymentLocationId = paymentLocationId
1224
+ @payorName = payorName
1225
+ @processed = processed
1226
+ @refunds = refunds
1227
+ @version = version
1228
+ @wreUserId = wreUserId
1229
+ end
1230
+ end
1231
+
1232
+ # {http://ws.resmarksystems.com/}refundLite
1233
+ class RefundLite
1234
+ @@schema_type = "refundLite"
1235
+ @@schema_ns = "http://ws.resmarksystems.com/"
1236
+ @@schema_element = [["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["comments", ["SOAP::SOAPString", XSD::QName.new(nil, "comments")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["paymentLocationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "paymentLocationId")]], ["processed", ["SOAP::SOAPString", XSD::QName.new(nil, "processed")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["transactionNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "transactionNumber")]], ["version", ["SOAP::SOAPLong", XSD::QName.new(nil, "version")]], ["wreUserId", ["SOAP::SOAPInt", XSD::QName.new(nil, "wreUserId")]]]
1237
+
1238
+ attr_accessor :amount
1239
+ attr_accessor :comments
1240
+ attr_accessor :createdDate
1241
+ attr_accessor :id
1242
+ attr_accessor :paymentLocationId
1243
+ attr_accessor :processed
1244
+ attr_accessor :status
1245
+ attr_accessor :transactionNumber
1246
+ attr_accessor :version
1247
+ attr_accessor :wreUserId
1248
+
1249
+ def initialize(amount = nil, comments = nil, createdDate = nil, id = nil, paymentLocationId = nil, processed = nil, status = nil, transactionNumber = nil, version = nil, wreUserId = nil)
1250
+ @amount = amount
1251
+ @comments = comments
1252
+ @createdDate = createdDate
1253
+ @id = id
1254
+ @paymentLocationId = paymentLocationId
1255
+ @processed = processed
1256
+ @status = status
1257
+ @transactionNumber = transactionNumber
1258
+ @version = version
1259
+ @wreUserId = wreUserId
1260
+ end
1261
+ end
1262
+
1263
+ # {http://ws.resmarksystems.com/}cashPaymentLite
1264
+ class CashPaymentLite
1265
+ @@schema_type = "cashPaymentLite"
1266
+ @@schema_ns = "http://ws.resmarksystems.com/"
1267
+ @@schema_element = []
1268
+
1269
+ def initialize
1270
+ end
1271
+ end
1272
+
1273
+ # {http://ws.resmarksystems.com/}checkPaymentLite
1274
+ class CheckPaymentLite
1275
+ @@schema_type = "checkPaymentLite"
1276
+ @@schema_ns = "http://ws.resmarksystems.com/"
1277
+ @@schema_element = []
1278
+
1279
+ def initialize
1280
+ end
1281
+ end
1282
+
1283
+ # {http://ws.resmarksystems.com/}creditCardPaymentLite
1284
+ class CreditCardPaymentLite
1285
+ @@schema_type = "creditCardPaymentLite"
1286
+ @@schema_ns = "http://ws.resmarksystems.com/"
1287
+ @@schema_element = []
1288
+
1289
+ def initialize
1290
+ end
1291
+ end
1292
+
1293
+ # {http://ws.resmarksystems.com/}paymentAdjustmentLite
1294
+ class PaymentAdjustmentLite
1295
+ @@schema_type = "paymentAdjustmentLite"
1296
+ @@schema_ns = "http://ws.resmarksystems.com/"
1297
+ @@schema_element = []
1298
+
1299
+ def initialize
1300
+ end
1301
+ end
1302
+
1303
+ # {http://ws.resmarksystems.com/}otherPaymentLite
1304
+ class OtherPaymentLite
1305
+ @@schema_type = "otherPaymentLite"
1306
+ @@schema_ns = "http://ws.resmarksystems.com/"
1307
+ @@schema_element = []
1308
+
1309
+ def initialize
1310
+ end
1311
+ end
1312
+
1313
+ # {http://ws.resmarksystems.com/}exportLineItems
1314
+ class ExportLineItems
1315
+ @@schema_type = "exportLineItems"
1316
+ @@schema_ns = "http://ws.resmarksystems.com/"
1317
+ @@schema_element = [["startDate", ["DateLite", XSD::QName.new(nil, "startDate")]], ["endDate", ["DateLite", XSD::QName.new(nil, "endDate")]]]
1318
+
1319
+ attr_accessor :startDate
1320
+ attr_accessor :endDate
1321
+
1322
+ def initialize(startDate = nil, endDate = nil)
1323
+ @startDate = startDate
1324
+ @endDate = endDate
1325
+ end
1326
+ end
1327
+
1328
+ # {http://ws.resmarksystems.com/}exportLineItemsResponse
1329
+ class ExportLineItemsResponse < ::Array
1330
+ @@schema_type = "reservation"
1331
+ @@schema_ns = "http://ws.resmarksystems.com/"
1332
+ @@schema_element = [["return", ["Reservation[]", XSD::QName.new(nil, "return")]]]
1333
+ end
1334
+
1335
+ # {http://ws.resmarksystems.com/}reservation
1336
+ class Reservation
1337
+ @@schema_type = "reservation"
1338
+ @@schema_ns = "http://ws.resmarksystems.com/"
1339
+ @@schema_element = [["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["customerName", ["SOAP::SOAPString", XSD::QName.new(nil, "customerName")]], ["entityId", ["SOAP::SOAPInt", XSD::QName.new(nil, "entityId")]], ["entityName", ["SOAP::SOAPString", XSD::QName.new(nil, "entityName")]], ["itemReservations", ["ItemReservation[]", XSD::QName.new(nil, "itemReservations")]], ["modificationStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "modificationStatus")]], ["modifiedDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "modifiedDate")]], ["reservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "reservationId")]], ["salesAgentId", ["SOAP::SOAPInt", XSD::QName.new(nil, "salesAgentId")]], ["salesAgentName", ["SOAP::SOAPString", XSD::QName.new(nil, "salesAgentName")]], ["transactions", ["Transaction[]", XSD::QName.new(nil, "transactions")]]]
1340
+
1341
+ attr_accessor :createdDate
1342
+ attr_accessor :customerName
1343
+ attr_accessor :entityId
1344
+ attr_accessor :entityName
1345
+ attr_accessor :itemReservations
1346
+ attr_accessor :modificationStatus
1347
+ attr_accessor :modifiedDate
1348
+ attr_accessor :reservationId
1349
+ attr_accessor :salesAgentId
1350
+ attr_accessor :salesAgentName
1351
+ attr_accessor :transactions
1352
+
1353
+ def initialize(createdDate = nil, customerName = nil, entityId = nil, entityName = nil, itemReservations = [], modificationStatus = nil, modifiedDate = nil, reservationId = nil, salesAgentId = nil, salesAgentName = nil, transactions = [])
1354
+ @createdDate = createdDate
1355
+ @customerName = customerName
1356
+ @entityId = entityId
1357
+ @entityName = entityName
1358
+ @itemReservations = itemReservations
1359
+ @modificationStatus = modificationStatus
1360
+ @modifiedDate = modifiedDate
1361
+ @reservationId = reservationId
1362
+ @salesAgentId = salesAgentId
1363
+ @salesAgentName = salesAgentName
1364
+ @transactions = transactions
1365
+ end
1366
+ end
1367
+
1368
+ # {http://ws.resmarksystems.com/}itemReservation
1369
+ class ItemReservation
1370
+ @@schema_type = "itemReservation"
1371
+ @@schema_ns = "http://ws.resmarksystems.com/"
1372
+ @@schema_element = [["cancellationDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "cancellationDate")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["customerComments", ["SOAP::SOAPString[]", XSD::QName.new(nil, "customerComments")]], ["customerNames", ["SOAP::SOAPString[]", XSD::QName.new(nil, "customerNames")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["itemName", ["SOAP::SOAPString", XSD::QName.new(nil, "itemName")]], ["itemNameId", ["SOAP::SOAPInt", XSD::QName.new(nil, "itemNameId")]], ["lineItemDetails", ["LineItemDetail[]", XSD::QName.new(nil, "lineItemDetails")]], ["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startDate")]]]
1373
+
1374
+ attr_accessor :cancellationDate
1375
+ attr_accessor :createdDate
1376
+ attr_accessor :customerComments
1377
+ attr_accessor :customerNames
1378
+ attr_accessor :id
1379
+ attr_accessor :itemName
1380
+ attr_accessor :itemNameId
1381
+ attr_accessor :lineItemDetails
1382
+ attr_accessor :startDate
1383
+
1384
+ def initialize(cancellationDate = nil, createdDate = nil, customerComments = [], customerNames = [], id = nil, itemName = nil, itemNameId = nil, lineItemDetails = [], startDate = nil)
1385
+ @cancellationDate = cancellationDate
1386
+ @createdDate = createdDate
1387
+ @customerComments = customerComments
1388
+ @customerNames = customerNames
1389
+ @id = id
1390
+ @itemName = itemName
1391
+ @itemNameId = itemNameId
1392
+ @lineItemDetails = lineItemDetails
1393
+ @startDate = startDate
1394
+ end
1395
+ end
1396
+
1397
+ # {http://ws.resmarksystems.com/}lineItemDetail
1398
+ class LineItemDetail
1399
+ @@schema_type = "lineItemDetail"
1400
+ @@schema_ns = "http://ws.resmarksystems.com/"
1401
+ @@schema_element = [["activityReservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "activityReservationId")]], ["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["createdByName", ["SOAP::SOAPString", XSD::QName.new(nil, "createdByName")]], ["createdDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "createdDate")]], ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["quantity", ["SOAP::SOAPInt", XSD::QName.new(nil, "quantity")]], ["reservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "reservationId")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]]
1402
+
1403
+ attr_accessor :activityReservationId
1404
+ attr_accessor :amount
1405
+ attr_accessor :createdByName
1406
+ attr_accessor :createdDate
1407
+ attr_accessor :description
1408
+ attr_accessor :id
1409
+ attr_accessor :name
1410
+ attr_accessor :quantity
1411
+ attr_accessor :reservationId
1412
+ attr_accessor :type
1413
+
1414
+ def initialize(activityReservationId = nil, amount = nil, createdByName = nil, createdDate = nil, description = nil, id = nil, name = nil, quantity = nil, reservationId = nil, type = nil)
1415
+ @activityReservationId = activityReservationId
1416
+ @amount = amount
1417
+ @createdByName = createdByName
1418
+ @createdDate = createdDate
1419
+ @description = description
1420
+ @id = id
1421
+ @name = name
1422
+ @quantity = quantity
1423
+ @reservationId = reservationId
1424
+ @type = type
1425
+ end
1426
+ end
1427
+
1428
+ # {http://ws.resmarksystems.com/}transaction
1429
+ class Transaction
1430
+ @@schema_type = "transaction"
1431
+ @@schema_ns = "http://ws.resmarksystems.com/"
1432
+ @@schema_element = [["amount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "amount")]], ["creditCardLastFourDigits", ["SOAP::SOAPString", XSD::QName.new(nil, "creditCardLastFourDigits")]], ["creditCardType", ["SOAP::SOAPString", XSD::QName.new(nil, "creditCardType")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["payorName", ["SOAP::SOAPString", XSD::QName.new(nil, "payorName")]], ["reservationId", ["SOAP::SOAPInt", XSD::QName.new(nil, "reservationId")]], ["transactionDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "transactionDate")]], ["transactionType", ["SOAP::SOAPString", XSD::QName.new(nil, "transactionType")]]]
1433
+
1434
+ attr_accessor :amount
1435
+ attr_accessor :creditCardLastFourDigits
1436
+ attr_accessor :creditCardType
1437
+ attr_accessor :id
1438
+ attr_accessor :payorName
1439
+ attr_accessor :reservationId
1440
+ attr_accessor :transactionDate
1441
+ attr_accessor :transactionType
1442
+
1443
+ def initialize(amount = nil, creditCardLastFourDigits = nil, creditCardType = nil, id = nil, payorName = nil, reservationId = nil, transactionDate = nil, transactionType = nil)
1444
+ @amount = amount
1445
+ @creditCardLastFourDigits = creditCardLastFourDigits
1446
+ @creditCardType = creditCardType
1447
+ @id = id
1448
+ @payorName = payorName
1449
+ @reservationId = reservationId
1450
+ @transactionDate = transactionDate
1451
+ @transactionType = transactionType
1452
+ end
1453
+ end
1454
+
1455
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrl
1456
+ class GetActivityNamesForUrl
1457
+ @@schema_type = "getActivityNamesForUrl"
1458
+ @@schema_ns = "http://ws.resmarksystems.com/"
1459
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]]]
1460
+
1461
+ attr_accessor :arg0
1462
+
1463
+ def initialize(arg0 = nil)
1464
+ @arg0 = arg0
1465
+ end
1466
+ end
1467
+
1468
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrlResponse
1469
+ class GetActivityNamesForUrlResponse < ::Array
1470
+ @@schema_type = "readOnlyActivityName"
1471
+ @@schema_ns = "http://ws.resmarksystems.com/"
1472
+ @@schema_element = [["return", ["ReadOnlyActivityName[]", XSD::QName.new(nil, "return")]]]
1473
+ end
1474
+
1475
+ # {http://ws.resmarksystems.com/}readOnlyActivityName
1476
+ class ReadOnlyActivityName
1477
+ @@schema_type = "readOnlyActivityName"
1478
+ @@schema_ns = "http://ws.resmarksystems.com/"
1479
+ @@schema_element = []
1480
+
1481
+ def initialize
1482
+ end
1483
+ end
1484
+
1485
+ # {http://ws.resmarksystems.com/}readOnlyBean
1486
+ class ReadOnlyBean
1487
+ @@schema_type = "readOnlyBean"
1488
+ @@schema_ns = "http://ws.resmarksystems.com/"
1489
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]]
1490
+
1491
+ attr_accessor :id
1492
+ attr_accessor :name
1493
+
1494
+ def initialize(id = nil, name = nil)
1495
+ @id = id
1496
+ @name = name
1497
+ end
1498
+ end
1499
+
1500
+ # {http://ws.resmarksystems.com/}getReservationsForAgency
1501
+ class GetReservationsForAgency
1502
+ @@schema_type = "getReservationsForAgency"
1503
+ @@schema_ns = "http://ws.resmarksystems.com/"
1504
+ @@schema_element = [["agencyId", ["SOAP::SOAPInt", XSD::QName.new(nil, "agencyId")]], ["startDate", ["DateLite", XSD::QName.new(nil, "startDate")]], ["endDate", ["DateLite", XSD::QName.new(nil, "endDate")]]]
1505
+
1506
+ attr_accessor :agencyId
1507
+ attr_accessor :startDate
1508
+ attr_accessor :endDate
1509
+
1510
+ def initialize(agencyId = nil, startDate = nil, endDate = nil)
1511
+ @agencyId = agencyId
1512
+ @startDate = startDate
1513
+ @endDate = endDate
1514
+ end
1515
+ end
1516
+
1517
+ # {http://ws.resmarksystems.com/}getReservationsForAgencyResponse
1518
+ class GetReservationsForAgencyResponse < ::Array
1519
+ @@schema_type = "reservationLite"
1520
+ @@schema_ns = "http://ws.resmarksystems.com/"
1521
+ @@schema_element = [["return", ["ReservationLite[]", XSD::QName.new(nil, "return")]]]
1522
+ end
1523
+
1524
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrlAndLocationAndType
1525
+ class GetActivityNamesForUrlAndLocationAndType
1526
+ @@schema_type = "getActivityNamesForUrlAndLocationAndType"
1527
+ @@schema_ns = "http://ws.resmarksystems.com/"
1528
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]], ["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]], ["arg2", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg2")]]]
1529
+
1530
+ attr_accessor :arg0
1531
+ attr_accessor :arg1
1532
+ attr_accessor :arg2
1533
+
1534
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
1535
+ @arg0 = arg0
1536
+ @arg1 = arg1
1537
+ @arg2 = arg2
1538
+ end
1539
+ end
1540
+
1541
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrlAndLocationAndTypeResponse
1542
+ class GetActivityNamesForUrlAndLocationAndTypeResponse < ::Array
1543
+ @@schema_type = "readOnlyActivityName"
1544
+ @@schema_ns = "http://ws.resmarksystems.com/"
1545
+ @@schema_element = [["return", ["ReadOnlyActivityName[]", XSD::QName.new(nil, "return")]]]
1546
+ end
1547
+
1548
+ # {http://ws.resmarksystems.com/}getItemTypesForUrlAndLocation
1549
+ class GetItemTypesForUrlAndLocation
1550
+ @@schema_type = "getItemTypesForUrlAndLocation"
1551
+ @@schema_ns = "http://ws.resmarksystems.com/"
1552
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]], ["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]]
1553
+
1554
+ attr_accessor :arg0
1555
+ attr_accessor :arg1
1556
+
1557
+ def initialize(arg0 = nil, arg1 = nil)
1558
+ @arg0 = arg0
1559
+ @arg1 = arg1
1560
+ end
1561
+ end
1562
+
1563
+ # {http://ws.resmarksystems.com/}getItemTypesForUrlAndLocationResponse
1564
+ class GetItemTypesForUrlAndLocationResponse < ::Array
1565
+ @@schema_type = "readOnlyItemType"
1566
+ @@schema_ns = "http://ws.resmarksystems.com/"
1567
+ @@schema_element = [["return", ["ReadOnlyItemType[]", XSD::QName.new(nil, "return")]]]
1568
+ end
1569
+
1570
+ # {http://ws.resmarksystems.com/}readOnlyItemType
1571
+ class ReadOnlyItemType
1572
+ @@schema_type = "readOnlyItemType"
1573
+ @@schema_ns = "http://ws.resmarksystems.com/"
1574
+ @@schema_element = []
1575
+
1576
+ def initialize
1577
+ end
1578
+ end
1579
+
1580
+ # {http://ws.resmarksystems.com/}getLocationsForUrl
1581
+ class GetLocationsForUrl
1582
+ @@schema_type = "getLocationsForUrl"
1583
+ @@schema_ns = "http://ws.resmarksystems.com/"
1584
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]]]
1585
+
1586
+ attr_accessor :arg0
1587
+
1588
+ def initialize(arg0 = nil)
1589
+ @arg0 = arg0
1590
+ end
1591
+ end
1592
+
1593
+ # {http://ws.resmarksystems.com/}getLocationsForUrlResponse
1594
+ class GetLocationsForUrlResponse < ::Array
1595
+ @@schema_type = "readOnlyLocation"
1596
+ @@schema_ns = "http://ws.resmarksystems.com/"
1597
+ @@schema_element = [["return", ["ReadOnlyLocation[]", XSD::QName.new(nil, "return")]]]
1598
+ end
1599
+
1600
+ # {http://ws.resmarksystems.com/}readOnlyLocation
1601
+ class ReadOnlyLocation
1602
+ @@schema_type = "readOnlyLocation"
1603
+ @@schema_ns = "http://ws.resmarksystems.com/"
1604
+ @@schema_element = []
1605
+
1606
+ def initialize
1607
+ end
1608
+ end
1609
+
1610
+ # {http://ws.resmarksystems.com/}getPersonById
1611
+ class GetPersonById
1612
+ @@schema_type = "getPersonById"
1613
+ @@schema_ns = "http://ws.resmarksystems.com/"
1614
+ @@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]]]
1615
+
1616
+ attr_accessor :id
1617
+
1618
+ def initialize(id = nil)
1619
+ @id = id
1620
+ end
1621
+ end
1622
+
1623
+ # {http://ws.resmarksystems.com/}getPersonByIdResponse
1624
+ class GetPersonByIdResponse
1625
+ @@schema_type = "getPersonByIdResponse"
1626
+ @@schema_ns = "http://ws.resmarksystems.com/"
1627
+ @@schema_element = [["v_return", ["PersonLite", XSD::QName.new(nil, "return")]]]
1628
+
1629
+ def return
1630
+ @v_return
1631
+ end
1632
+
1633
+ def return=(value)
1634
+ @v_return = value
1635
+ end
1636
+
1637
+ def initialize(v_return = nil)
1638
+ @v_return = v_return
1639
+ end
1640
+ end
1641
+
1642
+ # {http://ws.resmarksystems.com/}personLite
1643
+ class PersonLite
1644
+ @@schema_type = "personLite"
1645
+ @@schema_ns = "http://ws.resmarksystems.com/"
1646
+ @@schema_element = []
1647
+
1648
+ def initialize
1649
+ end
1650
+ end
1651
+
1652
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrlAndLocation
1653
+ class GetActivityNamesForUrlAndLocation
1654
+ @@schema_type = "getActivityNamesForUrlAndLocation"
1655
+ @@schema_ns = "http://ws.resmarksystems.com/"
1656
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]], ["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]]
1657
+
1658
+ attr_accessor :arg0
1659
+ attr_accessor :arg1
1660
+
1661
+ def initialize(arg0 = nil, arg1 = nil)
1662
+ @arg0 = arg0
1663
+ @arg1 = arg1
1664
+ end
1665
+ end
1666
+
1667
+ # {http://ws.resmarksystems.com/}getActivityNamesForUrlAndLocationResponse
1668
+ class GetActivityNamesForUrlAndLocationResponse < ::Array
1669
+ @@schema_type = "readOnlyActivityName"
1670
+ @@schema_ns = "http://ws.resmarksystems.com/"
1671
+ @@schema_element = [["return", ["ReadOnlyActivityName[]", XSD::QName.new(nil, "return")]]]
1672
+ end
1673
+
1674
+ # {http://ws.resmarksystems.com/}availabilitySearch
1675
+ class AvailabilitySearch
1676
+ @@schema_type = "availabilitySearch"
1677
+ @@schema_ns = "http://ws.resmarksystems.com/"
1678
+ @@schema_element = [["arg0", ["ActivitySearchHelper", XSD::QName.new(nil, "arg0")]]]
1679
+
1680
+ attr_accessor :arg0
1681
+
1682
+ def initialize(arg0 = nil)
1683
+ @arg0 = arg0
1684
+ end
1685
+ end
1686
+
1687
+ # {http://ws.resmarksystems.com/}activitySearchHelper
1688
+ class ActivitySearchHelper
1689
+ @@schema_type = "activitySearchHelper"
1690
+ @@schema_ns = "http://ws.resmarksystems.com/"
1691
+ @@schema_element = [["activityLocationIds", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "activityLocationIds")]], ["activityNameIds", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "activityNameIds")]], ["activityTypeIds", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "activityTypeIds")]], ["beginDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "beginDate")]], ["divisionIds", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "divisionIds")]], ["endDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endDate")]], ["numAdults", ["SOAP::SOAPInt", XSD::QName.new(nil, "numAdults")]], ["numUnits", ["SOAP::SOAPInt", XSD::QName.new(nil, "numUnits")]], ["numYouths", ["SOAP::SOAPInt", XSD::QName.new(nil, "numYouths")]], ["onlineSearch", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "onlineSearch")]], ["showNestedResults", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showNestedResults")]], ["showPackageOnlyItems", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showPackageOnlyItems")]], ["showPackages", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "showPackages")]], ["webId", ["SOAP::SOAPInt", XSD::QName.new(nil, "webId")]]]
1692
+
1693
+ attr_accessor :activityLocationIds
1694
+ attr_accessor :activityNameIds
1695
+ attr_accessor :activityTypeIds
1696
+ attr_accessor :beginDate
1697
+ attr_accessor :divisionIds
1698
+ attr_accessor :endDate
1699
+ attr_accessor :numAdults
1700
+ attr_accessor :numUnits
1701
+ attr_accessor :numYouths
1702
+ attr_accessor :onlineSearch
1703
+ attr_accessor :showNestedResults
1704
+ attr_accessor :showPackageOnlyItems
1705
+ attr_accessor :showPackages
1706
+ attr_accessor :webId
1707
+
1708
+ def initialize(activityLocationIds = [], activityNameIds = [], activityTypeIds = [], beginDate = nil, divisionIds = [], endDate = nil, numAdults = nil, numUnits = nil, numYouths = nil, onlineSearch = nil, showNestedResults = nil, showPackageOnlyItems = nil, showPackages = nil, webId = nil)
1709
+ @activityLocationIds = activityLocationIds
1710
+ @activityNameIds = activityNameIds
1711
+ @activityTypeIds = activityTypeIds
1712
+ @beginDate = beginDate
1713
+ @divisionIds = divisionIds
1714
+ @endDate = endDate
1715
+ @numAdults = numAdults
1716
+ @numUnits = numUnits
1717
+ @numYouths = numYouths
1718
+ @onlineSearch = onlineSearch
1719
+ @showNestedResults = showNestedResults
1720
+ @showPackageOnlyItems = showPackageOnlyItems
1721
+ @showPackages = showPackages
1722
+ @webId = webId
1723
+ end
1724
+ end
1725
+
1726
+ # {http://ws.resmarksystems.com/}availabilitySearchResponse
1727
+ class AvailabilitySearchResponse < ::Array
1728
+ @@schema_type = "eventSearchResult"
1729
+ @@schema_ns = "http://ws.resmarksystems.com/"
1730
+ @@schema_element = [["return", ["EventSearchResult[]", XSD::QName.new(nil, "return")]]]
1731
+ end
1732
+
1733
+ # {http://ws.resmarksystems.com/}eventSearchResult
1734
+ class EventSearchResult
1735
+ @@schema_type = "eventSearchResult"
1736
+ @@schema_ns = "http://ws.resmarksystems.com/"
1737
+ @@schema_element = [["activityName", ["SOAP::SOAPString", XSD::QName.new(nil, "activityName")]], ["activityNameId", ["SOAP::SOAPInt", XSD::QName.new(nil, "activityNameId")]], ["adultRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "adultRate")]], ["availabilityModelCode", ["SOAP::SOAPString", XSD::QName.new(nil, "availabilityModelCode")]], ["available", ["SOAP::SOAPInt", XSD::QName.new(nil, "available")]], ["beginDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "beginDate")]], ["booked", ["SOAP::SOAPInt", XSD::QName.new(nil, "booked")]], ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]], ["endDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "endDate")]], ["held", ["SOAP::SOAPInt", XSD::QName.new(nil, "held")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["itemBracketId", ["SOAP::SOAPInt", XSD::QName.new(nil, "itemBracketId")]], ["itemClassCode", ["SOAP::SOAPString", XSD::QName.new(nil, "itemClassCode")]], ["launch", ["SOAP::SOAPInt", XSD::QName.new(nil, "launch")]], ["locked", ["SOAP::SOAPInt", XSD::QName.new(nil, "locked")]], ["meetingTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "meetingTime")]], ["pckg", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "pckg")]], ["pricingModelCode", ["SOAP::SOAPString", XSD::QName.new(nil, "pricingModelCode")]], ["returnTime", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "returnTime")]], ["subResults", ["EventSearchResult[]", XSD::QName.new(nil, "subResults")]], ["totalSeatsOrUnits", ["SOAP::SOAPInt", XSD::QName.new(nil, "totalSeatsOrUnits")]], ["unitRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "unitRate")]], ["youthRate", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "youthRate")]]]
1738
+
1739
+ attr_accessor :activityName
1740
+ attr_accessor :activityNameId
1741
+ attr_accessor :adultRate
1742
+ attr_accessor :availabilityModelCode
1743
+ attr_accessor :available
1744
+ attr_accessor :beginDate
1745
+ attr_accessor :booked
1746
+ attr_accessor :description
1747
+ attr_accessor :endDate
1748
+ attr_accessor :held
1749
+ attr_accessor :id
1750
+ attr_accessor :itemBracketId
1751
+ attr_accessor :itemClassCode
1752
+ attr_accessor :launch
1753
+ attr_accessor :locked
1754
+ attr_accessor :meetingTime
1755
+ attr_accessor :pckg
1756
+ attr_accessor :pricingModelCode
1757
+ attr_accessor :returnTime
1758
+ attr_accessor :subResults
1759
+ attr_accessor :totalSeatsOrUnits
1760
+ attr_accessor :unitRate
1761
+ attr_accessor :youthRate
1762
+
1763
+ def initialize(activityName = nil, activityNameId = nil, adultRate = nil, availabilityModelCode = nil, available = nil, beginDate = nil, booked = nil, description = nil, endDate = nil, held = nil, id = nil, itemBracketId = nil, itemClassCode = nil, launch = nil, locked = nil, meetingTime = nil, pckg = nil, pricingModelCode = nil, returnTime = nil, subResults = [], totalSeatsOrUnits = nil, unitRate = nil, youthRate = nil)
1764
+ @activityName = activityName
1765
+ @activityNameId = activityNameId
1766
+ @adultRate = adultRate
1767
+ @availabilityModelCode = availabilityModelCode
1768
+ @available = available
1769
+ @beginDate = beginDate
1770
+ @booked = booked
1771
+ @description = description
1772
+ @endDate = endDate
1773
+ @held = held
1774
+ @id = id
1775
+ @itemBracketId = itemBracketId
1776
+ @itemClassCode = itemClassCode
1777
+ @launch = launch
1778
+ @locked = locked
1779
+ @meetingTime = meetingTime
1780
+ @pckg = pckg
1781
+ @pricingModelCode = pricingModelCode
1782
+ @returnTime = returnTime
1783
+ @subResults = subResults
1784
+ @totalSeatsOrUnits = totalSeatsOrUnits
1785
+ @unitRate = unitRate
1786
+ @youthRate = youthRate
1787
+ end
1788
+ end
1789
+
1790
+ # {http://ws.resmarksystems.com/}eventSearchResultClient
1791
+ class EventSearchResultClient
1792
+ @@schema_type = "eventSearchResultClient"
1793
+ @@schema_ns = "http://ws.resmarksystems.com/"
1794
+ @@schema_element = []
1795
+
1796
+ def initialize
1797
+ end
1798
+ end
1799
+
1800
+ # {http://ws.resmarksystems.com/}eventSearchResultWeb
1801
+ class EventSearchResultWeb
1802
+ @@schema_type = "eventSearchResultWeb"
1803
+ @@schema_ns = "http://ws.resmarksystems.com/"
1804
+ @@schema_element = []
1805
+
1806
+ def initialize
1807
+ end
1808
+ end
1809
+
1810
+ # {http://ws.resmarksystems.com/}getItemTypesForUrl
1811
+ class GetItemTypesForUrl
1812
+ @@schema_type = "getItemTypesForUrl"
1813
+ @@schema_ns = "http://ws.resmarksystems.com/"
1814
+ @@schema_element = [["arg0", ["SOAP::SOAPString", XSD::QName.new(nil, "arg0")]]]
1815
+
1816
+ attr_accessor :arg0
1817
+
1818
+ def initialize(arg0 = nil)
1819
+ @arg0 = arg0
1820
+ end
1821
+ end
1822
+
1823
+ # {http://ws.resmarksystems.com/}getItemTypesForUrlResponse
1824
+ class GetItemTypesForUrlResponse < ::Array
1825
+ @@schema_type = "readOnlyItemType"
1826
+ @@schema_ns = "http://ws.resmarksystems.com/"
1827
+ @@schema_element = [["return", ["ReadOnlyItemType[]", XSD::QName.new(nil, "return")]]]
1828
+ end
1829
+
1830
+ # {http://ws.resmarksystems.com/}agencyBillingModel
1831
+ module AgencyBillingModel
1832
+ COMMISSION = "COMMISSION"
1833
+ NET_RATE = "NET_RATE"
1834
+ end
1835
+
1836
+ # {http://ws.resmarksystems.com/}accountingBasis
1837
+ module AccountingBasis
1838
+ ACCRUAL = "ACCRUAL"
1839
+ CASH = "CASH"
1840
+ end
1841
+
1842
+ # {http://ws.resmarksystems.com/}logoPlacement
1843
+ module LogoPlacement
1844
+ LEFT = "LEFT"
1845
+ RIGHT = "RIGHT"
1846
+ TOP = "TOP"
1847
+ end
1848
+
1849
+ # {http://ws.resmarksystems.com/}availabilityModel
1850
+ module AvailabilityModel
1851
+ PER_GUEST = "PER_GUEST"
1852
+ PER_UNIT = "PER_UNIT"
1853
+ end
1854
+
1855
+ # {http://ws.resmarksystems.com/}userInfoField
1856
+ module UserInfoField
1857
+ ADDRESS = "ADDRESS"
1858
+ AD_SOURCE = "AD_SOURCE"
1859
+ BIRTHDATE = "BIRTHDATE"
1860
+ CITY = "CITY"
1861
+ COUNTRY = "COUNTRY"
1862
+ EMAIL = "EMAIL"
1863
+ FIRST_NAME = "FIRST_NAME"
1864
+ GENDER = "GENDER"
1865
+ LAST_NAME = "LAST_NAME"
1866
+ PHONE = "PHONE"
1867
+ STATE = "STATE"
1868
+ ZIP = "ZIP"
1869
+ end
1870
+
1871
+ # {http://ws.resmarksystems.com/}processedState
1872
+ module ProcessedState
1873
+ INVOICED = "INVOICED"
1874
+ NEW = "NEW"
1875
+ RECOGNIZED = "RECOGNIZED"
1876
+ end