responsys 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2467 @@
1
+ require 'xsd/qname'
2
+ require 'soap/header/simplehandler'
3
+
4
+ # {urn:ws.rsys.com}LoginResult
5
+ # sessionId - SOAP::SOAPString
6
+ class LoginResult
7
+ attr_accessor :sessionId
8
+
9
+ def initialize(sessionId = nil)
10
+ @sessionId = sessionId
11
+ end
12
+ end
13
+
14
+ # {urn:ws.rsys.com}ServerAuthResult
15
+ # authSessionId - SOAP::SOAPString
16
+ # encryptedClientChallenge - SOAP::SOAPByte
17
+ # serverChallenge - SOAP::SOAPByte
18
+ class ServerAuthResult
19
+ attr_accessor :authSessionId
20
+ attr_accessor :encryptedClientChallenge
21
+ attr_accessor :serverChallenge
22
+
23
+ def initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = [])
24
+ @authSessionId = authSessionId
25
+ @encryptedClientChallenge = encryptedClientChallenge
26
+ @serverChallenge = serverChallenge
27
+ end
28
+ end
29
+
30
+ # {urn:ws.rsys.com}FolderResult
31
+ # name - SOAP::SOAPString
32
+ class FolderResult
33
+ attr_accessor :name
34
+
35
+ def initialize(name = nil)
36
+ @name = name
37
+ end
38
+ end
39
+
40
+ # {urn:ws.rsys.com}InteractObject
41
+ # folderName - SOAP::SOAPString
42
+ # objectName - SOAP::SOAPString
43
+ class InteractObject
44
+ attr_accessor :folderName
45
+ attr_accessor :objectName
46
+
47
+ def initialize(folderName = nil, objectName = nil)
48
+ @folderName = folderName
49
+ @objectName = objectName
50
+ end
51
+ end
52
+
53
+ # {urn:ws.rsys.com}FolderObjectResult
54
+ # id - SOAP::SOAPLong
55
+ # name - InteractObject
56
+ # type - FolderObjectType
57
+ # subType - SOAP::SOAPString
58
+ class FolderObjectResult
59
+ attr_accessor :id
60
+ attr_accessor :name
61
+ attr_accessor :type
62
+ attr_accessor :subType
63
+
64
+ def initialize(id = nil, name = nil, type = nil, subType = nil)
65
+ @id = id
66
+ @name = name
67
+ @type = type
68
+ @subType = subType
69
+ end
70
+ end
71
+
72
+ # {urn:ws.rsys.com}Recipient
73
+ # listName - InteractObject
74
+ # recipientId - SOAP::SOAPLong
75
+ # customerId - SOAP::SOAPString
76
+ # emailAddress - SOAP::SOAPString
77
+ # mobileNumber - SOAP::SOAPString
78
+ # emailFormat - EmailFormat
79
+ class Recipient
80
+ attr_accessor :listName
81
+ attr_accessor :recipientId
82
+ attr_accessor :customerId
83
+ attr_accessor :emailAddress
84
+ attr_accessor :mobileNumber
85
+ attr_accessor :emailFormat
86
+
87
+ def initialize(listName = nil, recipientId = nil, customerId = nil, emailAddress = nil, mobileNumber = nil, emailFormat = nil)
88
+ @listName = listName
89
+ @recipientId = recipientId
90
+ @customerId = customerId
91
+ @emailAddress = emailAddress
92
+ @mobileNumber = mobileNumber
93
+ @emailFormat = emailFormat
94
+ end
95
+ end
96
+
97
+ # {urn:ws.rsys.com}OptionalData
98
+ # name - SOAP::SOAPString
99
+ # value - SOAP::SOAPString
100
+ class OptionalData
101
+ attr_accessor :name
102
+ attr_accessor :value
103
+
104
+ def initialize(name = nil, value = nil)
105
+ @name = name
106
+ @value = value
107
+ end
108
+ end
109
+
110
+ # {urn:ws.rsys.com}CampaignProperties
111
+ # campaign - InteractObject
112
+ # campaignId - SOAP::SOAPLong
113
+ # campaignType - CampaignType
114
+ # description - SOAP::SOAPString
115
+ # marketingProgram - SOAP::SOAPString
116
+ # marketingStrategy - SOAP::SOAPString
117
+ # list - InteractObject
118
+ # refiningFilters - InteractObject
119
+ # refiningDataSource - InteractObject
120
+ # governanceFilter - InteractObject
121
+ # supplementalCampaignDataSources - InteractObject
122
+ # suppressionLists - InteractObject
123
+ # supplementalProofDataSources - InteractObject
124
+ # supplementalSeedDataSources - InteractObject
125
+ # proofList - InteractObject
126
+ # seedList - InteractObject
127
+ # segmentation - InteractObject
128
+ # fromName - SOAP::SOAPString
129
+ # fromEmail - SOAP::SOAPString
130
+ # replyToEmail - SOAP::SOAPString
131
+ # bccEmail - SOAP::SOAPString
132
+ # subject - SOAP::SOAPString
133
+ # htmlMessage - InteractObject
134
+ # textMessage - InteractObject
135
+ # enableLinkTracking - SOAP::SOAPBoolean
136
+ # linkTable - InteractObject
137
+ # enableExternalTracking - SOAP::SOAPBoolean
138
+ # externalTrackingParams - OptionalData
139
+ # attachments - InteractObject
140
+ # campaignVariables - OptionalData
141
+ # campaignPurpose - CampaignPurpose
142
+ # useUTF8 - SOAP::SOAPBoolean
143
+ # locale - RecipientLocale
144
+ # trackHtmlOpens - SOAP::SOAPBoolean
145
+ # trackConversions - SOAP::SOAPBoolean
146
+ # sendTextIfHTMLUnknown - SOAP::SOAPBoolean
147
+ # segmentTrackingColumnName - SOAP::SOAPString
148
+ # unsubscribeOption - UnsubscribeOption
149
+ # unsubscribeForm - SOAP::SOAPString
150
+ # autoCloseOption - AutoCloseOption
151
+ # autoCloseValue - SOAP::SOAPString
152
+ # closedCampaignURL - SOAP::SOAPString
153
+ # externalCampaignCode - SOAP::SOAPString
154
+ # salesForceCampaignId - SOAP::SOAPString
155
+ class CampaignProperties
156
+ attr_accessor :campaign
157
+ attr_accessor :campaignId
158
+ attr_accessor :campaignType
159
+ attr_accessor :description
160
+ attr_accessor :marketingProgram
161
+ attr_accessor :marketingStrategy
162
+ attr_accessor :list
163
+ attr_accessor :refiningFilters
164
+ attr_accessor :refiningDataSource
165
+ attr_accessor :governanceFilter
166
+ attr_accessor :supplementalCampaignDataSources
167
+ attr_accessor :suppressionLists
168
+ attr_accessor :supplementalProofDataSources
169
+ attr_accessor :supplementalSeedDataSources
170
+ attr_accessor :proofList
171
+ attr_accessor :seedList
172
+ attr_accessor :segmentation
173
+ attr_accessor :fromName
174
+ attr_accessor :fromEmail
175
+ attr_accessor :replyToEmail
176
+ attr_accessor :bccEmail
177
+ attr_accessor :subject
178
+ attr_accessor :htmlMessage
179
+ attr_accessor :textMessage
180
+ attr_accessor :enableLinkTracking
181
+ attr_accessor :linkTable
182
+ attr_accessor :enableExternalTracking
183
+ attr_accessor :externalTrackingParams
184
+ attr_accessor :attachments
185
+ attr_accessor :campaignVariables
186
+ attr_accessor :campaignPurpose
187
+ attr_accessor :useUTF8
188
+ attr_accessor :locale
189
+ attr_accessor :trackHtmlOpens
190
+ attr_accessor :trackConversions
191
+ attr_accessor :sendTextIfHTMLUnknown
192
+ attr_accessor :segmentTrackingColumnName
193
+ attr_accessor :unsubscribeOption
194
+ attr_accessor :unsubscribeForm
195
+ attr_accessor :autoCloseOption
196
+ attr_accessor :autoCloseValue
197
+ attr_accessor :closedCampaignURL
198
+ attr_accessor :externalCampaignCode
199
+ attr_accessor :salesForceCampaignId
200
+
201
+ def initialize(campaign = nil, campaignId = nil, campaignType = nil, description = nil, marketingProgram = nil, marketingStrategy = nil, list = nil, refiningFilters = [], refiningDataSource = nil, governanceFilter = nil, supplementalCampaignDataSources = [], suppressionLists = [], supplementalProofDataSources = [], supplementalSeedDataSources = [], proofList = nil, seedList = nil, segmentation = [], fromName = nil, fromEmail = nil, replyToEmail = nil, bccEmail = nil, subject = nil, htmlMessage = nil, textMessage = nil, enableLinkTracking = nil, linkTable = nil, enableExternalTracking = nil, externalTrackingParams = [], attachments = [], campaignVariables = [], campaignPurpose = nil, useUTF8 = nil, locale = nil, trackHtmlOpens = nil, trackConversions = nil, sendTextIfHTMLUnknown = nil, segmentTrackingColumnName = nil, unsubscribeOption = nil, unsubscribeForm = nil, autoCloseOption = nil, autoCloseValue = nil, closedCampaignURL = nil, externalCampaignCode = nil, salesForceCampaignId = nil)
202
+ @campaign = campaign
203
+ @campaignId = campaignId
204
+ @campaignType = campaignType
205
+ @description = description
206
+ @marketingProgram = marketingProgram
207
+ @marketingStrategy = marketingStrategy
208
+ @list = list
209
+ @refiningFilters = refiningFilters
210
+ @refiningDataSource = refiningDataSource
211
+ @governanceFilter = governanceFilter
212
+ @supplementalCampaignDataSources = supplementalCampaignDataSources
213
+ @suppressionLists = suppressionLists
214
+ @supplementalProofDataSources = supplementalProofDataSources
215
+ @supplementalSeedDataSources = supplementalSeedDataSources
216
+ @proofList = proofList
217
+ @seedList = seedList
218
+ @segmentation = segmentation
219
+ @fromName = fromName
220
+ @fromEmail = fromEmail
221
+ @replyToEmail = replyToEmail
222
+ @bccEmail = bccEmail
223
+ @subject = subject
224
+ @htmlMessage = htmlMessage
225
+ @textMessage = textMessage
226
+ @enableLinkTracking = enableLinkTracking
227
+ @linkTable = linkTable
228
+ @enableExternalTracking = enableExternalTracking
229
+ @externalTrackingParams = externalTrackingParams
230
+ @attachments = attachments
231
+ @campaignVariables = campaignVariables
232
+ @campaignPurpose = campaignPurpose
233
+ @useUTF8 = useUTF8
234
+ @locale = locale
235
+ @trackHtmlOpens = trackHtmlOpens
236
+ @trackConversions = trackConversions
237
+ @sendTextIfHTMLUnknown = sendTextIfHTMLUnknown
238
+ @segmentTrackingColumnName = segmentTrackingColumnName
239
+ @unsubscribeOption = unsubscribeOption
240
+ @unsubscribeForm = unsubscribeForm
241
+ @autoCloseOption = autoCloseOption
242
+ @autoCloseValue = autoCloseValue
243
+ @closedCampaignURL = closedCampaignURL
244
+ @externalCampaignCode = externalCampaignCode
245
+ @salesForceCampaignId = salesForceCampaignId
246
+ end
247
+ end
248
+
249
+ # {urn:ws.rsys.com}RecipientData
250
+ # recipient - Recipient
251
+ # optionalData - OptionalData
252
+ class RecipientData
253
+ attr_accessor :recipient
254
+ attr_accessor :optionalData
255
+
256
+ def initialize(recipient = nil, optionalData = [])
257
+ @recipient = recipient
258
+ @optionalData = optionalData
259
+ end
260
+ end
261
+
262
+ # {urn:ws.rsys.com}TriggerResult
263
+ # recipientId - SOAP::SOAPLong
264
+ # success - SOAP::SOAPBoolean
265
+ # errorMessage - SOAP::SOAPString
266
+ class TriggerResult
267
+ attr_accessor :recipientId
268
+ attr_accessor :success
269
+ attr_accessor :errorMessage
270
+
271
+ def initialize(recipientId = nil, success = nil, errorMessage = nil)
272
+ @recipientId = recipientId
273
+ @success = success
274
+ @errorMessage = errorMessage
275
+ end
276
+ end
277
+
278
+ # {urn:ws.rsys.com}CustomEvent
279
+ # eventName - SOAP::SOAPString
280
+ # eventId - SOAP::SOAPLong
281
+ # eventStringDataMapping - SOAP::SOAPString
282
+ # eventDateDataMapping - SOAP::SOAPString
283
+ # eventNumberDataMapping - SOAP::SOAPString
284
+ class CustomEvent
285
+ attr_accessor :eventName
286
+ attr_accessor :eventId
287
+ attr_accessor :eventStringDataMapping
288
+ attr_accessor :eventDateDataMapping
289
+ attr_accessor :eventNumberDataMapping
290
+
291
+ def initialize(eventName = nil, eventId = nil, eventStringDataMapping = nil, eventDateDataMapping = nil, eventNumberDataMapping = nil)
292
+ @eventName = eventName
293
+ @eventId = eventId
294
+ @eventStringDataMapping = eventStringDataMapping
295
+ @eventDateDataMapping = eventDateDataMapping
296
+ @eventNumberDataMapping = eventNumberDataMapping
297
+ end
298
+ end
299
+
300
+ # {urn:ws.rsys.com}ProofLaunchOptions
301
+ # proofEmailAddress - SOAP::SOAPString
302
+ # proofLaunchType - ProofLaunchType
303
+ class ProofLaunchOptions
304
+ attr_accessor :proofEmailAddress
305
+ attr_accessor :proofLaunchType
306
+
307
+ def initialize(proofEmailAddress = nil, proofLaunchType = nil)
308
+ @proofEmailAddress = proofEmailAddress
309
+ @proofLaunchType = proofLaunchType
310
+ end
311
+ end
312
+
313
+ # {urn:ws.rsys.com}LaunchPreferences
314
+ # enableLimit - SOAP::SOAPBoolean
315
+ # recipientLimit - SOAP::SOAPLong
316
+ # enableNthSampling - SOAP::SOAPBoolean
317
+ # samplingNthSelection - SOAP::SOAPInt
318
+ # samplingNthInterval - SOAP::SOAPInt
319
+ # samplingNthOffset - SOAP::SOAPInt
320
+ # enableProgressAlerts - SOAP::SOAPBoolean
321
+ # progressEmailAddresses - SOAP::SOAPString
322
+ # progressChunk - ProgressChunk
323
+ class LaunchPreferences
324
+ attr_accessor :enableLimit
325
+ attr_accessor :recipientLimit
326
+ attr_accessor :enableNthSampling
327
+ attr_accessor :samplingNthSelection
328
+ attr_accessor :samplingNthInterval
329
+ attr_accessor :samplingNthOffset
330
+ attr_accessor :enableProgressAlerts
331
+ attr_accessor :progressEmailAddresses
332
+ attr_accessor :progressChunk
333
+
334
+ def initialize(enableLimit = nil, recipientLimit = nil, enableNthSampling = nil, samplingNthSelection = nil, samplingNthInterval = nil, samplingNthOffset = nil, enableProgressAlerts = nil, progressEmailAddresses = nil, progressChunk = nil)
335
+ @enableLimit = enableLimit
336
+ @recipientLimit = recipientLimit
337
+ @enableNthSampling = enableNthSampling
338
+ @samplingNthSelection = samplingNthSelection
339
+ @samplingNthInterval = samplingNthInterval
340
+ @samplingNthOffset = samplingNthOffset
341
+ @enableProgressAlerts = enableProgressAlerts
342
+ @progressEmailAddresses = progressEmailAddresses
343
+ @progressChunk = progressChunk
344
+ end
345
+ end
346
+
347
+ # {urn:ws.rsys.com}LaunchResult
348
+ # launchId - SOAP::SOAPLong
349
+ class LaunchResult
350
+ attr_accessor :launchId
351
+
352
+ def initialize(launchId = nil)
353
+ @launchId = launchId
354
+ end
355
+ end
356
+
357
+ # {urn:ws.rsys.com}LaunchStatusResult
358
+ # launchId - SOAP::SOAPLong
359
+ # launchState - SOAP::SOAPString
360
+ # launchType - SOAP::SOAPString
361
+ # launchDate - SOAP::SOAPDateTime
362
+ # campaign - SOAP::SOAPString
363
+ class LaunchStatusResult
364
+ attr_accessor :launchId
365
+ attr_accessor :launchState
366
+ attr_accessor :launchType
367
+ attr_accessor :launchDate
368
+ attr_accessor :campaign
369
+
370
+ def initialize(launchId = nil, launchState = nil, launchType = nil, launchDate = nil, campaign = nil)
371
+ @launchId = launchId
372
+ @launchState = launchState
373
+ @launchType = launchType
374
+ @launchDate = launchDate
375
+ @campaign = campaign
376
+ end
377
+ end
378
+
379
+ # {urn:ws.rsys.com}Field
380
+ # fieldName - SOAP::SOAPString
381
+ # fieldType - FieldType
382
+ # custom - SOAP::SOAPBoolean
383
+ # dataExtractionKey - SOAP::SOAPBoolean
384
+ class Field
385
+ attr_accessor :fieldName
386
+ attr_accessor :fieldType
387
+ attr_accessor :custom
388
+ attr_accessor :dataExtractionKey
389
+
390
+ def initialize(fieldName = nil, fieldType = nil, custom = nil, dataExtractionKey = nil)
391
+ @fieldName = fieldName
392
+ @fieldType = fieldType
393
+ @custom = custom
394
+ @dataExtractionKey = dataExtractionKey
395
+ end
396
+ end
397
+
398
+ # {urn:ws.rsys.com}ListMergeRule
399
+ # insertOnNoMatch - SOAP::SOAPBoolean
400
+ # updateOnMatch - UpdateOnMatch
401
+ # matchColumnName1 - SOAP::SOAPString
402
+ # matchColumnName2 - SOAP::SOAPString
403
+ # matchColumnName3 - SOAP::SOAPString
404
+ # matchOperator - MatchOperator
405
+ # optinValue - SOAP::SOAPString
406
+ # optoutValue - SOAP::SOAPString
407
+ # htmlValue - SOAP::SOAPString
408
+ # textValue - SOAP::SOAPString
409
+ # rejectRecordIfChannelEmpty - SOAP::SOAPString
410
+ # defaultPermissionStatus - PermissionStatus
411
+ class ListMergeRule
412
+ attr_accessor :insertOnNoMatch
413
+ attr_accessor :updateOnMatch
414
+ attr_accessor :matchColumnName1
415
+ attr_accessor :matchColumnName2
416
+ attr_accessor :matchColumnName3
417
+ attr_accessor :matchOperator
418
+ attr_accessor :optinValue
419
+ attr_accessor :optoutValue
420
+ attr_accessor :htmlValue
421
+ attr_accessor :textValue
422
+ attr_accessor :rejectRecordIfChannelEmpty
423
+ attr_accessor :defaultPermissionStatus
424
+
425
+ def initialize(insertOnNoMatch = nil, updateOnMatch = nil, matchColumnName1 = nil, matchColumnName2 = nil, matchColumnName3 = nil, matchOperator = nil, optinValue = nil, optoutValue = nil, htmlValue = nil, textValue = nil, rejectRecordIfChannelEmpty = nil, defaultPermissionStatus = nil)
426
+ @insertOnNoMatch = insertOnNoMatch
427
+ @updateOnMatch = updateOnMatch
428
+ @matchColumnName1 = matchColumnName1
429
+ @matchColumnName2 = matchColumnName2
430
+ @matchColumnName3 = matchColumnName3
431
+ @matchOperator = matchOperator
432
+ @optinValue = optinValue
433
+ @optoutValue = optoutValue
434
+ @htmlValue = htmlValue
435
+ @textValue = textValue
436
+ @rejectRecordIfChannelEmpty = rejectRecordIfChannelEmpty
437
+ @defaultPermissionStatus = defaultPermissionStatus
438
+ end
439
+ end
440
+
441
+ # {urn:ws.rsys.com}DeleteResult
442
+ # id - SOAP::SOAPString
443
+ # success - SOAP::SOAPBoolean
444
+ # exceptionCode - ExceptionCode
445
+ # errorMessage - SOAP::SOAPString
446
+ class DeleteResult
447
+ attr_accessor :id
448
+ attr_accessor :success
449
+ attr_accessor :exceptionCode
450
+ attr_accessor :errorMessage
451
+
452
+ def initialize(id = nil, success = nil, exceptionCode = nil, errorMessage = nil)
453
+ @id = id
454
+ @success = success
455
+ @exceptionCode = exceptionCode
456
+ @errorMessage = errorMessage
457
+ end
458
+ end
459
+
460
+ # {urn:ws.rsys.com}GetUpdatedResult
461
+ # id - SOAP::SOAPLong
462
+ # latestDateCovered - SOAP::SOAPDateTime
463
+ class GetUpdatedResult
464
+ attr_accessor :id
465
+ attr_accessor :latestDateCovered
466
+
467
+ def initialize(id = [], latestDateCovered = nil)
468
+ @id = id
469
+ @latestDateCovered = latestDateCovered
470
+ end
471
+ end
472
+
473
+ # {urn:ws.rsys.com}Record
474
+ class Record < ::Array
475
+ end
476
+
477
+ # {urn:ws.rsys.com}RetrieveResult
478
+ # recordData - RecordData
479
+ class RetrieveResult
480
+ attr_accessor :recordData
481
+
482
+ def initialize(recordData = nil)
483
+ @recordData = recordData
484
+ end
485
+ end
486
+
487
+ # {urn:ws.rsys.com}RecordData
488
+ # fieldNames - SOAP::SOAPString
489
+ # records - Record
490
+ class RecordData
491
+ attr_accessor :fieldNames
492
+ attr_accessor :records
493
+
494
+ def initialize(fieldNames = [], records = [])
495
+ @fieldNames = fieldNames
496
+ @records = records
497
+ end
498
+ end
499
+
500
+ # {urn:ws.rsys.com}MergeResult
501
+ # insertCount - SOAP::SOAPLong
502
+ # updateCount - SOAP::SOAPLong
503
+ # rejectedCount - SOAP::SOAPLong
504
+ # totalCount - SOAP::SOAPLong
505
+ # errorMessage - SOAP::SOAPString
506
+ class MergeResult
507
+ attr_accessor :insertCount
508
+ attr_accessor :updateCount
509
+ attr_accessor :rejectedCount
510
+ attr_accessor :totalCount
511
+ attr_accessor :errorMessage
512
+
513
+ def initialize(insertCount = nil, updateCount = nil, rejectedCount = nil, totalCount = nil, errorMessage = nil)
514
+ @insertCount = insertCount
515
+ @updateCount = updateCount
516
+ @rejectedCount = rejectedCount
517
+ @totalCount = totalCount
518
+ @errorMessage = errorMessage
519
+ end
520
+ end
521
+
522
+ # {urn:ws.rsys.com}ImageData
523
+ # image - SOAP::SOAPBase64
524
+ # imageName - SOAP::SOAPString
525
+ class ImageData
526
+ attr_accessor :image
527
+ attr_accessor :imageName
528
+
529
+ def initialize(image = nil, imageName = nil)
530
+ @image = image
531
+ @imageName = imageName
532
+ end
533
+ end
534
+
535
+ # {urn:ws.rsys.com}ContentResult
536
+ # content - SOAP::SOAPString
537
+ # format - ContentFormat
538
+ # characterEncoding - CharacterEncoding
539
+ class ContentResult
540
+ attr_accessor :content
541
+ attr_accessor :format
542
+ attr_accessor :characterEncoding
543
+
544
+ def initialize(content = nil, format = nil, characterEncoding = nil)
545
+ @content = content
546
+ @format = format
547
+ @characterEncoding = characterEncoding
548
+ end
549
+ end
550
+
551
+ # {urn:ws.rsys.com}DescribeObjectResult
552
+ # createdBy - SOAP::SOAPString
553
+ # createdDate - SOAP::SOAPDateTime
554
+ # lastModifiedBy - SOAP::SOAPString
555
+ # lastModifiedDate - SOAP::SOAPDateTime
556
+ # exceptionCode - ExceptionCode
557
+ # errorMessage - SOAP::SOAPString
558
+ # fields - Field
559
+ # objectType - FolderObjectType
560
+ class DescribeObjectResult
561
+ attr_accessor :createdBy
562
+ attr_accessor :createdDate
563
+ attr_accessor :lastModifiedBy
564
+ attr_accessor :lastModifiedDate
565
+ attr_accessor :exceptionCode
566
+ attr_accessor :errorMessage
567
+ attr_accessor :fields
568
+ attr_accessor :objectType
569
+ attr_reader :__xmlele_any
570
+
571
+ def set_any(elements)
572
+ @__xmlele_any = elements
573
+ end
574
+
575
+ def initialize(createdBy = nil, createdDate = nil, lastModifiedBy = nil, lastModifiedDate = nil, exceptionCode = nil, errorMessage = nil, fields = [], objectType = nil)
576
+ @createdBy = createdBy
577
+ @createdDate = createdDate
578
+ @lastModifiedBy = lastModifiedBy
579
+ @lastModifiedDate = lastModifiedDate
580
+ @exceptionCode = exceptionCode
581
+ @errorMessage = errorMessage
582
+ @fields = fields
583
+ @objectType = objectType
584
+ @__xmlele_any = nil
585
+ end
586
+ end
587
+
588
+ # {urn:ws.rsys.com}RunJobResult
589
+ # success - SOAP::SOAPBoolean
590
+ # errorMessage - SOAP::SOAPString
591
+ # jobRunId - SOAP::SOAPLong
592
+ class RunJobResult
593
+ attr_accessor :success
594
+ attr_accessor :errorMessage
595
+ attr_accessor :jobRunId
596
+
597
+ def initialize(success = nil, errorMessage = nil, jobRunId = nil)
598
+ @success = success
599
+ @errorMessage = errorMessage
600
+ @jobRunId = jobRunId
601
+ end
602
+ end
603
+
604
+ # {urn:ws.rsys.com}JobRunStatusResult
605
+ # jobRunStatus - JobRunStatus
606
+ # errorMessage - SOAP::SOAPString
607
+ # recordsProcessed - SOAP::SOAPLong
608
+ # recordsAdded - SOAP::SOAPLong
609
+ # recordsRejected - SOAP::SOAPLong
610
+ # recordsUpdated - SOAP::SOAPLong
611
+ # durationInSeconds - SOAP::SOAPLong
612
+ class JobRunStatusResult
613
+ attr_accessor :jobRunStatus
614
+ attr_accessor :errorMessage
615
+ attr_accessor :recordsProcessed
616
+ attr_accessor :recordsAdded
617
+ attr_accessor :recordsRejected
618
+ attr_accessor :recordsUpdated
619
+ attr_accessor :durationInSeconds
620
+
621
+ def initialize(jobRunStatus = nil, errorMessage = nil, recordsProcessed = nil, recordsAdded = nil, recordsRejected = nil, recordsUpdated = nil, durationInSeconds = nil)
622
+ @jobRunStatus = jobRunStatus
623
+ @errorMessage = errorMessage
624
+ @recordsProcessed = recordsProcessed
625
+ @recordsAdded = recordsAdded
626
+ @recordsRejected = recordsRejected
627
+ @recordsUpdated = recordsUpdated
628
+ @durationInSeconds = durationInSeconds
629
+ end
630
+ end
631
+
632
+ # {urn:ws.rsys.com}ConnectJob
633
+ # jobId - SOAP::SOAPLong
634
+ # jobName - SOAP::SOAPString
635
+ # jobType - SOAP::SOAPString
636
+ # nextJobRun - SOAP::SOAPDateTime
637
+ # lastJobRun - SOAP::SOAPDateTime
638
+ # scheduleType - SOAP::SOAPString
639
+ # active - SOAP::SOAPBoolean
640
+ # running - SOAP::SOAPBoolean
641
+ class ConnectJob
642
+ attr_accessor :jobId
643
+ attr_accessor :jobName
644
+ attr_accessor :jobType
645
+ attr_accessor :nextJobRun
646
+ attr_accessor :lastJobRun
647
+ attr_accessor :scheduleType
648
+ attr_accessor :active
649
+ attr_accessor :running
650
+
651
+ def initialize(jobId = nil, jobName = nil, jobType = nil, nextJobRun = nil, lastJobRun = nil, scheduleType = nil, active = nil, running = nil)
652
+ @jobId = jobId
653
+ @jobName = jobName
654
+ @jobType = jobType
655
+ @nextJobRun = nextJobRun
656
+ @lastJobRun = lastJobRun
657
+ @scheduleType = scheduleType
658
+ @active = active
659
+ @running = running
660
+ end
661
+ end
662
+
663
+ # {urn:ws.rsys.com}ConnectJobRun
664
+ # jobRunId - SOAP::SOAPLong
665
+ # jobName - SOAP::SOAPString
666
+ # jobStartTime - SOAP::SOAPDateTime
667
+ # durationInSeconds - SOAP::SOAPLong
668
+ # jobRunStatus - JobRunStatus
669
+ class ConnectJobRun
670
+ attr_accessor :jobRunId
671
+ attr_accessor :jobName
672
+ attr_accessor :jobStartTime
673
+ attr_accessor :durationInSeconds
674
+ attr_accessor :jobRunStatus
675
+
676
+ def initialize(jobRunId = nil, jobName = nil, jobStartTime = nil, durationInSeconds = nil, jobRunStatus = nil)
677
+ @jobRunId = jobRunId
678
+ @jobName = jobName
679
+ @jobStartTime = jobStartTime
680
+ @durationInSeconds = durationInSeconds
681
+ @jobRunStatus = jobRunStatus
682
+ end
683
+ end
684
+
685
+ # {urn:ws.rsys.com}ConnectJobRunLog
686
+ # logLevel - SOAP::SOAPString
687
+ # logTime - SOAP::SOAPDateTime
688
+ # logMessage - SOAP::SOAPString
689
+ class ConnectJobRunLog
690
+ attr_accessor :logLevel
691
+ attr_accessor :logTime
692
+ attr_accessor :logMessage
693
+
694
+ def initialize(logLevel = nil, logTime = nil, logMessage = nil)
695
+ @logLevel = logLevel
696
+ @logTime = logTime
697
+ @logMessage = logMessage
698
+ end
699
+ end
700
+
701
+ # {urn:ws.rsys.com}RecipientResult
702
+ # recipientId - SOAP::SOAPLong
703
+ # errorMessage - SOAP::SOAPString
704
+ class RecipientResult
705
+ attr_accessor :recipientId
706
+ attr_accessor :errorMessage
707
+
708
+ def initialize(recipientId = nil, errorMessage = nil)
709
+ @recipientId = recipientId
710
+ @errorMessage = errorMessage
711
+ end
712
+ end
713
+
714
+ # {urn:fault.ws.rsys.com}ApiFault
715
+ # exceptionCode - ExceptionCode
716
+ # exceptionMessage - SOAP::SOAPString
717
+ class ApiFault
718
+ attr_accessor :exceptionCode
719
+ attr_accessor :exceptionMessage
720
+
721
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
722
+ @exceptionCode = exceptionCode
723
+ @exceptionMessage = exceptionMessage
724
+ end
725
+ end
726
+
727
+ # {urn:ws.rsys.com}FolderObjectType
728
+ class FolderObjectType < ::String
729
+ ALL_TYPES = new("ALL_TYPES")
730
+ ATTACHMENT = new("ATTACHMENT")
731
+ CAMPAIGN = new("CAMPAIGN")
732
+ DOCUMENT = new("DOCUMENT")
733
+ FORM = new("FORM")
734
+ LINK_TABLE = new("LINK_TABLE")
735
+ LIST = new("LIST")
736
+ LIST_FILTER = new("LIST_FILTER")
737
+ PROGRAM = new("PROGRAM")
738
+ SUPPLEMENTAL_FILTER = new("SUPPLEMENTAL_FILTER")
739
+ SUPPLEMENTAL_JOIN = new("SUPPLEMENTAL_JOIN")
740
+ SUPPLEMENTAL_SQL = new("SUPPLEMENTAL_SQL")
741
+ SUPPLEMENTAL_TABLE = new("SUPPLEMENTAL_TABLE")
742
+ end
743
+
744
+ # {urn:ws.rsys.com}EmailFormat
745
+ class EmailFormat < ::String
746
+ HTML_FORMAT = new("HTML_FORMAT")
747
+ MULTIPART_FORMAT = new("MULTIPART_FORMAT")
748
+ NO_FORMAT = new("NO_FORMAT")
749
+ TEXT_FORMAT = new("TEXT_FORMAT")
750
+ end
751
+
752
+ # {urn:ws.rsys.com}RecipientLocale
753
+ class RecipientLocale < ::String
754
+ Cs = new("cs")
755
+ Da = new("da")
756
+ De = new("de")
757
+ El = new("el")
758
+ En = new("en")
759
+ En_US_ASCII = new("en_US_ASCII")
760
+ Es = new("es")
761
+ Et = new("et")
762
+ Fi = new("fi")
763
+ Fr = new("fr")
764
+ Hr = new("hr")
765
+ Hu = new("hu")
766
+ Is = new("is")
767
+ It = new("it")
768
+ Ja = new("ja")
769
+ Ko = new("ko")
770
+ Lt = new("lt")
771
+ Lv = new("lv")
772
+ Nl = new("nl")
773
+ Pl = new("pl")
774
+ Pt = new("pt")
775
+ Ro = new("ro")
776
+ Ru = new("ru")
777
+ Sk = new("sk")
778
+ Sl = new("sl")
779
+ Sq = new("sq")
780
+ Sv = new("sv")
781
+ Tr = new("tr")
782
+ Zh = new("zh")
783
+ Zh_TW = new("zh_TW")
784
+ end
785
+
786
+ # {urn:ws.rsys.com}CharacterEncoding
787
+ class CharacterEncoding < ::String
788
+ Big5 = new("big5")
789
+ Euc_kr = new("euc_kr")
790
+ Gb2312 = new("gb2312")
791
+ ISO_8859_1 = new("ISO_8859_1")
792
+ ISO_8859_2 = new("ISO_8859_2")
793
+ ISO_8859_7 = new("ISO_8859_7")
794
+ ISO_8859_9 = new("ISO_8859_9")
795
+ Koi8_r = new("koi8_r")
796
+ SJIS = new("SJIS")
797
+ UTF_8 = new("UTF_8")
798
+ Windows_1257 = new("windows_1257")
799
+ end
800
+
801
+ # {urn:ws.rsys.com}CampaignType
802
+ class CampaignType < ::String
803
+ EMAIL = new("EMAIL")
804
+ MOBILE = new("MOBILE")
805
+ end
806
+
807
+ # {urn:ws.rsys.com}UnsubscribeOption
808
+ class UnsubscribeOption < ::String
809
+ NO_OPTOUT_BUTTON = new("NO_OPTOUT_BUTTON")
810
+ OPTOUT_FORM = new("OPTOUT_FORM")
811
+ OPTOUT_SINGLE_CLICK = new("OPTOUT_SINGLE_CLICK")
812
+ end
813
+
814
+ # {urn:ws.rsys.com}AutoCloseOption
815
+ class AutoCloseOption < ::String
816
+ AUTO_CLOSE_ON_DATE = new("AUTO_CLOSE_ON_DATE")
817
+ AUTO_CLOSE_X_DAYS_AFTER_LAST_RESPONSE = new("AUTO_CLOSE_X_DAYS_AFTER_LAST_RESPONSE")
818
+ AUTO_CLOSE_X_DAYS_AFTER_LAUNCH = new("AUTO_CLOSE_X_DAYS_AFTER_LAUNCH")
819
+ NO_AUTO_CLOSE = new("NO_AUTO_CLOSE")
820
+ end
821
+
822
+ # {urn:ws.rsys.com}CampaignPurpose
823
+ class CampaignPurpose < ::String
824
+ PROMOTIONAL = new("PROMOTIONAL")
825
+ TRANSACTIONAL = new("TRANSACTIONAL")
826
+ end
827
+
828
+ # {urn:ws.rsys.com}ProofLaunchType
829
+ class ProofLaunchType < ::String
830
+ LAUNCH_TO_ADDRESS = new("LAUNCH_TO_ADDRESS")
831
+ LAUNCH_TO_ADDRESS_USING_PROOFLIST = new("LAUNCH_TO_ADDRESS_USING_PROOFLIST")
832
+ LAUNCH_TO_PROOFLIST = new("LAUNCH_TO_PROOFLIST")
833
+ end
834
+
835
+ # {urn:ws.rsys.com}ProgressChunk
836
+ class ProgressChunk < ::String
837
+ CHUNK_100K = new("CHUNK_100K")
838
+ CHUNK_10K = new("CHUNK_10K")
839
+ CHUNK_1M = new("CHUNK_1M")
840
+ CHUNK_500K = new("CHUNK_500K")
841
+ CHUNK_50K = new("CHUNK_50K")
842
+ end
843
+
844
+ # {urn:ws.rsys.com}FieldType
845
+ class FieldType < ::String
846
+ INTEGER = new("INTEGER")
847
+ NUMBER = new("NUMBER")
848
+ STR4000 = new("STR4000")
849
+ STR500 = new("STR500")
850
+ TIMESTAMP = new("TIMESTAMP")
851
+ end
852
+
853
+ # {urn:ws.rsys.com}UpdateOnMatch
854
+ class UpdateOnMatch < ::String
855
+ NO_UPDATE = new("NO_UPDATE")
856
+ REPLACE_ALL = new("REPLACE_ALL")
857
+ end
858
+
859
+ # {urn:ws.rsys.com}MatchOperator
860
+ class MatchOperator < ::String
861
+ AND = new("AND")
862
+ NONE = new("NONE")
863
+ OR = new("OR")
864
+ end
865
+
866
+ # {urn:ws.rsys.com}PermissionStatus
867
+ class PermissionStatus < ::String
868
+ OPTIN = new("OPTIN")
869
+ OPTOUT = new("OPTOUT")
870
+ end
871
+
872
+ # {urn:ws.rsys.com}QueryColumn
873
+ class QueryColumn < ::String
874
+ CUSTOMER_ID = new("CUSTOMER_ID")
875
+ EMAIL_ADDRESS = new("EMAIL_ADDRESS")
876
+ MOBILE_NUMBER = new("MOBILE_NUMBER")
877
+ RIID = new("RIID")
878
+ end
879
+
880
+ # {urn:ws.rsys.com}ContentFormat
881
+ class ContentFormat < ::String
882
+ HTML = new("HTML")
883
+ TEXT = new("TEXT")
884
+ end
885
+
886
+ # {urn:ws.rsys.com}JobRunStatus
887
+ class JobRunStatus < ::String
888
+ ABORTED = new("ABORTED")
889
+ FAILED = new("FAILED")
890
+ RUNNING = new("RUNNING")
891
+ SUCCEEDED = new("SUCCEEDED")
892
+ end
893
+
894
+ # {urn:fault.ws.rsys.com}ExceptionCode
895
+ class ExceptionCode < ::String
896
+ API_DISABLED_FOR_USER = new("API_DISABLED_FOR_USER")
897
+ AUTHENTICATION_FAILED = new("AUTHENTICATION_FAILED")
898
+ CAMPAIGN_ALREADY_EXISTS = new("CAMPAIGN_ALREADY_EXISTS")
899
+ CAMPAIGN_IS_INVALID = new("CAMPAIGN_IS_INVALID")
900
+ CAMPAIGN_LAUNCH_IN_PROGRESS = new("CAMPAIGN_LAUNCH_IN_PROGRESS")
901
+ CAMPAIGN_LAUNCH_NOT_SCHEDULED = new("CAMPAIGN_LAUNCH_NOT_SCHEDULED")
902
+ CAMPAIGN_LAUNCH_NOT_UNSCHEDULED = new("CAMPAIGN_LAUNCH_NOT_UNSCHEDULED")
903
+ CAMPAIGN_NOT_APPROVED_FOR_LAUNCH = new("CAMPAIGN_NOT_APPROVED_FOR_LAUNCH")
904
+ CAMPAIGN_NOT_FOUND = new("CAMPAIGN_NOT_FOUND")
905
+ CAMPAIGN_NOT_LISTENING = new("CAMPAIGN_NOT_LISTENING")
906
+ CANNOT_RUN_CONNECT_JOB = new("CANNOT_RUN_CONNECT_JOB")
907
+ CLIENT_CERTIFICATE_EXPIRED = new("CLIENT_CERTIFICATE_EXPIRED")
908
+ CLIENT_CERTIFICATE_NOT_FOUND = new("CLIENT_CERTIFICATE_NOT_FOUND")
909
+ CLIENT_CERTIFICATE_NOT_YET_VALID = new("CLIENT_CERTIFICATE_NOT_YET_VALID")
910
+ CONNECT_DISABLED_FOR_USER = new("CONNECT_DISABLED_FOR_USER")
911
+ CONNECT_JOB_ALREADY_RUNNING = new("CONNECT_JOB_ALREADY_RUNNING")
912
+ CONNECT_JOB_INACTIVE = new("CONNECT_JOB_INACTIVE")
913
+ CONNECT_JOB_NOT_FOUND = new("CONNECT_JOB_NOT_FOUND")
914
+ CONNECT_JOB_RUN_LOG_NOT_FOUND = new("CONNECT_JOB_RUN_LOG_NOT_FOUND")
915
+ CONNECT_JOB_RUN_NOT_FOUND = new("CONNECT_JOB_RUN_NOT_FOUND")
916
+ CUSTOM_EVENT_NOT_FOUND = new("CUSTOM_EVENT_NOT_FOUND")
917
+ DOCUMENT_ALREADY_EXISTS = new("DOCUMENT_ALREADY_EXISTS")
918
+ DOCUMENT_NOT_FOUND = new("DOCUMENT_NOT_FOUND")
919
+ FOLDER_ALREADY_EXISTS = new("FOLDER_ALREADY_EXISTS")
920
+ FOLDER_NOT_FOUND = new("FOLDER_NOT_FOUND")
921
+ IMAGES_NOT_FOUND = new("IMAGES_NOT_FOUND")
922
+ INSUFFICIENT_ACCESS = new("INSUFFICIENT_ACCESS")
923
+ INVALID_AUTHENTICATION_OPTION = new("INVALID_AUTHENTICATION_OPTION")
924
+ INVALID_DATE = new("INVALID_DATE")
925
+ INVALID_FIELD_NAME = new("INVALID_FIELD_NAME")
926
+ INVALID_NUMBER = new("INVALID_NUMBER")
927
+ INVALID_OBJECT = new("INVALID_OBJECT")
928
+ INVALID_PARAMETER = new("INVALID_PARAMETER")
929
+ INVALID_PASSWORD = new("INVALID_PASSWORD")
930
+ INVALID_SESSION_ID = new("INVALID_SESSION_ID")
931
+ INVALID_SOAP_HEADER = new("INVALID_SOAP_HEADER")
932
+ INVALID_USER_NAME = new("INVALID_USER_NAME")
933
+ LINK_TABLE_ALREADY_EXISTS = new("LINK_TABLE_ALREADY_EXISTS")
934
+ LINK_TABLE_NOT_FOUND = new("LINK_TABLE_NOT_FOUND")
935
+ LIST_ALREADY_EXISTS = new("LIST_ALREADY_EXISTS")
936
+ LIST_NOT_FOUND = new("LIST_NOT_FOUND")
937
+ MAX_ATTACHMENT_SIZE_EXCEEDED = new("MAX_ATTACHMENT_SIZE_EXCEEDED")
938
+ MOBILE_CAMPAIGN_DISABLED_FOR_USER = new("MOBILE_CAMPAIGN_DISABLED_FOR_USER")
939
+ MULTIPLE_OBJECTS_FOUND = new("MULTIPLE_OBJECTS_FOUND")
940
+ NO_CAMPAIGNS_IN_THIS_FOLDER = new("NO_CAMPAIGNS_IN_THIS_FOLDER")
941
+ NO_CONNECT_JOBS_FOUND = new("NO_CONNECT_JOBS_FOUND")
942
+ NO_LAUNCHES_FOR_THIS_CAMPAIGN = new("NO_LAUNCHES_FOR_THIS_CAMPAIGN")
943
+ NO_OBJECTS_IN_THIS_FOLDER = new("NO_OBJECTS_IN_THIS_FOLDER")
944
+ NO_OPEN_LAUNCHES_FOR_THIS_ACCOUNT = new("NO_OPEN_LAUNCHES_FOR_THIS_ACCOUNT")
945
+ OBJECT_ALREADY_EXISTS = new("OBJECT_ALREADY_EXISTS")
946
+ OBJECT_NOT_FOUND = new("OBJECT_NOT_FOUND")
947
+ OPERATION_NOT_SUPPORTED = new("OPERATION_NOT_SUPPORTED")
948
+ PASSWORD_EXPIRED = new("PASSWORD_EXPIRED")
949
+ PASSWORD_LOCKOUT = new("PASSWORD_LOCKOUT")
950
+ PROFILE_EXTENSION_NOT_FOUND = new("PROFILE_EXTENSION_NOT_FOUND")
951
+ PROOF_LIST_NOT_FOUND = new("PROOF_LIST_NOT_FOUND")
952
+ RECIPIENT_LIMIT_EXCEEDED = new("RECIPIENT_LIMIT_EXCEEDED")
953
+ RECORD_LIMIT_EXCEEDED = new("RECORD_LIMIT_EXCEEDED")
954
+ RECORD_NOT_FOUND = new("RECORD_NOT_FOUND")
955
+ REQUEST_LIMIT_EXCEEDED = new("REQUEST_LIMIT_EXCEEDED")
956
+ SCHEDULED_LAUNCH_NOT_FOUND = new("SCHEDULED_LAUNCH_NOT_FOUND")
957
+ SERVER_CERTIFICATE_EXPIRED = new("SERVER_CERTIFICATE_EXPIRED")
958
+ SERVER_CERTIFICATE_NOT_FOUND = new("SERVER_CERTIFICATE_NOT_FOUND")
959
+ SERVER_CERTIFICATE_NOT_YET_VALID = new("SERVER_CERTIFICATE_NOT_YET_VALID")
960
+ TABLE_ALREADY_EXISTS = new("TABLE_ALREADY_EXISTS")
961
+ TABLE_NOT_FOUND = new("TABLE_NOT_FOUND")
962
+ UNEXPECTED_EXCEPTION = new("UNEXPECTED_EXCEPTION")
963
+ end
964
+
965
+ # {urn:ws.rsys.com}login
966
+ # username - SOAP::SOAPString
967
+ # password - SOAP::SOAPString
968
+ class Login
969
+ attr_accessor :username
970
+ attr_accessor :password
971
+
972
+ def initialize(username = nil, password = nil)
973
+ @username = username
974
+ @password = password
975
+ end
976
+ end
977
+
978
+ # {urn:ws.rsys.com}loginResponse
979
+ # result - LoginResult
980
+ class LoginResponse
981
+ attr_accessor :result
982
+
983
+ def initialize(result = nil)
984
+ @result = result
985
+ end
986
+ end
987
+
988
+ # {urn:ws.rsys.com}authenticateServer
989
+ # username - SOAP::SOAPString
990
+ # clientChallenge - SOAP::SOAPByte
991
+ class AuthenticateServer
992
+ attr_accessor :username
993
+ attr_accessor :clientChallenge
994
+
995
+ def initialize(username = nil, clientChallenge = [])
996
+ @username = username
997
+ @clientChallenge = clientChallenge
998
+ end
999
+ end
1000
+
1001
+ # {urn:ws.rsys.com}authenticateServerResponse
1002
+ # result - ServerAuthResult
1003
+ class AuthenticateServerResponse
1004
+ attr_accessor :result
1005
+
1006
+ def initialize(result = nil)
1007
+ @result = result
1008
+ end
1009
+ end
1010
+
1011
+ # {urn:ws.rsys.com}loginWithCertificate
1012
+ class LoginWithCertificate < ::Array
1013
+ end
1014
+
1015
+ # {urn:ws.rsys.com}loginWithCertificateResponse
1016
+ # result - LoginResult
1017
+ class LoginWithCertificateResponse
1018
+ attr_accessor :result
1019
+
1020
+ def initialize(result = nil)
1021
+ @result = result
1022
+ end
1023
+ end
1024
+
1025
+ # {urn:ws.rsys.com}logout
1026
+ class Logout
1027
+ def initialize
1028
+ end
1029
+ end
1030
+
1031
+ # {urn:ws.rsys.com}logoutResponse
1032
+ # result - SOAP::SOAPBoolean
1033
+ class LogoutResponse
1034
+ attr_accessor :result
1035
+
1036
+ def initialize(result = nil)
1037
+ @result = result
1038
+ end
1039
+ end
1040
+
1041
+ # {urn:ws.rsys.com}createFolder
1042
+ # folderName - SOAP::SOAPString
1043
+ class CreateFolder
1044
+ attr_accessor :folderName
1045
+
1046
+ def initialize(folderName = nil)
1047
+ @folderName = folderName
1048
+ end
1049
+ end
1050
+
1051
+ # {urn:ws.rsys.com}createFolderResponse
1052
+ # result - SOAP::SOAPBoolean
1053
+ class CreateFolderResponse
1054
+ attr_accessor :result
1055
+
1056
+ def initialize(result = nil)
1057
+ @result = result
1058
+ end
1059
+ end
1060
+
1061
+ # {urn:ws.rsys.com}deleteFolder
1062
+ # folderName - SOAP::SOAPString
1063
+ class DeleteFolder
1064
+ attr_accessor :folderName
1065
+
1066
+ def initialize(folderName = nil)
1067
+ @folderName = folderName
1068
+ end
1069
+ end
1070
+
1071
+ # {urn:ws.rsys.com}deleteFolderResponse
1072
+ # result - SOAP::SOAPBoolean
1073
+ class DeleteFolderResponse
1074
+ attr_accessor :result
1075
+
1076
+ def initialize(result = nil)
1077
+ @result = result
1078
+ end
1079
+ end
1080
+
1081
+ # {urn:ws.rsys.com}listFolders
1082
+ class ListFolders
1083
+ def initialize
1084
+ end
1085
+ end
1086
+
1087
+ # {urn:ws.rsys.com}listFoldersResponse
1088
+ class ListFoldersResponse < ::Array
1089
+ end
1090
+
1091
+ # {urn:ws.rsys.com}listFolderObjects
1092
+ # folderName - SOAP::SOAPString
1093
+ # type - FolderObjectType
1094
+ class ListFolderObjects
1095
+ attr_accessor :folderName
1096
+ attr_accessor :type
1097
+
1098
+ def initialize(folderName = nil, type = nil)
1099
+ @folderName = folderName
1100
+ @type = type
1101
+ end
1102
+ end
1103
+
1104
+ # {urn:ws.rsys.com}listFolderObjectsResponse
1105
+ class ListFolderObjectsResponse < ::Array
1106
+ end
1107
+
1108
+ class SessionHeader < SOAP::Header::SimpleHandler
1109
+ NAMESPACE = 'http://ws.rsys.com'
1110
+
1111
+ attr_accessor :session_id
1112
+
1113
+ def initialize(session_id)
1114
+ @session_id = session_id
1115
+ super(XSD::QName.new(NAMESPACE, 'Security'))
1116
+ end
1117
+
1118
+ def on_simple_outbound
1119
+ { sessiondId: @session_id }
1120
+ end
1121
+ end
1122
+
1123
+ # {urn:ws.rsys.com}AuthSessionHeader
1124
+ # authSessionId - SOAP::SOAPString
1125
+ class AuthSessionHeader
1126
+ attr_accessor :authSessionId
1127
+
1128
+ def initialize(authSessionId = nil)
1129
+ @authSessionId = authSessionId
1130
+ end
1131
+ end
1132
+
1133
+ # {urn:ws.rsys.com}triggerCampaignMessage
1134
+ # campaign - InteractObject
1135
+ # recipientData - RecipientData
1136
+ class TriggerCampaignMessage
1137
+ attr_accessor :campaign
1138
+ attr_accessor :recipientData
1139
+
1140
+ def initialize(campaign = nil, recipientData = [])
1141
+ @campaign = campaign
1142
+ @recipientData = recipientData
1143
+ end
1144
+ end
1145
+
1146
+ # {urn:ws.rsys.com}triggerCampaignMessageResponse
1147
+ class TriggerCampaignMessageResponse < ::Array
1148
+ end
1149
+
1150
+ # {urn:ws.rsys.com}triggerCustomEvent
1151
+ # customEvent - CustomEvent
1152
+ # recipientData - RecipientData
1153
+ class TriggerCustomEvent
1154
+ attr_accessor :customEvent
1155
+ attr_accessor :recipientData
1156
+
1157
+ def initialize(customEvent = nil, recipientData = [])
1158
+ @customEvent = customEvent
1159
+ @recipientData = recipientData
1160
+ end
1161
+ end
1162
+
1163
+ # {urn:ws.rsys.com}triggerCustomEventResponse
1164
+ class TriggerCustomEventResponse < ::Array
1165
+ end
1166
+
1167
+ # {urn:ws.rsys.com}createCampaign
1168
+ # campaign - InteractObject
1169
+ # campaignType - CampaignType
1170
+ class CreateCampaign
1171
+ attr_accessor :campaign
1172
+ attr_accessor :campaignType
1173
+
1174
+ def initialize(campaign = nil, campaignType = nil)
1175
+ @campaign = campaign
1176
+ @campaignType = campaignType
1177
+ end
1178
+ end
1179
+
1180
+ # {urn:ws.rsys.com}createCampaignResponse
1181
+ # result - SOAP::SOAPLong
1182
+ class CreateCampaignResponse
1183
+ attr_accessor :result
1184
+
1185
+ def initialize(result = nil)
1186
+ @result = result
1187
+ end
1188
+ end
1189
+
1190
+ # {urn:ws.rsys.com}setCampaignProperties
1191
+ # campaignProperties - CampaignProperties
1192
+ class SetCampaignProperties
1193
+ attr_accessor :campaignProperties
1194
+
1195
+ def initialize(campaignProperties = nil)
1196
+ @campaignProperties = campaignProperties
1197
+ end
1198
+ end
1199
+
1200
+ # {urn:ws.rsys.com}setCampaignPropertiesResponse
1201
+ # result - SOAP::SOAPBoolean
1202
+ class SetCampaignPropertiesResponse
1203
+ attr_accessor :result
1204
+
1205
+ def initialize(result = nil)
1206
+ @result = result
1207
+ end
1208
+ end
1209
+
1210
+ # {urn:ws.rsys.com}getCampaignProperties
1211
+ # campaign - InteractObject
1212
+ # campaignId - SOAP::SOAPLong
1213
+ class GetCampaignProperties
1214
+ attr_accessor :campaign
1215
+ attr_accessor :campaignId
1216
+
1217
+ def initialize(campaign = nil, campaignId = nil)
1218
+ @campaign = campaign
1219
+ @campaignId = campaignId
1220
+ end
1221
+ end
1222
+
1223
+ # {urn:ws.rsys.com}getCampaignPropertiesResponse
1224
+ # result - CampaignProperties
1225
+ class GetCampaignPropertiesResponse
1226
+ attr_accessor :result
1227
+
1228
+ def initialize(result = nil)
1229
+ @result = result
1230
+ end
1231
+ end
1232
+
1233
+ # {urn:ws.rsys.com}launchCampaign
1234
+ # campaign - InteractObject
1235
+ # proofLaunchOptions - ProofLaunchOptions
1236
+ # launchPreferences - LaunchPreferences
1237
+ class LaunchCampaign
1238
+ attr_accessor :campaign
1239
+ attr_accessor :proofLaunchOptions
1240
+ attr_accessor :launchPreferences
1241
+
1242
+ def initialize(campaign = nil, proofLaunchOptions = nil, launchPreferences = nil)
1243
+ @campaign = campaign
1244
+ @proofLaunchOptions = proofLaunchOptions
1245
+ @launchPreferences = launchPreferences
1246
+ end
1247
+ end
1248
+
1249
+ # {urn:ws.rsys.com}launchCampaignResponse
1250
+ # result - LaunchResult
1251
+ class LaunchCampaignResponse
1252
+ attr_accessor :result
1253
+
1254
+ def initialize(result = nil)
1255
+ @result = result
1256
+ end
1257
+ end
1258
+
1259
+ # {urn:ws.rsys.com}scheduleCampaignLaunch
1260
+ # campaign - InteractObject
1261
+ # proofLaunchOptions - ProofLaunchOptions
1262
+ # launchPreferences - LaunchPreferences
1263
+ # scheduleDate - SOAP::SOAPDateTime
1264
+ class ScheduleCampaignLaunch
1265
+ attr_accessor :campaign
1266
+ attr_accessor :proofLaunchOptions
1267
+ attr_accessor :launchPreferences
1268
+ attr_accessor :scheduleDate
1269
+
1270
+ def initialize(campaign = nil, proofLaunchOptions = nil, launchPreferences = nil, scheduleDate = nil)
1271
+ @campaign = campaign
1272
+ @proofLaunchOptions = proofLaunchOptions
1273
+ @launchPreferences = launchPreferences
1274
+ @scheduleDate = scheduleDate
1275
+ end
1276
+ end
1277
+
1278
+ # {urn:ws.rsys.com}scheduleCampaignLaunchResponse
1279
+ # result - SOAP::SOAPBoolean
1280
+ class ScheduleCampaignLaunchResponse
1281
+ attr_accessor :result
1282
+
1283
+ def initialize(result = nil)
1284
+ @result = result
1285
+ end
1286
+ end
1287
+
1288
+ # {urn:ws.rsys.com}getLaunchStatus
1289
+ class GetLaunchStatus < ::Array
1290
+ end
1291
+
1292
+ # {urn:ws.rsys.com}getLaunchStatusResponse
1293
+ class GetLaunchStatusResponse < ::Array
1294
+ end
1295
+
1296
+ # {urn:ws.rsys.com}getCampaignId
1297
+ # campaign - InteractObject
1298
+ class GetCampaignId
1299
+ attr_accessor :campaign
1300
+
1301
+ def initialize(campaign = nil)
1302
+ @campaign = campaign
1303
+ end
1304
+ end
1305
+
1306
+ # {urn:ws.rsys.com}getCampaignIdResponse
1307
+ # result - SOAP::SOAPLong
1308
+ class GetCampaignIdResponse
1309
+ attr_accessor :result
1310
+
1311
+ def initialize(result = nil)
1312
+ @result = result
1313
+ end
1314
+ end
1315
+
1316
+ # {urn:ws.rsys.com}deleteCampaign
1317
+ # campaign - InteractObject
1318
+ class DeleteCampaign
1319
+ attr_accessor :campaign
1320
+
1321
+ def initialize(campaign = nil)
1322
+ @campaign = campaign
1323
+ end
1324
+ end
1325
+
1326
+ # {urn:ws.rsys.com}deleteCampaignResponse
1327
+ # result - SOAP::SOAPBoolean
1328
+ class DeleteCampaignResponse
1329
+ attr_accessor :result
1330
+
1331
+ def initialize(result = nil)
1332
+ @result = result
1333
+ end
1334
+ end
1335
+
1336
+ # {urn:ws.rsys.com}getLaunchesForCampaign
1337
+ # campaign - InteractObject
1338
+ # campaignId - SOAP::SOAPLong
1339
+ # fromDate - SOAP::SOAPDateTime
1340
+ # toDate - SOAP::SOAPDateTime
1341
+ class GetLaunchesForCampaign
1342
+ attr_accessor :campaign
1343
+ attr_accessor :campaignId
1344
+ attr_accessor :fromDate
1345
+ attr_accessor :toDate
1346
+
1347
+ def initialize(campaign = nil, campaignId = nil, fromDate = nil, toDate = nil)
1348
+ @campaign = campaign
1349
+ @campaignId = campaignId
1350
+ @fromDate = fromDate
1351
+ @toDate = toDate
1352
+ end
1353
+ end
1354
+
1355
+ # {urn:ws.rsys.com}getLaunchesForCampaignResponse
1356
+ class GetLaunchesForCampaignResponse < ::Array
1357
+ end
1358
+
1359
+ # {urn:ws.rsys.com}getOpenLaunches
1360
+ class GetOpenLaunches
1361
+ def initialize
1362
+ end
1363
+ end
1364
+
1365
+ # {urn:ws.rsys.com}getOpenLaunchesResponse
1366
+ class GetOpenLaunchesResponse < ::Array
1367
+ end
1368
+
1369
+ # {urn:ws.rsys.com}closeCampaign
1370
+ # campaign - InteractObject
1371
+ # campaignId - SOAP::SOAPLong
1372
+ class CloseCampaign
1373
+ attr_accessor :campaign
1374
+ attr_accessor :campaignId
1375
+
1376
+ def initialize(campaign = nil, campaignId = nil)
1377
+ @campaign = campaign
1378
+ @campaignId = campaignId
1379
+ end
1380
+ end
1381
+
1382
+ # {urn:ws.rsys.com}closeCampaignResponse
1383
+ # result - SOAP::SOAPBoolean
1384
+ class CloseCampaignResponse
1385
+ attr_accessor :result
1386
+
1387
+ def initialize(result = nil)
1388
+ @result = result
1389
+ end
1390
+ end
1391
+
1392
+ # {urn:ws.rsys.com}unscheduleCampaignLaunch
1393
+ # campaign - InteractObject
1394
+ # campaignId - SOAP::SOAPLong
1395
+ # scheduleDate - SOAP::SOAPDateTime
1396
+ class UnscheduleCampaignLaunch
1397
+ attr_accessor :campaign
1398
+ attr_accessor :campaignId
1399
+ attr_accessor :scheduleDate
1400
+
1401
+ def initialize(campaign = nil, campaignId = nil, scheduleDate = nil)
1402
+ @campaign = campaign
1403
+ @campaignId = campaignId
1404
+ @scheduleDate = scheduleDate
1405
+ end
1406
+ end
1407
+
1408
+ # {urn:ws.rsys.com}unscheduleCampaignLaunchResponse
1409
+ # result - SOAP::SOAPBoolean
1410
+ class UnscheduleCampaignLaunchResponse
1411
+ attr_accessor :result
1412
+
1413
+ def initialize(result = nil)
1414
+ @result = result
1415
+ end
1416
+ end
1417
+
1418
+ # {urn:ws.rsys.com}createList
1419
+ # list - InteractObject
1420
+ # description - SOAP::SOAPString
1421
+ # fields - Field
1422
+ class CreateList
1423
+ attr_accessor :list
1424
+ attr_accessor :description
1425
+ attr_accessor :fields
1426
+
1427
+ def initialize(list = nil, description = nil, fields = [])
1428
+ @list = list
1429
+ @description = description
1430
+ @fields = fields
1431
+ end
1432
+ end
1433
+
1434
+ # {urn:ws.rsys.com}createListResponse
1435
+ # result - SOAP::SOAPBoolean
1436
+ class CreateListResponse
1437
+ attr_accessor :result
1438
+
1439
+ def initialize(result = nil)
1440
+ @result = result
1441
+ end
1442
+ end
1443
+
1444
+ # {urn:ws.rsys.com}changeListSchema
1445
+ # list - InteractObject
1446
+ # addFields - Field
1447
+ # removeFields - SOAP::SOAPString
1448
+ # renameFields - SOAP::SOAPString
1449
+ class ChangeListSchema
1450
+ attr_accessor :list
1451
+ attr_accessor :addFields
1452
+ attr_accessor :removeFields
1453
+ attr_accessor :renameFields
1454
+
1455
+ def initialize(list = nil, addFields = [], removeFields = [], renameFields = [])
1456
+ @list = list
1457
+ @addFields = addFields
1458
+ @removeFields = removeFields
1459
+ @renameFields = renameFields
1460
+ end
1461
+ end
1462
+
1463
+ # {urn:ws.rsys.com}changeListSchemaResponse
1464
+ # result - SOAP::SOAPBoolean
1465
+ class ChangeListSchemaResponse
1466
+ attr_accessor :result
1467
+
1468
+ def initialize(result = nil)
1469
+ @result = result
1470
+ end
1471
+ end
1472
+
1473
+ # {urn:ws.rsys.com}deleteList
1474
+ # list - InteractObject
1475
+ class DeleteList
1476
+ attr_accessor :list
1477
+
1478
+ def initialize(list = nil)
1479
+ @list = list
1480
+ end
1481
+ end
1482
+
1483
+ # {urn:ws.rsys.com}deleteListResponse
1484
+ # result - SOAP::SOAPBoolean
1485
+ class DeleteListResponse
1486
+ attr_accessor :result
1487
+
1488
+ def initialize(result = nil)
1489
+ @result = result
1490
+ end
1491
+ end
1492
+
1493
+ # {urn:ws.rsys.com}mergeListMembers
1494
+ # list - InteractObject
1495
+ # recordData - RecordData
1496
+ # mergeRule - ListMergeRule
1497
+ class MergeListMembers
1498
+ attr_accessor :list
1499
+ attr_accessor :recordData
1500
+ attr_accessor :mergeRule
1501
+
1502
+ def initialize(list = nil, recordData = nil, mergeRule = nil)
1503
+ @list = list
1504
+ @recordData = recordData
1505
+ @mergeRule = mergeRule
1506
+ end
1507
+ end
1508
+
1509
+ # {urn:ws.rsys.com}mergeListMembersResponse
1510
+ # result - MergeResult
1511
+ class MergeListMembersResponse
1512
+ attr_accessor :result
1513
+
1514
+ def initialize(result = nil)
1515
+ @result = result
1516
+ end
1517
+ end
1518
+
1519
+ # {urn:ws.rsys.com}retrieveListMembers
1520
+ # list - InteractObject
1521
+ # queryColumn - QueryColumn
1522
+ # fieldList - SOAP::SOAPString
1523
+ # idsToRetrieve - SOAP::SOAPString
1524
+ class RetrieveListMembers
1525
+ attr_accessor :list
1526
+ attr_accessor :queryColumn
1527
+ attr_accessor :fieldList
1528
+ attr_accessor :idsToRetrieve
1529
+
1530
+ def initialize(list = nil, queryColumn = nil, fieldList = [], idsToRetrieve = [])
1531
+ @list = list
1532
+ @queryColumn = queryColumn
1533
+ @fieldList = fieldList
1534
+ @idsToRetrieve = idsToRetrieve
1535
+ end
1536
+ end
1537
+
1538
+ # {urn:ws.rsys.com}retrieveListMembersResponse
1539
+ # result - RetrieveResult
1540
+ class RetrieveListMembersResponse
1541
+ attr_accessor :result
1542
+
1543
+ def initialize(result = nil)
1544
+ @result = result
1545
+ end
1546
+ end
1547
+
1548
+ # {urn:ws.rsys.com}deleteListMembers
1549
+ # list - InteractObject
1550
+ # queryColumn - QueryColumn
1551
+ # idsToDelete - SOAP::SOAPString
1552
+ class DeleteListMembers
1553
+ attr_accessor :list
1554
+ attr_accessor :queryColumn
1555
+ attr_accessor :idsToDelete
1556
+
1557
+ def initialize(list = nil, queryColumn = nil, idsToDelete = [])
1558
+ @list = list
1559
+ @queryColumn = queryColumn
1560
+ @idsToDelete = idsToDelete
1561
+ end
1562
+ end
1563
+
1564
+ # {urn:ws.rsys.com}deleteListMembersResponse
1565
+ class DeleteListMembersResponse < ::Array
1566
+ end
1567
+
1568
+ # {urn:ws.rsys.com}getUpdated
1569
+ # list - InteractObject
1570
+ # startTime - SOAP::SOAPDateTime
1571
+ # endTime - SOAP::SOAPDateTime
1572
+ class GetUpdated
1573
+ attr_accessor :list
1574
+ attr_accessor :startTime
1575
+ attr_accessor :endTime
1576
+
1577
+ def initialize(list = nil, startTime = nil, endTime = nil)
1578
+ @list = list
1579
+ @startTime = startTime
1580
+ @endTime = endTime
1581
+ end
1582
+ end
1583
+
1584
+ # {urn:ws.rsys.com}getUpdatedResponse
1585
+ # result - GetUpdatedResult
1586
+ class GetUpdatedResponse
1587
+ attr_accessor :result
1588
+
1589
+ def initialize(result = nil)
1590
+ @result = result
1591
+ end
1592
+ end
1593
+
1594
+ # {urn:ws.rsys.com}createTable
1595
+ # table - InteractObject
1596
+ # fields - Field
1597
+ class CreateTable
1598
+ attr_accessor :table
1599
+ attr_accessor :fields
1600
+
1601
+ def initialize(table = nil, fields = [])
1602
+ @table = table
1603
+ @fields = fields
1604
+ end
1605
+ end
1606
+
1607
+ # {urn:ws.rsys.com}createTableResponse
1608
+ # result - SOAP::SOAPBoolean
1609
+ class CreateTableResponse
1610
+ attr_accessor :result
1611
+
1612
+ def initialize(result = nil)
1613
+ @result = result
1614
+ end
1615
+ end
1616
+
1617
+ # {urn:ws.rsys.com}deleteTable
1618
+ # table - InteractObject
1619
+ class DeleteTable
1620
+ attr_accessor :table
1621
+
1622
+ def initialize(table = nil)
1623
+ @table = table
1624
+ end
1625
+ end
1626
+
1627
+ # {urn:ws.rsys.com}deleteTableResponse
1628
+ # result - SOAP::SOAPBoolean
1629
+ class DeleteTableResponse
1630
+ attr_accessor :result
1631
+
1632
+ def initialize(result = nil)
1633
+ @result = result
1634
+ end
1635
+ end
1636
+
1637
+ # {urn:ws.rsys.com}changeTableSchema
1638
+ # table - InteractObject
1639
+ # addFields - Field
1640
+ # removeFields - SOAP::SOAPString
1641
+ class ChangeTableSchema
1642
+ attr_accessor :table
1643
+ attr_accessor :addFields
1644
+ attr_accessor :removeFields
1645
+
1646
+ def initialize(table = nil, addFields = [], removeFields = [])
1647
+ @table = table
1648
+ @addFields = addFields
1649
+ @removeFields = removeFields
1650
+ end
1651
+ end
1652
+
1653
+ # {urn:ws.rsys.com}changeTableSchemaResponse
1654
+ # result - SOAP::SOAPBoolean
1655
+ class ChangeTableSchemaResponse
1656
+ attr_accessor :result
1657
+
1658
+ def initialize(result = nil)
1659
+ @result = result
1660
+ end
1661
+ end
1662
+
1663
+ # {urn:ws.rsys.com}mergeTableRecords
1664
+ # table - InteractObject
1665
+ # recordData - RecordData
1666
+ # matchColumnNames - SOAP::SOAPString
1667
+ class MergeTableRecords
1668
+ attr_accessor :table
1669
+ attr_accessor :recordData
1670
+ attr_accessor :matchColumnNames
1671
+
1672
+ def initialize(table = nil, recordData = nil, matchColumnNames = [])
1673
+ @table = table
1674
+ @recordData = recordData
1675
+ @matchColumnNames = matchColumnNames
1676
+ end
1677
+ end
1678
+
1679
+ # {urn:ws.rsys.com}mergeTableRecordsResponse
1680
+ # result - MergeResult
1681
+ class MergeTableRecordsResponse
1682
+ attr_accessor :result
1683
+
1684
+ def initialize(result = nil)
1685
+ @result = result
1686
+ end
1687
+ end
1688
+
1689
+ # {urn:ws.rsys.com}retrieveTableRecords
1690
+ # table - InteractObject
1691
+ # queryColumn - SOAP::SOAPString
1692
+ # fieldList - SOAP::SOAPString
1693
+ # idsToRetrieve - SOAP::SOAPString
1694
+ class RetrieveTableRecords
1695
+ attr_accessor :table
1696
+ attr_accessor :queryColumn
1697
+ attr_accessor :fieldList
1698
+ attr_accessor :idsToRetrieve
1699
+
1700
+ def initialize(table = nil, queryColumn = nil, fieldList = [], idsToRetrieve = [])
1701
+ @table = table
1702
+ @queryColumn = queryColumn
1703
+ @fieldList = fieldList
1704
+ @idsToRetrieve = idsToRetrieve
1705
+ end
1706
+ end
1707
+
1708
+ # {urn:ws.rsys.com}retrieveTableRecordsResponse
1709
+ # result - RetrieveResult
1710
+ class RetrieveTableRecordsResponse
1711
+ attr_accessor :result
1712
+
1713
+ def initialize(result = nil)
1714
+ @result = result
1715
+ end
1716
+ end
1717
+
1718
+ # {urn:ws.rsys.com}deleteTableRecords
1719
+ # table - InteractObject
1720
+ # queryColumn - SOAP::SOAPString
1721
+ # idsToDelete - SOAP::SOAPString
1722
+ class DeleteTableRecords
1723
+ attr_accessor :table
1724
+ attr_accessor :queryColumn
1725
+ attr_accessor :idsToDelete
1726
+
1727
+ def initialize(table = nil, queryColumn = nil, idsToDelete = [])
1728
+ @table = table
1729
+ @queryColumn = queryColumn
1730
+ @idsToDelete = idsToDelete
1731
+ end
1732
+ end
1733
+
1734
+ # {urn:ws.rsys.com}deleteTableRecordsResponse
1735
+ class DeleteTableRecordsResponse < ::Array
1736
+ end
1737
+
1738
+ # {urn:ws.rsys.com}truncateTable
1739
+ # table - InteractObject
1740
+ class TruncateTable
1741
+ attr_accessor :table
1742
+
1743
+ def initialize(table = nil)
1744
+ @table = table
1745
+ end
1746
+ end
1747
+
1748
+ # {urn:ws.rsys.com}truncateTableResponse
1749
+ # result - SOAP::SOAPBoolean
1750
+ class TruncateTableResponse
1751
+ attr_accessor :result
1752
+
1753
+ def initialize(result = nil)
1754
+ @result = result
1755
+ end
1756
+ end
1757
+
1758
+ # {urn:ws.rsys.com}createSQLView
1759
+ # sqlView - InteractObject
1760
+ # tables - InteractObject
1761
+ # sqlQuery - SOAP::SOAPString
1762
+ # dataExtractionKey - SOAP::SOAPString
1763
+ class CreateSQLView
1764
+ attr_accessor :sqlView
1765
+ attr_accessor :tables
1766
+ attr_accessor :sqlQuery
1767
+ attr_accessor :dataExtractionKey
1768
+
1769
+ def initialize(sqlView = nil, tables = [], sqlQuery = nil, dataExtractionKey = nil)
1770
+ @sqlView = sqlView
1771
+ @tables = tables
1772
+ @sqlQuery = sqlQuery
1773
+ @dataExtractionKey = dataExtractionKey
1774
+ end
1775
+ end
1776
+
1777
+ # {urn:ws.rsys.com}createSQLViewResponse
1778
+ # result - SOAP::SOAPBoolean
1779
+ class CreateSQLViewResponse
1780
+ attr_accessor :result
1781
+
1782
+ def initialize(result = nil)
1783
+ @result = result
1784
+ end
1785
+ end
1786
+
1787
+ # {urn:ws.rsys.com}createLinkTable
1788
+ # linkTable - InteractObject
1789
+ # description - SOAP::SOAPString
1790
+ class CreateLinkTable
1791
+ attr_accessor :linkTable
1792
+ attr_accessor :description
1793
+
1794
+ def initialize(linkTable = nil, description = nil)
1795
+ @linkTable = linkTable
1796
+ @description = description
1797
+ end
1798
+ end
1799
+
1800
+ # {urn:ws.rsys.com}createLinkTableResponse
1801
+ # result - SOAP::SOAPBoolean
1802
+ class CreateLinkTableResponse
1803
+ attr_accessor :result
1804
+
1805
+ def initialize(result = nil)
1806
+ @result = result
1807
+ end
1808
+ end
1809
+
1810
+ # {urn:ws.rsys.com}deleteLinkTable
1811
+ # linkTable - InteractObject
1812
+ class DeleteLinkTable
1813
+ attr_accessor :linkTable
1814
+
1815
+ def initialize(linkTable = nil)
1816
+ @linkTable = linkTable
1817
+ end
1818
+ end
1819
+
1820
+ # {urn:ws.rsys.com}deleteLinkTableResponse
1821
+ # result - SOAP::SOAPBoolean
1822
+ class DeleteLinkTableResponse
1823
+ attr_accessor :result
1824
+
1825
+ def initialize(result = nil)
1826
+ @result = result
1827
+ end
1828
+ end
1829
+
1830
+ # {urn:ws.rsys.com}mergeLinkRecords
1831
+ # linkTable - InteractObject
1832
+ # recordData - RecordData
1833
+ class MergeLinkRecords
1834
+ attr_accessor :linkTable
1835
+ attr_accessor :recordData
1836
+
1837
+ def initialize(linkTable = nil, recordData = nil)
1838
+ @linkTable = linkTable
1839
+ @recordData = recordData
1840
+ end
1841
+ end
1842
+
1843
+ # {urn:ws.rsys.com}mergeLinkRecordsResponse
1844
+ # result - MergeResult
1845
+ class MergeLinkRecordsResponse
1846
+ attr_accessor :result
1847
+
1848
+ def initialize(result = nil)
1849
+ @result = result
1850
+ end
1851
+ end
1852
+
1853
+ # {urn:ws.rsys.com}retrieveLinkRecords
1854
+ # linkTable - InteractObject
1855
+ class RetrieveLinkRecords
1856
+ attr_accessor :linkTable
1857
+
1858
+ def initialize(linkTable = nil)
1859
+ @linkTable = linkTable
1860
+ end
1861
+ end
1862
+
1863
+ # {urn:ws.rsys.com}retrieveLinkRecordsResponse
1864
+ # result - RetrieveResult
1865
+ class RetrieveLinkRecordsResponse
1866
+ attr_accessor :result
1867
+
1868
+ def initialize(result = nil)
1869
+ @result = result
1870
+ end
1871
+ end
1872
+
1873
+ # {urn:ws.rsys.com}deleteLinkRecords
1874
+ # linkTable - InteractObject
1875
+ # linkNamesToDelete - SOAP::SOAPString
1876
+ class DeleteLinkRecords
1877
+ attr_accessor :linkTable
1878
+ attr_accessor :linkNamesToDelete
1879
+
1880
+ def initialize(linkTable = nil, linkNamesToDelete = [])
1881
+ @linkTable = linkTable
1882
+ @linkNamesToDelete = linkNamesToDelete
1883
+ end
1884
+ end
1885
+
1886
+ # {urn:ws.rsys.com}deleteLinkRecordsResponse
1887
+ class DeleteLinkRecordsResponse < ::Array
1888
+ end
1889
+
1890
+ # {urn:ws.rsys.com}createDocument
1891
+ # document - InteractObject
1892
+ # content - SOAP::SOAPString
1893
+ # characterEncoding - CharacterEncoding
1894
+ class CreateDocument
1895
+ attr_accessor :document
1896
+ attr_accessor :content
1897
+ attr_accessor :characterEncoding
1898
+
1899
+ def initialize(document = nil, content = nil, characterEncoding = nil)
1900
+ @document = document
1901
+ @content = content
1902
+ @characterEncoding = characterEncoding
1903
+ end
1904
+ end
1905
+
1906
+ # {urn:ws.rsys.com}createDocumentResponse
1907
+ # result - SOAP::SOAPBoolean
1908
+ class CreateDocumentResponse
1909
+ attr_accessor :result
1910
+
1911
+ def initialize(result = nil)
1912
+ @result = result
1913
+ end
1914
+ end
1915
+
1916
+ # {urn:ws.rsys.com}deleteDocument
1917
+ # document - InteractObject
1918
+ class DeleteDocument
1919
+ attr_accessor :document
1920
+
1921
+ def initialize(document = nil)
1922
+ @document = document
1923
+ end
1924
+ end
1925
+
1926
+ # {urn:ws.rsys.com}deleteDocumentResponse
1927
+ # result - SOAP::SOAPBoolean
1928
+ class DeleteDocumentResponse
1929
+ attr_accessor :result
1930
+
1931
+ def initialize(result = nil)
1932
+ @result = result
1933
+ end
1934
+ end
1935
+
1936
+ # {urn:ws.rsys.com}setDocumentImages
1937
+ # document - InteractObject
1938
+ # imageData - ImageData
1939
+ class SetDocumentImages
1940
+ attr_accessor :document
1941
+ attr_accessor :imageData
1942
+
1943
+ def initialize(document = nil, imageData = [])
1944
+ @document = document
1945
+ @imageData = imageData
1946
+ end
1947
+ end
1948
+
1949
+ # {urn:ws.rsys.com}setDocumentImagesResponse
1950
+ # result - SOAP::SOAPBoolean
1951
+ class SetDocumentImagesResponse
1952
+ attr_accessor :result
1953
+
1954
+ def initialize(result = nil)
1955
+ @result = result
1956
+ end
1957
+ end
1958
+
1959
+ # {urn:ws.rsys.com}getDocumentImages
1960
+ # document - InteractObject
1961
+ class GetDocumentImages
1962
+ attr_accessor :document
1963
+
1964
+ def initialize(document = nil)
1965
+ @document = document
1966
+ end
1967
+ end
1968
+
1969
+ # {urn:ws.rsys.com}getDocumentImagesResponse
1970
+ class GetDocumentImagesResponse < ::Array
1971
+ end
1972
+
1973
+ # {urn:ws.rsys.com}setDocumentContent
1974
+ # document - InteractObject
1975
+ # content - SOAP::SOAPString
1976
+ class SetDocumentContent
1977
+ attr_accessor :document
1978
+ attr_accessor :content
1979
+
1980
+ def initialize(document = nil, content = nil)
1981
+ @document = document
1982
+ @content = content
1983
+ end
1984
+ end
1985
+
1986
+ # {urn:ws.rsys.com}setDocumentContentResponse
1987
+ # result - SOAP::SOAPBoolean
1988
+ class SetDocumentContentResponse
1989
+ attr_accessor :result
1990
+
1991
+ def initialize(result = nil)
1992
+ @result = result
1993
+ end
1994
+ end
1995
+
1996
+ # {urn:ws.rsys.com}getDocumentContent
1997
+ # document - InteractObject
1998
+ class GetDocumentContent
1999
+ attr_accessor :document
2000
+
2001
+ def initialize(document = nil)
2002
+ @document = document
2003
+ end
2004
+ end
2005
+
2006
+ # {urn:ws.rsys.com}getDocumentContentResponse
2007
+ # result - ContentResult
2008
+ class GetDocumentContentResponse
2009
+ attr_accessor :result
2010
+
2011
+ def initialize(result = nil)
2012
+ @result = result
2013
+ end
2014
+ end
2015
+
2016
+ # {urn:ws.rsys.com}copy
2017
+ # existingObject - InteractObject
2018
+ # newObject - InteractObject
2019
+ class Copy
2020
+ attr_accessor :existingObject
2021
+ attr_accessor :newObject
2022
+
2023
+ def initialize(existingObject = nil, newObject = nil)
2024
+ @existingObject = existingObject
2025
+ @newObject = newObject
2026
+ end
2027
+ end
2028
+
2029
+ # {urn:ws.rsys.com}copyResponse
2030
+ # result - SOAP::SOAPBoolean
2031
+ class CopyResponse
2032
+ attr_accessor :result
2033
+
2034
+ def initialize(result = nil)
2035
+ @result = result
2036
+ end
2037
+ end
2038
+
2039
+ # {urn:ws.rsys.com}move
2040
+ # existingObject - InteractObject
2041
+ # newObject - InteractObject
2042
+ class Move
2043
+ attr_accessor :existingObject
2044
+ attr_accessor :newObject
2045
+
2046
+ def initialize(existingObject = nil, newObject = nil)
2047
+ @existingObject = existingObject
2048
+ @newObject = newObject
2049
+ end
2050
+ end
2051
+
2052
+ # {urn:ws.rsys.com}moveResponse
2053
+ # result - SOAP::SOAPBoolean
2054
+ class MoveResponse
2055
+ attr_accessor :result
2056
+
2057
+ def initialize(result = nil)
2058
+ @result = result
2059
+ end
2060
+ end
2061
+
2062
+ # {urn:ws.rsys.com}getServerTimestamp
2063
+ class GetServerTimestamp
2064
+ def initialize
2065
+ end
2066
+ end
2067
+
2068
+ # {urn:ws.rsys.com}getServerTimestampResponse
2069
+ # result - SOAP::SOAPDateTime
2070
+ class GetServerTimestampResponse
2071
+ attr_accessor :result
2072
+
2073
+ def initialize(result = nil)
2074
+ @result = result
2075
+ end
2076
+ end
2077
+
2078
+ # {urn:ws.rsys.com}describeObjects
2079
+ class DescribeObjects < ::Array
2080
+ end
2081
+
2082
+ # {urn:ws.rsys.com}describeObjectsResponse
2083
+ class DescribeObjectsResponse < ::Array
2084
+ end
2085
+
2086
+ # {urn:ws.rsys.com}runJob
2087
+ # jobId - SOAP::SOAPLong
2088
+ class RunJob
2089
+ attr_accessor :jobId
2090
+
2091
+ def initialize(jobId = nil)
2092
+ @jobId = jobId
2093
+ end
2094
+ end
2095
+
2096
+ # {urn:ws.rsys.com}runJobResponse
2097
+ # result - RunJobResult
2098
+ class RunJobResponse
2099
+ attr_accessor :result
2100
+
2101
+ def initialize(result = nil)
2102
+ @result = result
2103
+ end
2104
+ end
2105
+
2106
+ # {urn:ws.rsys.com}getJobRunStatus
2107
+ # jobRunId - SOAP::SOAPLong
2108
+ class GetJobRunStatus
2109
+ attr_accessor :jobRunId
2110
+
2111
+ def initialize(jobRunId = nil)
2112
+ @jobRunId = jobRunId
2113
+ end
2114
+ end
2115
+
2116
+ # {urn:ws.rsys.com}getJobRunStatusResponse
2117
+ # result - JobRunStatusResult
2118
+ class GetJobRunStatusResponse
2119
+ attr_accessor :result
2120
+
2121
+ def initialize(result = nil)
2122
+ @result = result
2123
+ end
2124
+ end
2125
+
2126
+ # {urn:ws.rsys.com}getJobs
2127
+ class GetJobs
2128
+ def initialize
2129
+ end
2130
+ end
2131
+
2132
+ # {urn:ws.rsys.com}getJobsResponse
2133
+ class GetJobsResponse < ::Array
2134
+ end
2135
+
2136
+ # {urn:ws.rsys.com}getJobRuns
2137
+ # jobId - SOAP::SOAPLong
2138
+ # startDate - SOAP::SOAPDateTime
2139
+ # endDate - SOAP::SOAPDateTime
2140
+ class GetJobRuns
2141
+ attr_accessor :jobId
2142
+ attr_accessor :startDate
2143
+ attr_accessor :endDate
2144
+
2145
+ def initialize(jobId = nil, startDate = nil, endDate = nil)
2146
+ @jobId = jobId
2147
+ @startDate = startDate
2148
+ @endDate = endDate
2149
+ end
2150
+ end
2151
+
2152
+ # {urn:ws.rsys.com}getJobRunsResponse
2153
+ class GetJobRunsResponse < ::Array
2154
+ end
2155
+
2156
+ # {urn:ws.rsys.com}getJobRunLog
2157
+ # jobRunId - SOAP::SOAPLong
2158
+ class GetJobRunLog
2159
+ attr_accessor :jobRunId
2160
+
2161
+ def initialize(jobRunId = nil)
2162
+ @jobRunId = jobRunId
2163
+ end
2164
+ end
2165
+
2166
+ # {urn:ws.rsys.com}getJobRunLogResponse
2167
+ class GetJobRunLogResponse < ::Array
2168
+ end
2169
+
2170
+ # {urn:ws.rsys.com}mergeListMembersRIID
2171
+ # list - InteractObject
2172
+ # recordData - RecordData
2173
+ # mergeRule - ListMergeRule
2174
+ class MergeListMembersRIID
2175
+ attr_accessor :list
2176
+ attr_accessor :recordData
2177
+ attr_accessor :mergeRule
2178
+
2179
+ def initialize(list = nil, recordData = nil, mergeRule = nil)
2180
+ @list = list
2181
+ @recordData = recordData
2182
+ @mergeRule = mergeRule
2183
+ end
2184
+ end
2185
+
2186
+ # {urn:ws.rsys.com}mergeListMembersRIIDResponse
2187
+ class MergeListMembersRIIDResponse < ::Array
2188
+ end
2189
+
2190
+ # {urn:ws.rsys.com}mergeIntoProfileExtension
2191
+ # profileExtension - InteractObject
2192
+ # recordData - RecordData
2193
+ # matchColumn - QueryColumn
2194
+ # insertOnNoMatch - SOAP::SOAPBoolean
2195
+ # updateOnMatch - UpdateOnMatch
2196
+ class MergeIntoProfileExtension
2197
+ attr_accessor :profileExtension
2198
+ attr_accessor :recordData
2199
+ attr_accessor :matchColumn
2200
+ attr_accessor :insertOnNoMatch
2201
+ attr_accessor :updateOnMatch
2202
+
2203
+ def initialize(profileExtension = nil, recordData = nil, matchColumn = nil, insertOnNoMatch = nil, updateOnMatch = nil)
2204
+ @profileExtension = profileExtension
2205
+ @recordData = recordData
2206
+ @matchColumn = matchColumn
2207
+ @insertOnNoMatch = insertOnNoMatch
2208
+ @updateOnMatch = updateOnMatch
2209
+ end
2210
+ end
2211
+
2212
+ # {urn:ws.rsys.com}mergeIntoProfileExtensionResponse
2213
+ class MergeIntoProfileExtensionResponse < ::Array
2214
+ end
2215
+
2216
+ # {urn:ws.rsys.com}createTableWithPK
2217
+ # table - InteractObject
2218
+ # fields - Field
2219
+ # primaryKeys - SOAP::SOAPString
2220
+ class CreateTableWithPK
2221
+ attr_accessor :table
2222
+ attr_accessor :fields
2223
+ attr_accessor :primaryKeys
2224
+
2225
+ def initialize(table = nil, fields = [], primaryKeys = [])
2226
+ @table = table
2227
+ @fields = fields
2228
+ @primaryKeys = primaryKeys
2229
+ end
2230
+ end
2231
+
2232
+ # {urn:ws.rsys.com}createTableWithPKResponse
2233
+ # result - SOAP::SOAPBoolean
2234
+ class CreateTableWithPKResponse
2235
+ attr_accessor :result
2236
+
2237
+ def initialize(result = nil)
2238
+ @result = result
2239
+ end
2240
+ end
2241
+
2242
+ # {urn:ws.rsys.com}mergeTableRecordsWithPK
2243
+ # table - InteractObject
2244
+ # recordData - RecordData
2245
+ # insertOnNoMatch - SOAP::SOAPBoolean
2246
+ # updateOnMatch - UpdateOnMatch
2247
+ class MergeTableRecordsWithPK
2248
+ attr_accessor :table
2249
+ attr_accessor :recordData
2250
+ attr_accessor :insertOnNoMatch
2251
+ attr_accessor :updateOnMatch
2252
+
2253
+ def initialize(table = nil, recordData = nil, insertOnNoMatch = nil, updateOnMatch = nil)
2254
+ @table = table
2255
+ @recordData = recordData
2256
+ @insertOnNoMatch = insertOnNoMatch
2257
+ @updateOnMatch = updateOnMatch
2258
+ end
2259
+ end
2260
+
2261
+ # {urn:ws.rsys.com}mergeTableRecordsWithPKResponse
2262
+ # result - MergeResult
2263
+ class MergeTableRecordsWithPKResponse
2264
+ attr_accessor :result
2265
+
2266
+ def initialize(result = nil)
2267
+ @result = result
2268
+ end
2269
+ end
2270
+
2271
+ # {urn:ws.rsys.com}retrieveProfileExtensionRecords
2272
+ # profileExtension - InteractObject
2273
+ # queryColumn - QueryColumn
2274
+ # fieldList - SOAP::SOAPString
2275
+ # idsToRetrieve - SOAP::SOAPString
2276
+ class RetrieveProfileExtensionRecords
2277
+ attr_accessor :profileExtension
2278
+ attr_accessor :queryColumn
2279
+ attr_accessor :fieldList
2280
+ attr_accessor :idsToRetrieve
2281
+
2282
+ def initialize(profileExtension = nil, queryColumn = nil, fieldList = [], idsToRetrieve = [])
2283
+ @profileExtension = profileExtension
2284
+ @queryColumn = queryColumn
2285
+ @fieldList = fieldList
2286
+ @idsToRetrieve = idsToRetrieve
2287
+ end
2288
+ end
2289
+
2290
+ # {urn:ws.rsys.com}retrieveProfileExtensionRecordsResponse
2291
+ # result - RetrieveResult
2292
+ class RetrieveProfileExtensionRecordsResponse
2293
+ attr_accessor :result
2294
+
2295
+ def initialize(result = nil)
2296
+ @result = result
2297
+ end
2298
+ end
2299
+
2300
+ # {urn:fault.ws.rsys.com}AccountFault
2301
+ # exceptionCode - ExceptionCode
2302
+ # exceptionMessage - SOAP::SOAPString
2303
+ class AccountFault < ::StandardError
2304
+ attr_accessor :exceptionCode
2305
+ attr_accessor :exceptionMessage
2306
+
2307
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2308
+ @exceptionCode = exceptionCode
2309
+ @exceptionMessage = exceptionMessage
2310
+ end
2311
+ end
2312
+
2313
+ # {urn:fault.ws.rsys.com}FolderFault
2314
+ # exceptionCode - ExceptionCode
2315
+ # exceptionMessage - SOAP::SOAPString
2316
+ class FolderFault < ::StandardError
2317
+ attr_accessor :exceptionCode
2318
+ attr_accessor :exceptionMessage
2319
+
2320
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2321
+ @exceptionCode = exceptionCode
2322
+ @exceptionMessage = exceptionMessage
2323
+ end
2324
+ end
2325
+
2326
+ # {urn:fault.ws.rsys.com}TriggeredMessageFault
2327
+ # exceptionCode - ExceptionCode
2328
+ # exceptionMessage - SOAP::SOAPString
2329
+ class TriggeredMessageFault < ::StandardError
2330
+ attr_accessor :exceptionCode
2331
+ attr_accessor :exceptionMessage
2332
+
2333
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2334
+ @exceptionCode = exceptionCode
2335
+ @exceptionMessage = exceptionMessage
2336
+ end
2337
+ end
2338
+
2339
+ # {urn:fault.ws.rsys.com}CustomEventFault
2340
+ # exceptionCode - ExceptionCode
2341
+ # exceptionMessage - SOAP::SOAPString
2342
+ class CustomEventFault < ::StandardError
2343
+ attr_accessor :exceptionCode
2344
+ attr_accessor :exceptionMessage
2345
+
2346
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2347
+ @exceptionCode = exceptionCode
2348
+ @exceptionMessage = exceptionMessage
2349
+ end
2350
+ end
2351
+
2352
+ # {urn:fault.ws.rsys.com}CampaignFault
2353
+ # exceptionCode - ExceptionCode
2354
+ # exceptionMessage - SOAP::SOAPString
2355
+ class CampaignFault < ::StandardError
2356
+ attr_accessor :exceptionCode
2357
+ attr_accessor :exceptionMessage
2358
+
2359
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2360
+ @exceptionCode = exceptionCode
2361
+ @exceptionMessage = exceptionMessage
2362
+ end
2363
+ end
2364
+
2365
+ # {urn:fault.ws.rsys.com}ListFault
2366
+ # exceptionCode - ExceptionCode
2367
+ # exceptionMessage - SOAP::SOAPString
2368
+ class ListFault < ::StandardError
2369
+ attr_accessor :exceptionCode
2370
+ attr_accessor :exceptionMessage
2371
+
2372
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2373
+ @exceptionCode = exceptionCode
2374
+ @exceptionMessage = exceptionMessage
2375
+ end
2376
+ end
2377
+
2378
+ # {urn:fault.ws.rsys.com}TableFault
2379
+ # exceptionCode - ExceptionCode
2380
+ # exceptionMessage - SOAP::SOAPString
2381
+ class TableFault < ::StandardError
2382
+ attr_accessor :exceptionCode
2383
+ attr_accessor :exceptionMessage
2384
+
2385
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2386
+ @exceptionCode = exceptionCode
2387
+ @exceptionMessage = exceptionMessage
2388
+ end
2389
+ end
2390
+
2391
+ # {urn:fault.ws.rsys.com}LinkTableFault
2392
+ # exceptionCode - ExceptionCode
2393
+ # exceptionMessage - SOAP::SOAPString
2394
+ class LinkTableFault < ApiFault
2395
+ attr_accessor :exceptionCode
2396
+ attr_accessor :exceptionMessage
2397
+
2398
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2399
+ @exceptionCode = exceptionCode
2400
+ @exceptionMessage = exceptionMessage
2401
+ end
2402
+ end
2403
+
2404
+ # {urn:fault.ws.rsys.com}DocumentFault
2405
+ # exceptionCode - ExceptionCode
2406
+ # exceptionMessage - SOAP::SOAPString
2407
+ class DocumentFault < ::StandardError
2408
+ attr_accessor :exceptionCode
2409
+ attr_accessor :exceptionMessage
2410
+
2411
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2412
+ @exceptionCode = exceptionCode
2413
+ @exceptionMessage = exceptionMessage
2414
+ end
2415
+ end
2416
+
2417
+ # {urn:fault.ws.rsys.com}ObjectFault
2418
+ # exceptionCode - ExceptionCode
2419
+ # exceptionMessage - SOAP::SOAPString
2420
+ class ObjectFault < ApiFault
2421
+ attr_accessor :exceptionCode
2422
+ attr_accessor :exceptionMessage
2423
+
2424
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2425
+ @exceptionCode = exceptionCode
2426
+ @exceptionMessage = exceptionMessage
2427
+ end
2428
+ end
2429
+
2430
+ # {urn:fault.ws.rsys.com}ConnectFault
2431
+ # exceptionCode - ExceptionCode
2432
+ # exceptionMessage - SOAP::SOAPString
2433
+ class ConnectFault < ApiFault
2434
+ attr_accessor :exceptionCode
2435
+ attr_accessor :exceptionMessage
2436
+
2437
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2438
+ @exceptionCode = exceptionCode
2439
+ @exceptionMessage = exceptionMessage
2440
+ end
2441
+ end
2442
+
2443
+ # {urn:fault.ws.rsys.com}ListExtensionFault
2444
+ # exceptionCode - ExceptionCode
2445
+ # exceptionMessage - SOAP::SOAPString
2446
+ class ListExtensionFault < ::StandardError
2447
+ attr_accessor :exceptionCode
2448
+ attr_accessor :exceptionMessage
2449
+
2450
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2451
+ @exceptionCode = exceptionCode
2452
+ @exceptionMessage = exceptionMessage
2453
+ end
2454
+ end
2455
+
2456
+ # {urn:fault.ws.rsys.com}UnexpectedErrorFault
2457
+ # exceptionCode - ExceptionCode
2458
+ # exceptionMessage - SOAP::SOAPString
2459
+ class UnexpectedErrorFault < ::StandardError
2460
+ attr_accessor :exceptionCode
2461
+ attr_accessor :exceptionMessage
2462
+
2463
+ def initialize(exceptionCode = nil, exceptionMessage = nil)
2464
+ @exceptionCode = exceptionCode
2465
+ @exceptionMessage = exceptionMessage
2466
+ end
2467
+ end