rbook 0.1 → 0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,374 +1,379 @@
1
1
  require 'xsd/qname'
2
2
 
3
- # {urn:TitleQuery}ProductIdentifier
4
- class ProductIdentifier
5
- @@schema_type = "ProductIdentifier"
6
- @@schema_ns = "urn:TitleQuery"
7
- @@schema_element = [["productIDType", ["SOAP::SOAPString", XSD::QName.new(nil, "ProductIDType")]], ["iDValue", ["SOAP::SOAPString", XSD::QName.new(nil, "IDValue")]]]
8
-
9
- def ProductIDType
10
- @productIDType
11
- end
12
-
13
- def ProductIDType=(value)
14
- @productIDType = value
15
- end
16
-
17
- def IDValue
18
- @iDValue
19
- end
20
-
21
- def IDValue=(value)
22
- @iDValue = value
23
- end
24
-
25
- def initialize(productIDType = nil, iDValue = nil)
26
- @productIDType = productIDType
27
- @iDValue = iDValue
28
- end
29
- end
30
-
31
- # {urn:TitleQuery}Title
32
- class Title
33
- @@schema_type = "Title"
34
- @@schema_ns = "urn:TitleQuery"
35
- @@schema_element = [["titleType", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleType")]], ["titleText", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleText")]], ["titlePrefix", ["SOAP::SOAPString", XSD::QName.new(nil, "TitlePrefix")]], ["titleWithoutPrefix", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleWithoutPrefix")]], ["subtitle", ["SOAP::SOAPString", XSD::QName.new(nil, "Subtitle")]]]
36
-
37
- def TitleType
38
- @titleType
39
- end
40
-
41
- def TitleType=(value)
42
- @titleType = value
43
- end
44
-
45
- def TitleText
46
- @titleText
47
- end
48
-
49
- def TitleText=(value)
50
- @titleText = value
51
- end
52
-
53
- def TitlePrefix
54
- @titlePrefix
55
- end
56
-
57
- def TitlePrefix=(value)
58
- @titlePrefix = value
59
- end
60
-
61
- def TitleWithoutPrefix
62
- @titleWithoutPrefix
63
- end
64
-
65
- def TitleWithoutPrefix=(value)
66
- @titleWithoutPrefix = value
67
- end
68
-
69
- def Subtitle
70
- @subtitle
71
- end
72
-
73
- def Subtitle=(value)
74
- @subtitle = value
75
- end
76
-
77
- def initialize(titleType = nil, titleText = nil, titlePrefix = nil, titleWithoutPrefix = nil, subtitle = nil)
78
- @titleType = titleType
79
- @titleText = titleText
80
- @titlePrefix = titlePrefix
81
- @titleWithoutPrefix = titleWithoutPrefix
82
- @subtitle = subtitle
83
- end
84
- end
85
-
86
- # {urn:TitleQuery}Contributor
87
- class Contributor
88
- @@schema_type = "Contributor"
89
- @@schema_ns = "urn:TitleQuery"
90
- @@schema_element = [["sequenceNumber", ["SOAP::SOAPInteger", XSD::QName.new(nil, "SequenceNumber")]], ["contributorRole", ["SOAP::SOAPString", XSD::QName.new(nil, "ContributorRole")]], ["personName", ["SOAP::SOAPString", XSD::QName.new(nil, "PersonName")]], ["personNameInverted", ["SOAP::SOAPString", XSD::QName.new(nil, "PersonNameInverted")]], ["titlesBeforeNames", ["SOAP::SOAPString", XSD::QName.new(nil, "TitlesBeforeNames")]], ["keyNames", ["SOAP::SOAPString", XSD::QName.new(nil, "KeyNames")]]]
91
-
92
- def SequenceNumber
93
- @sequenceNumber
94
- end
95
-
96
- def SequenceNumber=(value)
97
- @sequenceNumber = value
98
- end
99
-
100
- def ContributorRole
101
- @contributorRole
102
- end
103
-
104
- def ContributorRole=(value)
105
- @contributorRole = value
106
- end
107
-
108
- def PersonName
109
- @personName
110
- end
111
-
112
- def PersonName=(value)
113
- @personName = value
114
- end
115
-
116
- def PersonNameInverted
117
- @personNameInverted
118
- end
119
-
120
- def PersonNameInverted=(value)
121
- @personNameInverted = value
122
- end
123
-
124
- def TitlesBeforeNames
125
- @titlesBeforeNames
126
- end
127
-
128
- def TitlesBeforeNames=(value)
129
- @titlesBeforeNames = value
130
- end
131
-
132
- def KeyNames
133
- @keyNames
134
- end
135
-
136
- def KeyNames=(value)
137
- @keyNames = value
138
- end
139
-
140
- def initialize(sequenceNumber = nil, contributorRole = nil, personName = nil, personNameInverted = nil, titlesBeforeNames = nil, keyNames = nil)
141
- @sequenceNumber = sequenceNumber
142
- @contributorRole = contributorRole
143
- @personName = personName
144
- @personNameInverted = personNameInverted
145
- @titlesBeforeNames = titlesBeforeNames
146
- @keyNames = keyNames
147
- end
148
- end
149
-
150
- # {urn:TitleQuery}Stock
151
- class Stock
152
- @@schema_type = "Stock"
153
- @@schema_ns = "urn:TitleQuery"
154
- @@schema_element = [["onHand", ["SOAP::SOAPString", XSD::QName.new(nil, "OnHand")]], ["onOrder", ["SOAP::SOAPString", XSD::QName.new(nil, "OnOrder")]]]
155
-
156
- def OnHand
157
- @onHand
158
- end
159
-
160
- def OnHand=(value)
161
- @onHand = value
162
- end
163
-
164
- def OnOrder
165
- @onOrder
166
- end
167
-
168
- def OnOrder=(value)
169
- @onOrder = value
170
- end
171
-
172
- def initialize(onHand = nil, onOrder = nil)
173
- @onHand = onHand
174
- @onOrder = onOrder
175
- end
176
- end
177
-
178
- # {urn:TitleQuery}Price
179
- class Price
180
- @@schema_type = "Price"
181
- @@schema_ns = "urn:TitleQuery"
182
- @@schema_element = [["priceTypeCode", ["SOAP::SOAPString", XSD::QName.new(nil, "PriceTypeCode")]], ["priceAmount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "PriceAmount")]]]
183
-
184
- def PriceTypeCode
185
- @priceTypeCode
186
- end
187
-
188
- def PriceTypeCode=(value)
189
- @priceTypeCode = value
190
- end
191
-
192
- def PriceAmount
193
- @priceAmount
194
- end
195
-
196
- def PriceAmount=(value)
197
- @priceAmount = value
198
- end
199
-
200
- def initialize(priceTypeCode = nil, priceAmount = nil)
201
- @priceTypeCode = priceTypeCode
202
- @priceAmount = priceAmount
203
- end
204
- end
205
-
206
- # {urn:TitleQuery}SupplyDetail
207
- class SupplyDetail
208
- @@schema_type = "SupplyDetail"
209
- @@schema_ns = "urn:TitleQuery"
210
- @@schema_element = [["supplierName", ["SOAP::SOAPString", XSD::QName.new(nil, "SupplierName")]], ["supplierRole", ["SOAP::SOAPString", XSD::QName.new(nil, "SupplierRole")]], ["productAvailability", ["SOAP::SOAPString", XSD::QName.new(nil, "ProductAvailability")]], ["expectedShipDate", ["SOAP::SOAPString", XSD::QName.new(nil, "ExpectedShipDate")]], ["stock", ["Stock", XSD::QName.new(nil, "Stock")]], ["packQuantity", ["SOAP::SOAPInteger", XSD::QName.new(nil, "PackQuantity")]], ["price", ["Price", XSD::QName.new(nil, "Price")]]]
211
-
212
- def SupplierName
213
- @supplierName
214
- end
215
-
216
- def SupplierName=(value)
217
- @supplierName = value
218
- end
219
-
220
- def SupplierRole
221
- @supplierRole
222
- end
223
-
224
- def SupplierRole=(value)
225
- @supplierRole = value
226
- end
227
-
228
- def ProductAvailability
229
- @productAvailability
230
- end
231
-
232
- def ProductAvailability=(value)
233
- @productAvailability = value
234
- end
235
-
236
- def ExpectedShipDate
237
- @expectedShipDate
238
- end
239
-
240
- def ExpectedShipDate=(value)
241
- @expectedShipDate = value
242
- end
243
-
244
- def Stock
245
- @stock
246
- end
247
-
248
- def Stock=(value)
249
- @stock = value
250
- end
251
-
252
- def PackQuantity
253
- @packQuantity
254
- end
255
-
256
- def PackQuantity=(value)
257
- @packQuantity = value
258
- end
259
-
260
- def Price
261
- @price
262
- end
263
-
264
- def Price=(value)
265
- @price = value
266
- end
267
-
268
- def initialize(supplierName = nil, supplierRole = nil, productAvailability = nil, expectedShipDate = nil, stock = nil, packQuantity = nil, price = nil)
269
- @supplierName = supplierName
270
- @supplierRole = supplierRole
271
- @productAvailability = productAvailability
272
- @expectedShipDate = expectedShipDate
273
- @stock = stock
274
- @packQuantity = packQuantity
275
- @price = price
276
- end
277
- end
278
-
279
- # {urn:TitleQuery}ArrayOfContributor
280
- class ArrayOfContributor < ::Array
281
- @@schema_type = "Contributor"
282
- @@schema_ns = "urn:TitleQuery"
283
- @@schema_element = [["item", ["Contributor", XSD::QName.new(nil, "item")]]]
284
- end
285
-
286
- # {urn:TitleQuery}ArrayOfProductIdentifier
287
- class ArrayOfProductIdentifier < ::Array
288
- @@schema_type = "ProductIdentifier"
289
- @@schema_ns = "urn:TitleQuery"
290
- @@schema_element = [["item", ["ProductIdentifier", XSD::QName.new(nil, "item")]]]
291
- end
292
-
293
- # {urn:TitleQuery}Product
294
- class Product
295
- @@schema_type = "Product"
296
- @@schema_ns = "urn:TitleQuery"
297
- @@schema_element = [["productIdentifiers", ["ArrayOfProductIdentifier", XSD::QName.new(nil, "ProductIdentifiers")]], ["title", ["Title", XSD::QName.new(nil, "Title")]], ["contributors", ["ArrayOfContributor", XSD::QName.new(nil, "Contributors")]], ["supplyDetail", ["SupplyDetail", XSD::QName.new(nil, "SupplyDetail")]]]
298
-
299
- def ProductIdentifiers
300
- @productIdentifiers
301
- end
302
-
303
- def ProductIdentifiers=(value)
304
- @productIdentifiers = value
305
- end
306
-
307
- def Title
308
- @title
309
- end
310
-
311
- def Title=(value)
312
- @title = value
313
- end
314
-
315
- def Contributors
316
- @contributors
317
- end
318
-
319
- def Contributors=(value)
320
- @contributors = value
321
- end
322
-
323
- def SupplyDetail
324
- @supplyDetail
325
- end
326
-
327
- def SupplyDetail=(value)
328
- @supplyDetail = value
329
- end
330
-
331
- def initialize(productIdentifiers = nil, title = nil, contributors = nil, supplyDetail = nil)
332
- @productIdentifiers = productIdentifiers
333
- @title = title
334
- @contributors = contributors
335
- @supplyDetail = supplyDetail
336
- end
337
- end
338
-
339
- # {urn:TitleQuery}SearchResults
340
- class SearchResults
341
- @@schema_type = "SearchResults"
342
- @@schema_ns = "urn:TitleQuery"
343
- @@schema_element = [["iSBN", ["SOAP::SOAPString", XSD::QName.new(nil, "ISBN")]], ["eAN", ["SOAP::SOAPString", XSD::QName.new(nil, "EAN")]], ["product", ["Product", XSD::QName.new(nil, "Product")]]]
344
-
345
- def ISBN
346
- @iSBN
347
- end
348
-
349
- def ISBN=(value)
350
- @iSBN = value
351
- end
352
-
353
- def EAN
354
- @eAN
355
- end
356
-
357
- def EAN=(value)
358
- @eAN = value
359
- end
360
-
361
- def Product
362
- @product
363
- end
364
-
365
- def Product=(value)
366
- @product = value
367
- end
368
-
369
- def initialize(iSBN = nil, eAN = nil, product = nil)
370
- @iSBN = iSBN
371
- @eAN = eAN
372
- @product = product
3
+ module RBook
4
+ module TitlePage
5
+
6
+ # {urn:TitleQuery}ProductIdentifier
7
+ class ProductIdentifier
8
+ @@schema_type = "ProductIdentifier"
9
+ @@schema_ns = "urn:TitleQuery"
10
+ @@schema_element = [["productIDType", ["SOAP::SOAPString", XSD::QName.new(nil, "ProductIDType")]], ["iDValue", ["SOAP::SOAPString", XSD::QName.new(nil, "IDValue")]]]
11
+
12
+ def ProductIDType
13
+ @productIDType
14
+ end
15
+
16
+ def ProductIDType=(value)
17
+ @productIDType = value
18
+ end
19
+
20
+ def IDValue
21
+ @iDValue
22
+ end
23
+
24
+ def IDValue=(value)
25
+ @iDValue = value
26
+ end
27
+
28
+ def initialize(productIDType = nil, iDValue = nil)
29
+ @productIDType = productIDType
30
+ @iDValue = iDValue
31
+ end
32
+ end
33
+
34
+ # {urn:TitleQuery}Title
35
+ class Title
36
+ @@schema_type = "Title"
37
+ @@schema_ns = "urn:TitleQuery"
38
+ @@schema_element = [["titleType", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleType")]], ["titleText", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleText")]], ["titlePrefix", ["SOAP::SOAPString", XSD::QName.new(nil, "TitlePrefix")]], ["titleWithoutPrefix", ["SOAP::SOAPString", XSD::QName.new(nil, "TitleWithoutPrefix")]], ["subtitle", ["SOAP::SOAPString", XSD::QName.new(nil, "Subtitle")]]]
39
+
40
+ def TitleType
41
+ @titleType
42
+ end
43
+
44
+ def TitleType=(value)
45
+ @titleType = value
46
+ end
47
+
48
+ def TitleText
49
+ @titleText
50
+ end
51
+
52
+ def TitleText=(value)
53
+ @titleText = value
54
+ end
55
+
56
+ def TitlePrefix
57
+ @titlePrefix
58
+ end
59
+
60
+ def TitlePrefix=(value)
61
+ @titlePrefix = value
62
+ end
63
+
64
+ def TitleWithoutPrefix
65
+ @titleWithoutPrefix
66
+ end
67
+
68
+ def TitleWithoutPrefix=(value)
69
+ @titleWithoutPrefix = value
70
+ end
71
+
72
+ def Subtitle
73
+ @subtitle
74
+ end
75
+
76
+ def Subtitle=(value)
77
+ @subtitle = value
78
+ end
79
+
80
+ def initialize(titleType = nil, titleText = nil, titlePrefix = nil, titleWithoutPrefix = nil, subtitle = nil)
81
+ @titleType = titleType
82
+ @titleText = titleText
83
+ @titlePrefix = titlePrefix
84
+ @titleWithoutPrefix = titleWithoutPrefix
85
+ @subtitle = subtitle
86
+ end
87
+ end
88
+
89
+ # {urn:TitleQuery}Contributor
90
+ class Contributor
91
+ @@schema_type = "Contributor"
92
+ @@schema_ns = "urn:TitleQuery"
93
+ @@schema_element = [["sequenceNumber", ["SOAP::SOAPInteger", XSD::QName.new(nil, "SequenceNumber")]], ["contributorRole", ["SOAP::SOAPString", XSD::QName.new(nil, "ContributorRole")]], ["personName", ["SOAP::SOAPString", XSD::QName.new(nil, "PersonName")]], ["personNameInverted", ["SOAP::SOAPString", XSD::QName.new(nil, "PersonNameInverted")]], ["titlesBeforeNames", ["SOAP::SOAPString", XSD::QName.new(nil, "TitlesBeforeNames")]], ["keyNames", ["SOAP::SOAPString", XSD::QName.new(nil, "KeyNames")]]]
94
+
95
+ def SequenceNumber
96
+ @sequenceNumber
97
+ end
98
+
99
+ def SequenceNumber=(value)
100
+ @sequenceNumber = value
101
+ end
102
+
103
+ def ContributorRole
104
+ @contributorRole
105
+ end
106
+
107
+ def ContributorRole=(value)
108
+ @contributorRole = value
109
+ end
110
+
111
+ def PersonName
112
+ @personName
113
+ end
114
+
115
+ def PersonName=(value)
116
+ @personName = value
117
+ end
118
+
119
+ def PersonNameInverted
120
+ @personNameInverted
121
+ end
122
+
123
+ def PersonNameInverted=(value)
124
+ @personNameInverted = value
125
+ end
126
+
127
+ def TitlesBeforeNames
128
+ @titlesBeforeNames
129
+ end
130
+
131
+ def TitlesBeforeNames=(value)
132
+ @titlesBeforeNames = value
133
+ end
134
+
135
+ def KeyNames
136
+ @keyNames
137
+ end
138
+
139
+ def KeyNames=(value)
140
+ @keyNames = value
141
+ end
142
+
143
+ def initialize(sequenceNumber = nil, contributorRole = nil, personName = nil, personNameInverted = nil, titlesBeforeNames = nil, keyNames = nil)
144
+ @sequenceNumber = sequenceNumber
145
+ @contributorRole = contributorRole
146
+ @personName = personName
147
+ @personNameInverted = personNameInverted
148
+ @titlesBeforeNames = titlesBeforeNames
149
+ @keyNames = keyNames
150
+ end
151
+ end
152
+
153
+ # {urn:TitleQuery}Stock
154
+ class Stock
155
+ @@schema_type = "Stock"
156
+ @@schema_ns = "urn:TitleQuery"
157
+ @@schema_element = [["onHand", ["SOAP::SOAPString", XSD::QName.new(nil, "OnHand")]], ["onOrder", ["SOAP::SOAPString", XSD::QName.new(nil, "OnOrder")]]]
158
+
159
+ def OnHand
160
+ @onHand
161
+ end
162
+
163
+ def OnHand=(value)
164
+ @onHand = value
165
+ end
166
+
167
+ def OnOrder
168
+ @onOrder
169
+ end
170
+
171
+ def OnOrder=(value)
172
+ @onOrder = value
173
+ end
174
+
175
+ def initialize(onHand = nil, onOrder = nil)
176
+ @onHand = onHand
177
+ @onOrder = onOrder
178
+ end
179
+ end
180
+
181
+ # {urn:TitleQuery}Price
182
+ class Price
183
+ @@schema_type = "Price"
184
+ @@schema_ns = "urn:TitleQuery"
185
+ @@schema_element = [["priceTypeCode", ["SOAP::SOAPString", XSD::QName.new(nil, "PriceTypeCode")]], ["priceAmount", ["SOAP::SOAPDecimal", XSD::QName.new(nil, "PriceAmount")]]]
186
+
187
+ def PriceTypeCode
188
+ @priceTypeCode
189
+ end
190
+
191
+ def PriceTypeCode=(value)
192
+ @priceTypeCode = value
193
+ end
194
+
195
+ def PriceAmount
196
+ @priceAmount
197
+ end
198
+
199
+ def PriceAmount=(value)
200
+ @priceAmount = value
201
+ end
202
+
203
+ def initialize(priceTypeCode = nil, priceAmount = nil)
204
+ @priceTypeCode = priceTypeCode
205
+ @priceAmount = priceAmount
206
+ end
207
+ end
208
+
209
+ # {urn:TitleQuery}SupplyDetail
210
+ class SupplyDetail
211
+ @@schema_type = "SupplyDetail"
212
+ @@schema_ns = "urn:TitleQuery"
213
+ @@schema_element = [["supplierName", ["SOAP::SOAPString", XSD::QName.new(nil, "SupplierName")]], ["supplierRole", ["SOAP::SOAPString", XSD::QName.new(nil, "SupplierRole")]], ["productAvailability", ["SOAP::SOAPString", XSD::QName.new(nil, "ProductAvailability")]], ["expectedShipDate", ["SOAP::SOAPString", XSD::QName.new(nil, "ExpectedShipDate")]], ["stock", ["Stock", XSD::QName.new(nil, "Stock")]], ["packQuantity", ["SOAP::SOAPInteger", XSD::QName.new(nil, "PackQuantity")]], ["price", ["Price", XSD::QName.new(nil, "Price")]]]
214
+
215
+ def SupplierName
216
+ @supplierName
217
+ end
218
+
219
+ def SupplierName=(value)
220
+ @supplierName = value
221
+ end
222
+
223
+ def SupplierRole
224
+ @supplierRole
225
+ end
226
+
227
+ def SupplierRole=(value)
228
+ @supplierRole = value
229
+ end
230
+
231
+ def ProductAvailability
232
+ @productAvailability
233
+ end
234
+
235
+ def ProductAvailability=(value)
236
+ @productAvailability = value
237
+ end
238
+
239
+ def ExpectedShipDate
240
+ @expectedShipDate
241
+ end
242
+
243
+ def ExpectedShipDate=(value)
244
+ @expectedShipDate = value
245
+ end
246
+
247
+ def Stock
248
+ @stock
249
+ end
250
+
251
+ def Stock=(value)
252
+ @stock = value
253
+ end
254
+
255
+ def PackQuantity
256
+ @packQuantity
257
+ end
258
+
259
+ def PackQuantity=(value)
260
+ @packQuantity = value
261
+ end
262
+
263
+ def Price
264
+ @price
265
+ end
266
+
267
+ def Price=(value)
268
+ @price = value
269
+ end
270
+
271
+ def initialize(supplierName = nil, supplierRole = nil, productAvailability = nil, expectedShipDate = nil, stock = nil, packQuantity = nil, price = nil)
272
+ @supplierName = supplierName
273
+ @supplierRole = supplierRole
274
+ @productAvailability = productAvailability
275
+ @expectedShipDate = expectedShipDate
276
+ @stock = stock
277
+ @packQuantity = packQuantity
278
+ @price = price
279
+ end
280
+ end
281
+
282
+ # {urn:TitleQuery}ArrayOfContributor
283
+ class ArrayOfContributor < ::Array
284
+ @@schema_type = "Contributor"
285
+ @@schema_ns = "urn:TitleQuery"
286
+ @@schema_element = [["item", ["Contributor", XSD::QName.new(nil, "item")]]]
287
+ end
288
+
289
+ # {urn:TitleQuery}ArrayOfProductIdentifier
290
+ class ArrayOfProductIdentifier < ::Array
291
+ @@schema_type = "ProductIdentifier"
292
+ @@schema_ns = "urn:TitleQuery"
293
+ @@schema_element = [["item", ["ProductIdentifier", XSD::QName.new(nil, "item")]]]
294
+ end
295
+
296
+ # {urn:TitleQuery}Product
297
+ class Product
298
+ @@schema_type = "Product"
299
+ @@schema_ns = "urn:TitleQuery"
300
+ @@schema_element = [["productIdentifiers", ["ArrayOfProductIdentifier", XSD::QName.new(nil, "ProductIdentifiers")]], ["title", ["Title", XSD::QName.new(nil, "Title")]], ["contributors", ["ArrayOfContributor", XSD::QName.new(nil, "Contributors")]], ["supplyDetail", ["SupplyDetail", XSD::QName.new(nil, "SupplyDetail")]]]
301
+
302
+ def ProductIdentifiers
303
+ @productIdentifiers
304
+ end
305
+
306
+ def ProductIdentifiers=(value)
307
+ @productIdentifiers = value
308
+ end
309
+
310
+ def Title
311
+ @title
312
+ end
313
+
314
+ def Title=(value)
315
+ @title = value
316
+ end
317
+
318
+ def Contributors
319
+ @contributors
320
+ end
321
+
322
+ def Contributors=(value)
323
+ @contributors = value
324
+ end
325
+
326
+ def SupplyDetail
327
+ @supplyDetail
328
+ end
329
+
330
+ def SupplyDetail=(value)
331
+ @supplyDetail = value
332
+ end
333
+
334
+ def initialize(productIdentifiers = nil, title = nil, contributors = nil, supplyDetail = nil)
335
+ @productIdentifiers = productIdentifiers
336
+ @title = title
337
+ @contributors = contributors
338
+ @supplyDetail = supplyDetail
339
+ end
340
+ end
341
+
342
+ # {urn:TitleQuery}SearchResults
343
+ class SearchResults
344
+ @@schema_type = "SearchResults"
345
+ @@schema_ns = "urn:TitleQuery"
346
+ @@schema_element = [["iSBN", ["SOAP::SOAPString", XSD::QName.new(nil, "ISBN")]], ["eAN", ["SOAP::SOAPString", XSD::QName.new(nil, "EAN")]], ["product", ["Product", XSD::QName.new(nil, "Product")]]]
347
+
348
+ def ISBN
349
+ @iSBN
350
+ end
351
+
352
+ def ISBN=(value)
353
+ @iSBN = value
354
+ end
355
+
356
+ def EAN
357
+ @eAN
358
+ end
359
+
360
+ def EAN=(value)
361
+ @eAN = value
362
+ end
363
+
364
+ def Product
365
+ @product
366
+ end
367
+
368
+ def Product=(value)
369
+ @product = value
370
+ end
371
+
372
+ def initialize(iSBN = nil, eAN = nil, product = nil)
373
+ @iSBN = iSBN
374
+ @eAN = eAN
375
+ @product = product
376
+ end
377
+ end
373
378
  end
374
379
  end