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