texel-docusign 0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1688 @@
1
+ require 'xsd/qname'
2
+
3
+ module Docusign
4
+
5
+
6
+ # {http://www.docusign.net/API/3.0}Envelope
7
+ # accountId - SOAP::SOAPString
8
+ # documents - Docusign::ArrayOfDocument
9
+ # recipients - Docusign::ArrayOfRecipient
10
+ # tabs - Docusign::ArrayOfTab
11
+ # subject - SOAP::SOAPString
12
+ # emailBlurb - SOAP::SOAPString
13
+ # signingLocation - Docusign::SigningLocationCode
14
+ # customFields - Docusign::ArrayOfCustomField
15
+ # vaultingOptions - Docusign::VaultingOptions
16
+ # autoNavigation - SOAP::SOAPBoolean
17
+ # envelopeIdStamping - SOAP::SOAPBoolean
18
+ # authoritativeCopy - SOAP::SOAPBoolean
19
+ # notification - Docusign::Notification
20
+ # envelopeAttachment - Docusign::ArrayOfAttachment
21
+ class Envelope
22
+ attr_accessor :accountId
23
+ attr_accessor :documents
24
+ attr_accessor :recipients
25
+ attr_accessor :tabs
26
+ attr_accessor :subject
27
+ attr_accessor :emailBlurb
28
+ attr_accessor :signingLocation
29
+ attr_accessor :customFields
30
+ attr_accessor :vaultingOptions
31
+ attr_accessor :autoNavigation
32
+ attr_accessor :envelopeIdStamping
33
+ attr_accessor :authoritativeCopy
34
+ attr_accessor :notification
35
+ attr_accessor :envelopeAttachment
36
+
37
+ def initialize(accountId = nil, documents = nil, recipients = nil, tabs = nil, subject = nil, emailBlurb = nil, signingLocation = nil, customFields = nil, vaultingOptions = nil, autoNavigation = nil, envelopeIdStamping = nil, authoritativeCopy = nil, notification = nil, envelopeAttachment = nil)
38
+ @accountId = accountId
39
+ @documents = documents
40
+ @recipients = recipients
41
+ @tabs = tabs
42
+ @subject = subject
43
+ @emailBlurb = emailBlurb
44
+ @signingLocation = signingLocation
45
+ @customFields = customFields
46
+ @vaultingOptions = vaultingOptions
47
+ @autoNavigation = autoNavigation
48
+ @envelopeIdStamping = envelopeIdStamping
49
+ @authoritativeCopy = authoritativeCopy
50
+ @notification = notification
51
+ @envelopeAttachment = envelopeAttachment
52
+ end
53
+ end
54
+
55
+ # {http://www.docusign.net/API/3.0}ArrayOfDocument
56
+ class ArrayOfDocument < ::Array
57
+ end
58
+
59
+ # {http://www.docusign.net/API/3.0}Document
60
+ # iD - SOAP::SOAPPositiveInteger
61
+ # name - SOAP::SOAPString
62
+ # pDFBytes - SOAP::SOAPBase64
63
+ # password - SOAP::SOAPString
64
+ class Document
65
+ attr_accessor :iD
66
+ attr_accessor :name
67
+ attr_accessor :pDFBytes
68
+ attr_accessor :password
69
+
70
+ def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil)
71
+ @iD = iD
72
+ @name = name
73
+ @pDFBytes = pDFBytes
74
+ @password = password
75
+ end
76
+ end
77
+
78
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipient
79
+ class ArrayOfRecipient < ::Array
80
+ end
81
+
82
+ # {http://www.docusign.net/API/3.0}Recipient
83
+ # iD - SOAP::SOAPPositiveInteger
84
+ # userName - SOAP::SOAPString
85
+ # email - SOAP::SOAPString
86
+ # type - Docusign::RecipientTypeCode
87
+ # accessCode - SOAP::SOAPString
88
+ # addAccessCodeToEmail - SOAP::SOAPBoolean
89
+ # requireIDLookup - SOAP::SOAPBoolean
90
+ # iDCheckConfigurationName - SOAP::SOAPString
91
+ # signatureInfo - Docusign::RecipientSignatureInfo
92
+ # captiveInfo - Docusign::RecipientCaptiveInfo
93
+ # customFields - Docusign::ArrayOfString
94
+ # routingOrder - SOAP::SOAPUnsignedShort
95
+ # iDCheckInformationInput - Docusign::IDCheckInformationInput
96
+ # autoNavigation - SOAP::SOAPBoolean
97
+ # recipientAttachment - Docusign::ArrayOfAttachment
98
+ # note - SOAP::SOAPString
99
+ class Recipient
100
+ attr_accessor :iD
101
+ attr_accessor :userName
102
+ attr_accessor :email
103
+ attr_accessor :type
104
+ attr_accessor :accessCode
105
+ attr_accessor :addAccessCodeToEmail
106
+ attr_accessor :requireIDLookup
107
+ attr_accessor :iDCheckConfigurationName
108
+ attr_accessor :signatureInfo
109
+ attr_accessor :captiveInfo
110
+ attr_accessor :customFields
111
+ attr_accessor :routingOrder
112
+ attr_accessor :iDCheckInformationInput
113
+ attr_accessor :autoNavigation
114
+ attr_accessor :recipientAttachment
115
+ attr_accessor :note
116
+
117
+ def initialize(iD = nil, userName = nil, email = nil, type = nil, accessCode = nil, addAccessCodeToEmail = nil, requireIDLookup = nil, iDCheckConfigurationName = nil, signatureInfo = nil, captiveInfo = nil, customFields = nil, routingOrder = nil, iDCheckInformationInput = nil, autoNavigation = nil, recipientAttachment = nil, note = nil)
118
+ @iD = iD
119
+ @userName = userName
120
+ @email = email
121
+ @type = type
122
+ @accessCode = accessCode
123
+ @addAccessCodeToEmail = addAccessCodeToEmail
124
+ @requireIDLookup = requireIDLookup
125
+ @iDCheckConfigurationName = iDCheckConfigurationName
126
+ @signatureInfo = signatureInfo
127
+ @captiveInfo = captiveInfo
128
+ @customFields = customFields
129
+ @routingOrder = routingOrder
130
+ @iDCheckInformationInput = iDCheckInformationInput
131
+ @autoNavigation = autoNavigation
132
+ @recipientAttachment = recipientAttachment
133
+ @note = note
134
+ end
135
+ end
136
+
137
+ # {http://www.docusign.net/API/3.0}RecipientSignatureInfo
138
+ # signatureName - SOAP::SOAPString
139
+ # signatureInitials - SOAP::SOAPString
140
+ # fontStyle - Docusign::FontStyleCode
141
+ class RecipientSignatureInfo
142
+ attr_accessor :signatureName
143
+ attr_accessor :signatureInitials
144
+ attr_accessor :fontStyle
145
+
146
+ def initialize(signatureName = nil, signatureInitials = nil, fontStyle = nil)
147
+ @signatureName = signatureName
148
+ @signatureInitials = signatureInitials
149
+ @fontStyle = fontStyle
150
+ end
151
+ end
152
+
153
+ # {http://www.docusign.net/API/3.0}RecipientCaptiveInfo
154
+ # clientUserId - SOAP::SOAPString
155
+ class RecipientCaptiveInfo
156
+ attr_accessor :clientUserId
157
+
158
+ def initialize(clientUserId = nil)
159
+ @clientUserId = clientUserId
160
+ end
161
+ end
162
+
163
+ # {http://www.docusign.net/API/3.0}ArrayOfString
164
+ class ArrayOfString < ::Array
165
+ end
166
+
167
+ # {http://www.docusign.net/API/3.0}IDCheckInformationInput
168
+ # addressInformationInput - Docusign::AddressInformationInput
169
+ # dOBInformationInput - Docusign::DOBInformationInput
170
+ # sSN4InformationInput - Docusign::SSN4InformationInput
171
+ # sSN9InformationInput - Docusign::SSN9InformationInput
172
+ class IDCheckInformationInput
173
+ attr_accessor :addressInformationInput
174
+ attr_accessor :dOBInformationInput
175
+ attr_accessor :sSN4InformationInput
176
+ attr_accessor :sSN9InformationInput
177
+
178
+ def initialize(addressInformationInput = nil, dOBInformationInput = nil, sSN4InformationInput = nil, sSN9InformationInput = nil)
179
+ @addressInformationInput = addressInformationInput
180
+ @dOBInformationInput = dOBInformationInput
181
+ @sSN4InformationInput = sSN4InformationInput
182
+ @sSN9InformationInput = sSN9InformationInput
183
+ end
184
+ end
185
+
186
+ # {http://www.docusign.net/API/3.0}AddressInformationInput
187
+ # addressInformation - Docusign::AddressInformation
188
+ # displayLevel - Docusign::DisplayLevelCode
189
+ # receiveInResponse - SOAP::SOAPBoolean
190
+ class AddressInformationInput
191
+ attr_accessor :addressInformation
192
+ attr_accessor :displayLevel
193
+ attr_accessor :receiveInResponse
194
+
195
+ def initialize(addressInformation = nil, displayLevel = nil, receiveInResponse = nil)
196
+ @addressInformation = addressInformation
197
+ @displayLevel = displayLevel
198
+ @receiveInResponse = receiveInResponse
199
+ end
200
+ end
201
+
202
+ # {http://www.docusign.net/API/3.0}AddressInformation
203
+ # street1 - SOAP::SOAPString
204
+ # street2 - SOAP::SOAPString
205
+ # city - SOAP::SOAPString
206
+ # state - SOAP::SOAPString
207
+ # zip - SOAP::SOAPString
208
+ # zipPlus4 - SOAP::SOAPString
209
+ class AddressInformation
210
+ attr_accessor :street1
211
+ attr_accessor :street2
212
+ attr_accessor :city
213
+ attr_accessor :state
214
+ attr_accessor :zip
215
+ attr_accessor :zipPlus4
216
+
217
+ def initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil)
218
+ @street1 = street1
219
+ @street2 = street2
220
+ @city = city
221
+ @state = state
222
+ @zip = zip
223
+ @zipPlus4 = zipPlus4
224
+ end
225
+ end
226
+
227
+ # {http://www.docusign.net/API/3.0}DOBInformationInput
228
+ # dOBInformation - Docusign::DOBInformation
229
+ # displayLevel - Docusign::DisplayLevelCode
230
+ # receiveInResponse - SOAP::SOAPBoolean
231
+ class DOBInformationInput
232
+ attr_accessor :dOBInformation
233
+ attr_accessor :displayLevel
234
+ attr_accessor :receiveInResponse
235
+
236
+ def initialize(dOBInformation = nil, displayLevel = nil, receiveInResponse = nil)
237
+ @dOBInformation = dOBInformation
238
+ @displayLevel = displayLevel
239
+ @receiveInResponse = receiveInResponse
240
+ end
241
+ end
242
+
243
+ # {http://www.docusign.net/API/3.0}DOBInformation
244
+ # dOB - SOAP::SOAPDateTime
245
+ class DOBInformation
246
+ attr_accessor :dOB
247
+
248
+ def initialize(dOB = nil)
249
+ @dOB = dOB
250
+ end
251
+ end
252
+
253
+ # {http://www.docusign.net/API/3.0}SSN4InformationInput
254
+ # sSN4Information - Docusign::SSN4Information
255
+ # displayLevel - Docusign::DisplayLevelCode
256
+ # receiveInResponse - SOAP::SOAPBoolean
257
+ class SSN4InformationInput
258
+ attr_accessor :sSN4Information
259
+ attr_accessor :displayLevel
260
+ attr_accessor :receiveInResponse
261
+
262
+ def initialize(sSN4Information = nil, displayLevel = nil, receiveInResponse = nil)
263
+ @sSN4Information = sSN4Information
264
+ @displayLevel = displayLevel
265
+ @receiveInResponse = receiveInResponse
266
+ end
267
+ end
268
+
269
+ # {http://www.docusign.net/API/3.0}SSN4Information
270
+ # sSN4 - SOAP::SOAPString
271
+ class SSN4Information
272
+ attr_accessor :sSN4
273
+
274
+ def initialize(sSN4 = nil)
275
+ @sSN4 = sSN4
276
+ end
277
+ end
278
+
279
+ # {http://www.docusign.net/API/3.0}SSN9InformationInput
280
+ # sSN9Information - Docusign::SSN9Information
281
+ # displayLevel - Docusign::DisplayLevelCode
282
+ class SSN9InformationInput
283
+ attr_accessor :sSN9Information
284
+ attr_accessor :displayLevel
285
+
286
+ def initialize(sSN9Information = nil, displayLevel = nil)
287
+ @sSN9Information = sSN9Information
288
+ @displayLevel = displayLevel
289
+ end
290
+ end
291
+
292
+ # {http://www.docusign.net/API/3.0}SSN9Information
293
+ # sSN9 - SOAP::SOAPString
294
+ class SSN9Information
295
+ attr_accessor :sSN9
296
+
297
+ def initialize(sSN9 = nil)
298
+ @sSN9 = sSN9
299
+ end
300
+ end
301
+
302
+ # {http://www.docusign.net/API/3.0}ArrayOfAttachment
303
+ class ArrayOfAttachment < ::Array
304
+ end
305
+
306
+ # {http://www.docusign.net/API/3.0}Attachment
307
+ # data - SOAP::SOAPBase64
308
+ # label - SOAP::SOAPString
309
+ # type - SOAP::SOAPString
310
+ class Attachment
311
+ attr_accessor :data
312
+ attr_accessor :label
313
+ attr_accessor :type
314
+
315
+ def initialize(data = nil, label = nil, type = nil)
316
+ @data = data
317
+ @label = label
318
+ @type = type
319
+ end
320
+ end
321
+
322
+ # {http://www.docusign.net/API/3.0}ArrayOfTab
323
+ class ArrayOfTab < ::Array
324
+ end
325
+
326
+ # {http://www.docusign.net/API/3.0}Tab
327
+ # documentID - SOAP::SOAPPositiveInteger
328
+ # recipientID - SOAP::SOAPPositiveInteger
329
+ # pageNumber - SOAP::SOAPNonNegativeInteger
330
+ # xPosition - SOAP::SOAPNonNegativeInteger
331
+ # yPosition - SOAP::SOAPNonNegativeInteger
332
+ # anchorTabItem - Docusign::AnchorTab
333
+ # type - Docusign::TabTypeCode
334
+ # name - SOAP::SOAPString
335
+ # tabLabel - SOAP::SOAPString
336
+ # value - SOAP::SOAPString
337
+ # customTabType - Docusign::CustomTabType
338
+ # customTabWidth - SOAP::SOAPInt
339
+ # customTabHeight - SOAP::SOAPInt
340
+ # customTabRequired - SOAP::SOAPBoolean
341
+ # customTabLocked - SOAP::SOAPBoolean
342
+ # customTabDisableAutoSize - SOAP::SOAPBoolean
343
+ # customTabListItems - SOAP::SOAPString
344
+ # customTabRadioGroupName - SOAP::SOAPString
345
+ class Tab
346
+ attr_accessor :documentID
347
+ attr_accessor :recipientID
348
+ attr_accessor :pageNumber
349
+ attr_accessor :xPosition
350
+ attr_accessor :yPosition
351
+ attr_accessor :anchorTabItem
352
+ attr_accessor :type
353
+ attr_accessor :name
354
+ attr_accessor :tabLabel
355
+ attr_accessor :value
356
+ attr_accessor :customTabType
357
+ attr_accessor :customTabWidth
358
+ attr_accessor :customTabHeight
359
+ attr_accessor :customTabRequired
360
+ attr_accessor :customTabLocked
361
+ attr_accessor :customTabDisableAutoSize
362
+ attr_accessor :customTabListItems
363
+ attr_accessor :customTabRadioGroupName
364
+
365
+ def initialize(documentID = nil, recipientID = nil, pageNumber = nil, xPosition = nil, yPosition = nil, anchorTabItem = nil, type = nil, name = nil, tabLabel = nil, value = nil, customTabType = nil, customTabWidth = nil, customTabHeight = nil, customTabRequired = nil, customTabLocked = nil, customTabDisableAutoSize = nil, customTabListItems = nil, customTabRadioGroupName = nil)
366
+ @documentID = documentID
367
+ @recipientID = recipientID
368
+ @pageNumber = pageNumber
369
+ @xPosition = xPosition
370
+ @yPosition = yPosition
371
+ @anchorTabItem = anchorTabItem
372
+ @type = type
373
+ @name = name
374
+ @tabLabel = tabLabel
375
+ @value = value
376
+ @customTabType = customTabType
377
+ @customTabWidth = customTabWidth
378
+ @customTabHeight = customTabHeight
379
+ @customTabRequired = customTabRequired
380
+ @customTabLocked = customTabLocked
381
+ @customTabDisableAutoSize = customTabDisableAutoSize
382
+ @customTabListItems = customTabListItems
383
+ @customTabRadioGroupName = customTabRadioGroupName
384
+ end
385
+ end
386
+
387
+ # {http://www.docusign.net/API/3.0}AnchorTab
388
+ # anchorTabString - SOAP::SOAPString
389
+ # xOffset - SOAP::SOAPDouble
390
+ # yOffset - SOAP::SOAPDouble
391
+ # unit - Docusign::UnitTypeCode
392
+ class AnchorTab
393
+ attr_accessor :anchorTabString
394
+ attr_accessor :xOffset
395
+ attr_accessor :yOffset
396
+ attr_accessor :unit
397
+
398
+ def initialize(anchorTabString = nil, xOffset = nil, yOffset = nil, unit = nil)
399
+ @anchorTabString = anchorTabString
400
+ @xOffset = xOffset
401
+ @yOffset = yOffset
402
+ @unit = unit
403
+ end
404
+ end
405
+
406
+ # {http://www.docusign.net/API/3.0}ArrayOfCustomField
407
+ class ArrayOfCustomField < ::Array
408
+ end
409
+
410
+ # {http://www.docusign.net/API/3.0}CustomField
411
+ # name - SOAP::SOAPString
412
+ # show - SOAP::SOAPString
413
+ # required - SOAP::SOAPString
414
+ # value - SOAP::SOAPString
415
+ class CustomField
416
+ attr_accessor :name
417
+ attr_accessor :show
418
+ attr_accessor :required
419
+ attr_accessor :value
420
+
421
+ def initialize(name = nil, show = nil, required = nil, value = nil)
422
+ @name = name
423
+ @show = show
424
+ @required = required
425
+ @value = value
426
+ end
427
+ end
428
+
429
+ # {http://www.docusign.net/API/3.0}VaultingOptions
430
+ # vaultingMode - Docusign::VaultingModeCode
431
+ # eODTransactionName - SOAP::SOAPString
432
+ # eODDocumentName - SOAP::SOAPString
433
+ # eODDocumentDescription - SOAP::SOAPString
434
+ class VaultingOptions
435
+ attr_accessor :vaultingMode
436
+ attr_accessor :eODTransactionName
437
+ attr_accessor :eODDocumentName
438
+ attr_accessor :eODDocumentDescription
439
+
440
+ def initialize(vaultingMode = nil, eODTransactionName = nil, eODDocumentName = nil, eODDocumentDescription = nil)
441
+ @vaultingMode = vaultingMode
442
+ @eODTransactionName = eODTransactionName
443
+ @eODDocumentName = eODDocumentName
444
+ @eODDocumentDescription = eODDocumentDescription
445
+ end
446
+ end
447
+
448
+ # {http://www.docusign.net/API/3.0}Notification
449
+ # useAccountDefaults - SOAP::SOAPBoolean
450
+ # reminders - Docusign::Reminders
451
+ # expirations - Docusign::Expirations
452
+ class Notification
453
+ attr_accessor :useAccountDefaults
454
+ attr_accessor :reminders
455
+ attr_accessor :expirations
456
+
457
+ def initialize(useAccountDefaults = nil, reminders = nil, expirations = nil)
458
+ @useAccountDefaults = useAccountDefaults
459
+ @reminders = reminders
460
+ @expirations = expirations
461
+ end
462
+ end
463
+
464
+ # {http://www.docusign.net/API/3.0}Reminders
465
+ # reminderEnabled - SOAP::SOAPBoolean
466
+ # reminderDelay - SOAP::SOAPNonNegativeInteger
467
+ # reminderFrequency - SOAP::SOAPNonNegativeInteger
468
+ class Reminders
469
+ attr_accessor :reminderEnabled
470
+ attr_accessor :reminderDelay
471
+ attr_accessor :reminderFrequency
472
+
473
+ def initialize(reminderEnabled = nil, reminderDelay = nil, reminderFrequency = nil)
474
+ @reminderEnabled = reminderEnabled
475
+ @reminderDelay = reminderDelay
476
+ @reminderFrequency = reminderFrequency
477
+ end
478
+ end
479
+
480
+ # {http://www.docusign.net/API/3.0}Expirations
481
+ # expireEnabled - SOAP::SOAPBoolean
482
+ # expireAfter - SOAP::SOAPNonNegativeInteger
483
+ # expireWarn - SOAP::SOAPNonNegativeInteger
484
+ class Expirations
485
+ attr_accessor :expireEnabled
486
+ attr_accessor :expireAfter
487
+ attr_accessor :expireWarn
488
+
489
+ def initialize(expireEnabled = nil, expireAfter = nil, expireWarn = nil)
490
+ @expireEnabled = expireEnabled
491
+ @expireAfter = expireAfter
492
+ @expireWarn = expireWarn
493
+ end
494
+ end
495
+
496
+ # {http://www.docusign.net/API/3.0}EnvelopeStatus
497
+ # recipientStatuses - Docusign::ArrayOfRecipientStatus
498
+ # timeGenerated - SOAP::SOAPDateTime
499
+ # envelopeID - SOAP::SOAPString
500
+ # subject - SOAP::SOAPString
501
+ # userName - SOAP::SOAPString
502
+ # email - SOAP::SOAPString
503
+ # status - Docusign::EnvelopeStatusCode
504
+ # created - SOAP::SOAPDateTime
505
+ # deleted - SOAP::SOAPDateTime
506
+ # sent - SOAP::SOAPDateTime
507
+ # delivered - SOAP::SOAPDateTime
508
+ # signed - SOAP::SOAPDateTime
509
+ # completed - SOAP::SOAPDateTime
510
+ # declined - SOAP::SOAPDateTime
511
+ # timedOut - SOAP::SOAPDateTime
512
+ # aCStatus - SOAP::SOAPString
513
+ # aCStatusDate - SOAP::SOAPDateTime
514
+ # aCHolder - SOAP::SOAPString
515
+ # aCHolderEmail - SOAP::SOAPString
516
+ # aCHolderLocation - SOAP::SOAPString
517
+ # signingLocation - Docusign::SigningLocationCode
518
+ # senderIPAddress - SOAP::SOAPString
519
+ # envelopePDFHash - SOAP::SOAPString
520
+ # customFields - Docusign::ArrayOfCustomField
521
+ # vaultingDetails - Docusign::VaultingDetails
522
+ # autoNavigation - SOAP::SOAPBoolean
523
+ # envelopeIdStamping - SOAP::SOAPBoolean
524
+ # authoritativeCopy - SOAP::SOAPBoolean
525
+ # envelopeAttachment - Docusign::ArrayOfAttachment
526
+ class EnvelopeStatus
527
+ attr_accessor :recipientStatuses
528
+ attr_accessor :timeGenerated
529
+ attr_accessor :envelopeID
530
+ attr_accessor :subject
531
+ attr_accessor :userName
532
+ attr_accessor :email
533
+ attr_accessor :status
534
+ attr_accessor :created
535
+ attr_accessor :deleted
536
+ attr_accessor :sent
537
+ attr_accessor :delivered
538
+ attr_accessor :signed
539
+ attr_accessor :completed
540
+ attr_accessor :declined
541
+ attr_accessor :timedOut
542
+ attr_accessor :aCStatus
543
+ attr_accessor :aCStatusDate
544
+ attr_accessor :aCHolder
545
+ attr_accessor :aCHolderEmail
546
+ attr_accessor :aCHolderLocation
547
+ attr_accessor :signingLocation
548
+ attr_accessor :senderIPAddress
549
+ attr_accessor :envelopePDFHash
550
+ attr_accessor :customFields
551
+ attr_accessor :vaultingDetails
552
+ attr_accessor :autoNavigation
553
+ attr_accessor :envelopeIdStamping
554
+ attr_accessor :authoritativeCopy
555
+ attr_accessor :envelopeAttachment
556
+
557
+ def initialize(recipientStatuses = nil, timeGenerated = nil, envelopeID = nil, subject = nil, userName = nil, email = nil, status = nil, created = nil, deleted = nil, sent = nil, delivered = nil, signed = nil, completed = nil, declined = nil, timedOut = nil, aCStatus = nil, aCStatusDate = nil, aCHolder = nil, aCHolderEmail = nil, aCHolderLocation = nil, signingLocation = nil, senderIPAddress = nil, envelopePDFHash = nil, customFields = nil, vaultingDetails = nil, autoNavigation = nil, envelopeIdStamping = nil, authoritativeCopy = nil, envelopeAttachment = nil)
558
+ @recipientStatuses = recipientStatuses
559
+ @timeGenerated = timeGenerated
560
+ @envelopeID = envelopeID
561
+ @subject = subject
562
+ @userName = userName
563
+ @email = email
564
+ @status = status
565
+ @created = created
566
+ @deleted = deleted
567
+ @sent = sent
568
+ @delivered = delivered
569
+ @signed = signed
570
+ @completed = completed
571
+ @declined = declined
572
+ @timedOut = timedOut
573
+ @aCStatus = aCStatus
574
+ @aCStatusDate = aCStatusDate
575
+ @aCHolder = aCHolder
576
+ @aCHolderEmail = aCHolderEmail
577
+ @aCHolderLocation = aCHolderLocation
578
+ @signingLocation = signingLocation
579
+ @senderIPAddress = senderIPAddress
580
+ @envelopePDFHash = envelopePDFHash
581
+ @customFields = customFields
582
+ @vaultingDetails = vaultingDetails
583
+ @autoNavigation = autoNavigation
584
+ @envelopeIdStamping = envelopeIdStamping
585
+ @authoritativeCopy = authoritativeCopy
586
+ @envelopeAttachment = envelopeAttachment
587
+ end
588
+ end
589
+
590
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientStatus
591
+ class ArrayOfRecipientStatus < ::Array
592
+ end
593
+
594
+ # {http://www.docusign.net/API/3.0}RecipientStatus
595
+ # type - Docusign::RecipientTypeCode
596
+ # email - SOAP::SOAPString
597
+ # userName - SOAP::SOAPString
598
+ # routingOrder - SOAP::SOAPUnsignedShort
599
+ # sent - SOAP::SOAPDateTime
600
+ # delivered - SOAP::SOAPDateTime
601
+ # signed - SOAP::SOAPDateTime
602
+ # declined - SOAP::SOAPDateTime
603
+ # declineReason - SOAP::SOAPString
604
+ # status - Docusign::RecipientStatusCode
605
+ # recipientIPAddress - SOAP::SOAPString
606
+ # clientUserId - SOAP::SOAPString
607
+ # autoNavigation - SOAP::SOAPBoolean
608
+ # iDCheckInformation - Docusign::IDCheckInformation
609
+ # recipientAuthenticationStatus - Docusign::AuthenticationStatus
610
+ # customFields - Docusign::ArrayOfString
611
+ # tabStatuses - Docusign::ArrayOfTabStatus
612
+ # recipientAttachment - Docusign::ArrayOfAttachment
613
+ class RecipientStatus
614
+ attr_accessor :type
615
+ attr_accessor :email
616
+ attr_accessor :userName
617
+ attr_accessor :routingOrder
618
+ attr_accessor :sent
619
+ attr_accessor :delivered
620
+ attr_accessor :signed
621
+ attr_accessor :declined
622
+ attr_accessor :declineReason
623
+ attr_accessor :status
624
+ attr_accessor :recipientIPAddress
625
+ attr_accessor :clientUserId
626
+ attr_accessor :autoNavigation
627
+ attr_accessor :iDCheckInformation
628
+ attr_accessor :recipientAuthenticationStatus
629
+ attr_accessor :customFields
630
+ attr_accessor :tabStatuses
631
+ attr_accessor :recipientAttachment
632
+
633
+ def initialize(type = nil, email = nil, userName = nil, routingOrder = nil, sent = nil, delivered = nil, signed = nil, declined = nil, declineReason = nil, status = nil, recipientIPAddress = nil, clientUserId = nil, autoNavigation = nil, iDCheckInformation = nil, recipientAuthenticationStatus = nil, customFields = nil, tabStatuses = nil, recipientAttachment = nil)
634
+ @type = type
635
+ @email = email
636
+ @userName = userName
637
+ @routingOrder = routingOrder
638
+ @sent = sent
639
+ @delivered = delivered
640
+ @signed = signed
641
+ @declined = declined
642
+ @declineReason = declineReason
643
+ @status = status
644
+ @recipientIPAddress = recipientIPAddress
645
+ @clientUserId = clientUserId
646
+ @autoNavigation = autoNavigation
647
+ @iDCheckInformation = iDCheckInformation
648
+ @recipientAuthenticationStatus = recipientAuthenticationStatus
649
+ @customFields = customFields
650
+ @tabStatuses = tabStatuses
651
+ @recipientAttachment = recipientAttachment
652
+ end
653
+ end
654
+
655
+ # {http://www.docusign.net/API/3.0}IDCheckInformation
656
+ # addressInformation - Docusign::AddressInformation
657
+ # dOBInformation - Docusign::DOBInformation
658
+ # sSN4Information - Docusign::SSN4Information
659
+ class IDCheckInformation
660
+ attr_accessor :addressInformation
661
+ attr_accessor :dOBInformation
662
+ attr_accessor :sSN4Information
663
+
664
+ def initialize(addressInformation = nil, dOBInformation = nil, sSN4Information = nil)
665
+ @addressInformation = addressInformation
666
+ @dOBInformation = dOBInformation
667
+ @sSN4Information = sSN4Information
668
+ end
669
+ end
670
+
671
+ # {http://www.docusign.net/API/3.0}AuthenticationStatus
672
+ # accessCodeResult - Docusign::EventResult
673
+ # iDQuestionsResult - Docusign::EventResult
674
+ # iDLookupResult - Docusign::EventResult
675
+ # ageVerifyResult - Docusign::EventResult
676
+ # sTANPinResult - Docusign::EventResult
677
+ # oFACResult - Docusign::EventResult
678
+ class AuthenticationStatus
679
+ attr_accessor :accessCodeResult
680
+ attr_accessor :iDQuestionsResult
681
+ attr_accessor :iDLookupResult
682
+ attr_accessor :ageVerifyResult
683
+ attr_accessor :sTANPinResult
684
+ attr_accessor :oFACResult
685
+
686
+ def initialize(accessCodeResult = nil, iDQuestionsResult = nil, iDLookupResult = nil, ageVerifyResult = nil, sTANPinResult = nil, oFACResult = nil)
687
+ @accessCodeResult = accessCodeResult
688
+ @iDQuestionsResult = iDQuestionsResult
689
+ @iDLookupResult = iDLookupResult
690
+ @ageVerifyResult = ageVerifyResult
691
+ @sTANPinResult = sTANPinResult
692
+ @oFACResult = oFACResult
693
+ end
694
+ end
695
+
696
+ # {http://www.docusign.net/API/3.0}EventResult
697
+ # status - Docusign::EventStatusCode
698
+ # eventTimestamp - SOAP::SOAPDateTime
699
+ class EventResult
700
+ attr_accessor :status
701
+ attr_accessor :eventTimestamp
702
+
703
+ def initialize(status = nil, eventTimestamp = nil)
704
+ @status = status
705
+ @eventTimestamp = eventTimestamp
706
+ end
707
+ end
708
+
709
+ # {http://www.docusign.net/API/3.0}ArrayOfTabStatus
710
+ class ArrayOfTabStatus < ::Array
711
+ end
712
+
713
+ # {http://www.docusign.net/API/3.0}TabStatus
714
+ # tabType - Docusign::TabTypeCode
715
+ # status - SOAP::SOAPString
716
+ # xPosition - SOAP::SOAPDouble
717
+ # yPosition - SOAP::SOAPDouble
718
+ # signed - SOAP::SOAPDateTime
719
+ # tabLabel - SOAP::SOAPString
720
+ # tabName - SOAP::SOAPString
721
+ # tabValue - SOAP::SOAPString
722
+ class TabStatus
723
+ attr_accessor :tabType
724
+ attr_accessor :status
725
+ attr_accessor :xPosition
726
+ attr_accessor :yPosition
727
+ attr_accessor :signed
728
+ attr_accessor :tabLabel
729
+ attr_accessor :tabName
730
+ attr_accessor :tabValue
731
+
732
+ def initialize(tabType = nil, status = nil, xPosition = nil, yPosition = nil, signed = nil, tabLabel = nil, tabName = nil, tabValue = nil)
733
+ @tabType = tabType
734
+ @status = status
735
+ @xPosition = xPosition
736
+ @yPosition = yPosition
737
+ @signed = signed
738
+ @tabLabel = tabLabel
739
+ @tabName = tabName
740
+ @tabValue = tabValue
741
+ end
742
+ end
743
+
744
+ # {http://www.docusign.net/API/3.0}VaultingDetails
745
+ # eODTransactionName - SOAP::SOAPString
746
+ # eODTransactionID - SOAP::SOAPString
747
+ # eODDocumentProfileID - SOAP::SOAPString
748
+ class VaultingDetails
749
+ attr_accessor :eODTransactionName
750
+ attr_accessor :eODTransactionID
751
+ attr_accessor :eODDocumentProfileID
752
+
753
+ def initialize(eODTransactionName = nil, eODTransactionID = nil, eODDocumentProfileID = nil)
754
+ @eODTransactionName = eODTransactionName
755
+ @eODTransactionID = eODTransactionID
756
+ @eODDocumentProfileID = eODDocumentProfileID
757
+ end
758
+ end
759
+
760
+ # {http://www.docusign.net/API/3.0}Correction
761
+ # envelopeID - SOAP::SOAPString
762
+ # envelopeSettingsCorrection - Docusign::EnvelopeSettings
763
+ # recipientCorrections - Docusign::ArrayOfRecipientCorrection
764
+ class Correction
765
+ attr_accessor :envelopeID
766
+ attr_accessor :envelopeSettingsCorrection
767
+ attr_accessor :recipientCorrections
768
+
769
+ def initialize(envelopeID = nil, envelopeSettingsCorrection = nil, recipientCorrections = nil)
770
+ @envelopeID = envelopeID
771
+ @envelopeSettingsCorrection = envelopeSettingsCorrection
772
+ @recipientCorrections = recipientCorrections
773
+ end
774
+ end
775
+
776
+ # {http://www.docusign.net/API/3.0}EnvelopeSettings
777
+ # autoNavigation - SOAP::SOAPBoolean
778
+ # envelopeIdStamping - SOAP::SOAPBoolean
779
+ class EnvelopeSettings
780
+ attr_accessor :autoNavigation
781
+ attr_accessor :envelopeIdStamping
782
+
783
+ def initialize(autoNavigation = nil, envelopeIdStamping = nil)
784
+ @autoNavigation = autoNavigation
785
+ @envelopeIdStamping = envelopeIdStamping
786
+ end
787
+ end
788
+
789
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrection
790
+ class ArrayOfRecipientCorrection < ::Array
791
+ end
792
+
793
+ # {http://www.docusign.net/API/3.0}RecipientCorrection
794
+ # previousUserName - SOAP::SOAPString
795
+ # previousEmail - SOAP::SOAPString
796
+ # previousRoutingOrder - SOAP::SOAPUnsignedShort
797
+ # correctedUserName - SOAP::SOAPString
798
+ # correctedEmail - SOAP::SOAPString
799
+ # correctedCaptiveInfo - Docusign::RecipientCorrectionCorrectedCaptiveInfo
800
+ # correctedAccessCode - SOAP::SOAPString
801
+ # correctedAccessCodeRequired - SOAP::SOAPBoolean
802
+ # correctedRequireIDLookup - SOAP::SOAPBoolean
803
+ # correctedIDCheckConfigurationName - SOAP::SOAPString
804
+ # correctedRoutingOrder - SOAP::SOAPUnsignedShort
805
+ # correctedAutoNavigation - SOAP::SOAPBoolean
806
+ # correctedIDCheckInformationInput - Docusign::IDCheckInformationInput
807
+ # resend - SOAP::SOAPBoolean
808
+ class RecipientCorrection
809
+ attr_accessor :previousUserName
810
+ attr_accessor :previousEmail
811
+ attr_accessor :previousRoutingOrder
812
+ attr_accessor :correctedUserName
813
+ attr_accessor :correctedEmail
814
+ attr_accessor :correctedCaptiveInfo
815
+ attr_accessor :correctedAccessCode
816
+ attr_accessor :correctedAccessCodeRequired
817
+ attr_accessor :correctedRequireIDLookup
818
+ attr_accessor :correctedIDCheckConfigurationName
819
+ attr_accessor :correctedRoutingOrder
820
+ attr_accessor :correctedAutoNavigation
821
+ attr_accessor :correctedIDCheckInformationInput
822
+ attr_accessor :resend
823
+
824
+ def initialize(previousUserName = nil, previousEmail = nil, previousRoutingOrder = nil, correctedUserName = nil, correctedEmail = nil, correctedCaptiveInfo = nil, correctedAccessCode = nil, correctedAccessCodeRequired = nil, correctedRequireIDLookup = nil, correctedIDCheckConfigurationName = nil, correctedRoutingOrder = nil, correctedAutoNavigation = nil, correctedIDCheckInformationInput = nil, resend = nil)
825
+ @previousUserName = previousUserName
826
+ @previousEmail = previousEmail
827
+ @previousRoutingOrder = previousRoutingOrder
828
+ @correctedUserName = correctedUserName
829
+ @correctedEmail = correctedEmail
830
+ @correctedCaptiveInfo = correctedCaptiveInfo
831
+ @correctedAccessCode = correctedAccessCode
832
+ @correctedAccessCodeRequired = correctedAccessCodeRequired
833
+ @correctedRequireIDLookup = correctedRequireIDLookup
834
+ @correctedIDCheckConfigurationName = correctedIDCheckConfigurationName
835
+ @correctedRoutingOrder = correctedRoutingOrder
836
+ @correctedAutoNavigation = correctedAutoNavigation
837
+ @correctedIDCheckInformationInput = correctedIDCheckInformationInput
838
+ @resend = resend
839
+ end
840
+ end
841
+
842
+ # {http://www.docusign.net/API/3.0}RecipientCorrectionCorrectedCaptiveInfo
843
+ # clientUserId - SOAP::SOAPString
844
+ class RecipientCorrectionCorrectedCaptiveInfo
845
+ attr_accessor :clientUserId
846
+
847
+ def initialize(clientUserId = nil)
848
+ @clientUserId = clientUserId
849
+ end
850
+ end
851
+
852
+ # {http://www.docusign.net/API/3.0}CorrectionStatus
853
+ # envelopeSettingsCorrectionStatus - Docusign::EnvelopeSettings
854
+ # recipientCorrectionStatuses - Docusign::ArrayOfRecipientCorrectionStatus
855
+ class CorrectionStatus
856
+ attr_accessor :envelopeSettingsCorrectionStatus
857
+ attr_accessor :recipientCorrectionStatuses
858
+
859
+ def initialize(envelopeSettingsCorrectionStatus = nil, recipientCorrectionStatuses = nil)
860
+ @envelopeSettingsCorrectionStatus = envelopeSettingsCorrectionStatus
861
+ @recipientCorrectionStatuses = recipientCorrectionStatuses
862
+ end
863
+ end
864
+
865
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrectionStatus
866
+ class ArrayOfRecipientCorrectionStatus < ::Array
867
+ end
868
+
869
+ # {http://www.docusign.net/API/3.0}RecipientCorrectionStatus
870
+ # correctionSucceeded - SOAP::SOAPBoolean
871
+ # recipientCorrection - Docusign::RecipientCorrection
872
+ # recipientStatus - Docusign::RecipientStatus
873
+ class RecipientCorrectionStatus
874
+ attr_accessor :correctionSucceeded
875
+ attr_accessor :recipientCorrection
876
+ attr_accessor :recipientStatus
877
+
878
+ def initialize(correctionSucceeded = nil, recipientCorrection = nil, recipientStatus = nil)
879
+ @correctionSucceeded = correctionSucceeded
880
+ @recipientCorrection = recipientCorrection
881
+ @recipientStatus = recipientStatus
882
+ end
883
+ end
884
+
885
+ # {http://www.docusign.net/API/3.0}EnvelopePDF
886
+ # envelopeID - SOAP::SOAPString
887
+ # pDFBytes - SOAP::SOAPBase64
888
+ class EnvelopePDF
889
+ attr_accessor :envelopeID
890
+ attr_accessor :pDFBytes
891
+
892
+ def initialize(envelopeID = nil, pDFBytes = nil)
893
+ @envelopeID = envelopeID
894
+ @pDFBytes = pDFBytes
895
+ end
896
+ end
897
+
898
+ # {http://www.docusign.net/API/3.0}DocumentPDFs
899
+ # envelopeId - SOAP::SOAPString
900
+ # documentPDF - Docusign::DocumentPDF
901
+ class DocumentPDFs
902
+ attr_accessor :envelopeId
903
+ attr_accessor :documentPDF
904
+
905
+ def initialize(envelopeId = nil, documentPDF = [])
906
+ @envelopeId = envelopeId
907
+ @documentPDF = documentPDF
908
+ end
909
+ end
910
+
911
+ # {http://www.docusign.net/API/3.0}DocumentPDF
912
+ # name - SOAP::SOAPString
913
+ # pDFBytes - SOAP::SOAPBase64
914
+ class DocumentPDF
915
+ attr_accessor :name
916
+ attr_accessor :pDFBytes
917
+
918
+ def initialize(name = nil, pDFBytes = nil)
919
+ @name = name
920
+ @pDFBytes = pDFBytes
921
+ end
922
+ end
923
+
924
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusFilter
925
+ # userInfo - Docusign::UserInfo
926
+ # accountId - SOAP::SOAPString
927
+ # beginDateTime - Docusign::EnvelopeStatusFilterBeginDateTime
928
+ # endDateTime - SOAP::SOAPDateTime
929
+ # statuses - Docusign::ArrayOfEnvelopeStatusCode
930
+ # envelopeIds - Docusign::ArrayOfString1
931
+ # startAtIndex - SOAP::SOAPNonNegativeInteger
932
+ # aCStatus - Docusign::EnvelopeACStatusCode
933
+ class EnvelopeStatusFilter
934
+ attr_accessor :userInfo
935
+ attr_accessor :accountId
936
+ attr_accessor :beginDateTime
937
+ attr_accessor :endDateTime
938
+ attr_accessor :statuses
939
+ attr_accessor :envelopeIds
940
+ attr_accessor :startAtIndex
941
+ attr_accessor :aCStatus
942
+
943
+ def initialize(userInfo = nil, accountId = nil, beginDateTime = nil, endDateTime = nil, statuses = nil, envelopeIds = nil, startAtIndex = nil, aCStatus = nil)
944
+ @userInfo = userInfo
945
+ @accountId = accountId
946
+ @beginDateTime = beginDateTime
947
+ @endDateTime = endDateTime
948
+ @statuses = statuses
949
+ @envelopeIds = envelopeIds
950
+ @startAtIndex = startAtIndex
951
+ @aCStatus = aCStatus
952
+ end
953
+ end
954
+
955
+ # {http://www.docusign.net/API/3.0}UserInfo
956
+ # userName - SOAP::SOAPString
957
+ # email - SOAP::SOAPString
958
+ class UserInfo
959
+ attr_accessor :userName
960
+ attr_accessor :email
961
+
962
+ def initialize(userName = nil, email = nil)
963
+ @userName = userName
964
+ @email = email
965
+ end
966
+ end
967
+
968
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusFilterBeginDateTime
969
+ # xmlattr_statusQualifier - SOAP::SOAPString
970
+ class EnvelopeStatusFilterBeginDateTime < ::String
971
+ AttrStatusQualifier = XSD::QName.new(nil, "statusQualifier")
972
+
973
+ def __xmlattr
974
+ @__xmlattr ||= {}
975
+ end
976
+
977
+ def xmlattr_statusQualifier
978
+ __xmlattr[AttrStatusQualifier]
979
+ end
980
+
981
+ def xmlattr_statusQualifier=(value)
982
+ __xmlattr[AttrStatusQualifier] = value
983
+ end
984
+
985
+ def initialize(*arg)
986
+ super
987
+ @__xmlattr = {}
988
+ end
989
+ end
990
+
991
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatusCode
992
+ class ArrayOfEnvelopeStatusCode < ::Array
993
+ end
994
+
995
+ # {http://www.docusign.net/API/3.0}ArrayOfString1
996
+ class ArrayOfString1 < ::Array
997
+ end
998
+
999
+ # {http://www.docusign.net/API/3.0}FilteredEnvelopeStatuses
1000
+ # resultSetSize - SOAP::SOAPInt
1001
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
1002
+ # envelopeStatuses - Docusign::ArrayOfEnvelopeStatus
1003
+ class FilteredEnvelopeStatuses
1004
+ attr_accessor :resultSetSize
1005
+ attr_accessor :envelopeStatusFilter
1006
+ attr_accessor :envelopeStatuses
1007
+
1008
+ def initialize(resultSetSize = nil, envelopeStatusFilter = nil, envelopeStatuses = nil)
1009
+ @resultSetSize = resultSetSize
1010
+ @envelopeStatusFilter = envelopeStatusFilter
1011
+ @envelopeStatuses = envelopeStatuses
1012
+ end
1013
+ end
1014
+
1015
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatus
1016
+ class ArrayOfEnvelopeStatus < ::Array
1017
+ end
1018
+
1019
+ # {http://www.docusign.net/API/3.0}RecipientEsignList
1020
+ # accountId - SOAP::SOAPString
1021
+ # recipientEsign - Docusign::ArrayOfRecipientEsign
1022
+ class RecipientEsignList
1023
+ attr_accessor :accountId
1024
+ attr_accessor :recipientEsign
1025
+
1026
+ def initialize(accountId = nil, recipientEsign = nil)
1027
+ @accountId = accountId
1028
+ @recipientEsign = recipientEsign
1029
+ end
1030
+ end
1031
+
1032
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientEsign
1033
+ class ArrayOfRecipientEsign < ::Array
1034
+ end
1035
+
1036
+ # {http://www.docusign.net/API/3.0}RecipientEsign
1037
+ # userName - SOAP::SOAPString
1038
+ # email - SOAP::SOAPString
1039
+ # esign - SOAP::SOAPBoolean
1040
+ class RecipientEsign
1041
+ attr_accessor :userName
1042
+ attr_accessor :email
1043
+ attr_accessor :esign
1044
+
1045
+ def initialize(userName = nil, email = nil, esign = nil)
1046
+ @userName = userName
1047
+ @email = email
1048
+ @esign = esign
1049
+ end
1050
+ end
1051
+
1052
+ # {http://www.docusign.net/API/3.0}VoidEnvelopeStatus
1053
+ # voidSuccess - SOAP::SOAPBoolean
1054
+ class VoidEnvelopeStatus
1055
+ attr_accessor :voidSuccess
1056
+
1057
+ def initialize(voidSuccess = nil)
1058
+ @voidSuccess = voidSuccess
1059
+ end
1060
+ end
1061
+
1062
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertion
1063
+ # assertionID - SOAP::SOAPString
1064
+ # authenticationInstant - SOAP::SOAPDateTime
1065
+ # authenticationMethod - Docusign::RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
1066
+ # securityDomain - SOAP::SOAPString
1067
+ class RequestRecipientTokenAuthenticationAssertion
1068
+ attr_accessor :assertionID
1069
+ attr_accessor :authenticationInstant
1070
+ attr_accessor :authenticationMethod
1071
+ attr_accessor :securityDomain
1072
+
1073
+ def initialize(assertionID = nil, authenticationInstant = nil, authenticationMethod = nil, securityDomain = nil)
1074
+ @assertionID = assertionID
1075
+ @authenticationInstant = authenticationInstant
1076
+ @authenticationMethod = authenticationMethod
1077
+ @securityDomain = securityDomain
1078
+ end
1079
+ end
1080
+
1081
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenClientURLs
1082
+ # onSigningComplete - SOAP::SOAPString
1083
+ # onViewingComplete - SOAP::SOAPString
1084
+ # onCancel - SOAP::SOAPString
1085
+ # onDecline - SOAP::SOAPString
1086
+ # onSessionTimeout - SOAP::SOAPString
1087
+ # onTTLExpired - SOAP::SOAPString
1088
+ # onException - SOAP::SOAPString
1089
+ # onAccessCodeFailed - SOAP::SOAPString
1090
+ # onIdCheckFailed - SOAP::SOAPString
1091
+ class RequestRecipientTokenClientURLs
1092
+ attr_accessor :onSigningComplete
1093
+ attr_accessor :onViewingComplete
1094
+ attr_accessor :onCancel
1095
+ attr_accessor :onDecline
1096
+ attr_accessor :onSessionTimeout
1097
+ attr_accessor :onTTLExpired
1098
+ attr_accessor :onException
1099
+ attr_accessor :onAccessCodeFailed
1100
+ attr_accessor :onIdCheckFailed
1101
+
1102
+ def initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil)
1103
+ @onSigningComplete = onSigningComplete
1104
+ @onViewingComplete = onViewingComplete
1105
+ @onCancel = onCancel
1106
+ @onDecline = onDecline
1107
+ @onSessionTimeout = onSessionTimeout
1108
+ @onTTLExpired = onTTLExpired
1109
+ @onException = onException
1110
+ @onAccessCodeFailed = onAccessCodeFailed
1111
+ @onIdCheckFailed = onIdCheckFailed
1112
+ end
1113
+ end
1114
+
1115
+ # {http://www.docusign.net/API/3.0}TransferEnvelopeStatus
1116
+ # transferEnvelopeSuccess - SOAP::SOAPBoolean
1117
+ class TransferEnvelopeStatus
1118
+ attr_accessor :transferEnvelopeSuccess
1119
+
1120
+ def initialize(transferEnvelopeSuccess = nil)
1121
+ @transferEnvelopeSuccess = transferEnvelopeSuccess
1122
+ end
1123
+ end
1124
+
1125
+ # {http://www.docusign.net/API/3.0}AccountMembershipFeaturesList
1126
+ # email - SOAP::SOAPString
1127
+ # userName - SOAP::SOAPString
1128
+ # enabledFeaturesSet - Docusign::ArrayOfString2
1129
+ class AccountMembershipFeaturesList
1130
+ attr_accessor :email
1131
+ attr_accessor :userName
1132
+ attr_accessor :enabledFeaturesSet
1133
+
1134
+ def initialize(email = nil, userName = nil, enabledFeaturesSet = nil)
1135
+ @email = email
1136
+ @userName = userName
1137
+ @enabledFeaturesSet = enabledFeaturesSet
1138
+ end
1139
+ end
1140
+
1141
+ # {http://www.docusign.net/API/3.0}ArrayOfString2
1142
+ class ArrayOfString2 < ::Array
1143
+ end
1144
+
1145
+ # {http://www.docusign.net/API/3.0}AuthoritativeCopyExportStatus
1146
+ # authoritativeCopyExportSuccess - SOAP::SOAPBoolean
1147
+ # envelopeId - SOAP::SOAPString
1148
+ # exportKey - SOAP::SOAPString
1149
+ class AuthoritativeCopyExportStatus
1150
+ attr_accessor :authoritativeCopyExportSuccess
1151
+ attr_accessor :envelopeId
1152
+ attr_accessor :exportKey
1153
+
1154
+ def initialize(authoritativeCopyExportSuccess = nil, envelopeId = nil, exportKey = nil)
1155
+ @authoritativeCopyExportSuccess = authoritativeCopyExportSuccess
1156
+ @envelopeId = envelopeId
1157
+ @exportKey = exportKey
1158
+ end
1159
+ end
1160
+
1161
+ # {http://www.docusign.net/API/3.0}AuthoritativeCopyExportDocuments
1162
+ # envelopeId - SOAP::SOAPString
1163
+ # transactionId - SOAP::SOAPString
1164
+ # count - SOAP::SOAPInt
1165
+ # documentPDF - Docusign::DocumentPDF
1166
+ class AuthoritativeCopyExportDocuments
1167
+ attr_accessor :envelopeId
1168
+ attr_accessor :transactionId
1169
+ attr_accessor :count
1170
+ attr_accessor :documentPDF
1171
+
1172
+ def initialize(envelopeId = nil, transactionId = nil, count = nil, documentPDF = [])
1173
+ @envelopeId = envelopeId
1174
+ @transactionId = transactionId
1175
+ @count = count
1176
+ @documentPDF = documentPDF
1177
+ end
1178
+ end
1179
+
1180
+ # {http://www.docusign.net/API/3.0}RecipientTypeCode
1181
+ class RecipientTypeCode < ::String
1182
+ CarbonCopy = RecipientTypeCode.new("CarbonCopy")
1183
+ CertifiedDelivery = RecipientTypeCode.new("CertifiedDelivery")
1184
+ Signer = RecipientTypeCode.new("Signer")
1185
+ end
1186
+
1187
+ # {http://www.docusign.net/API/3.0}FontStyleCode
1188
+ class FontStyleCode < ::String
1189
+ BradleyHandITC = FontStyleCode.new("BradleyHandITC")
1190
+ Freehand575 = FontStyleCode.new("Freehand575")
1191
+ KaufmannBT = FontStyleCode.new("KaufmannBT")
1192
+ LuciaBT = FontStyleCode.new("LuciaBT")
1193
+ Mistral = FontStyleCode.new("Mistral")
1194
+ RageItalic = FontStyleCode.new("RageItalic")
1195
+ end
1196
+
1197
+ # {http://www.docusign.net/API/3.0}DisplayLevelCode
1198
+ class DisplayLevelCode < ::String
1199
+ DoNotDisplay = DisplayLevelCode.new("DoNotDisplay")
1200
+ Editable = DisplayLevelCode.new("Editable")
1201
+ ReadOnly = DisplayLevelCode.new("ReadOnly")
1202
+ end
1203
+
1204
+ # {http://www.docusign.net/API/3.0}UnitTypeCode
1205
+ class UnitTypeCode < ::String
1206
+ Cms = UnitTypeCode.new("Cms")
1207
+ Inches = UnitTypeCode.new("Inches")
1208
+ Mms = UnitTypeCode.new("Mms")
1209
+ Pixels = UnitTypeCode.new("Pixels")
1210
+ end
1211
+
1212
+ # {http://www.docusign.net/API/3.0}TabTypeCode
1213
+ class TabTypeCode < ::String
1214
+ Company = TabTypeCode.new("Company")
1215
+ Custom = TabTypeCode.new("Custom")
1216
+ DateSigned = TabTypeCode.new("DateSigned")
1217
+ EnvelopeID = TabTypeCode.new("EnvelopeID")
1218
+ FullName = TabTypeCode.new("FullName")
1219
+ InitialHere = TabTypeCode.new("InitialHere")
1220
+ InitialHereOptional = TabTypeCode.new("InitialHereOptional")
1221
+ SignHere = TabTypeCode.new("SignHere")
1222
+ Title = TabTypeCode.new("Title")
1223
+ end
1224
+
1225
+ # {http://www.docusign.net/API/3.0}CustomTabType
1226
+ class CustomTabType < ::String
1227
+ Checkbox = CustomTabType.new("Checkbox")
1228
+ Date = CustomTabType.new("Date")
1229
+ Email = CustomTabType.new("Email")
1230
+ List = CustomTabType.new("List")
1231
+ Number = CustomTabType.new("Number")
1232
+ Radio = CustomTabType.new("Radio")
1233
+ SSN = CustomTabType.new("SSN")
1234
+ Text = CustomTabType.new("Text")
1235
+ ZIP5 = CustomTabType.new("ZIP5")
1236
+ ZIP5DASH4 = CustomTabType.new("ZIP5DASH4")
1237
+ end
1238
+
1239
+ # {http://www.docusign.net/API/3.0}SigningLocationCode
1240
+ class SigningLocationCode < ::String
1241
+ InPerson = SigningLocationCode.new("InPerson")
1242
+ Online = SigningLocationCode.new("Online")
1243
+ end
1244
+
1245
+ # {http://www.docusign.net/API/3.0}VaultingModeCode
1246
+ class VaultingModeCode < ::String
1247
+ EODAuthoritativeCopy = VaultingModeCode.new("EODAuthoritativeCopy")
1248
+ EODeStore = VaultingModeCode.new("EODeStore")
1249
+ None = VaultingModeCode.new("None")
1250
+ end
1251
+
1252
+ # {http://www.docusign.net/API/3.0}RecipientStatusCode
1253
+ class RecipientStatusCode < ::String
1254
+ Completed = RecipientStatusCode.new("Completed")
1255
+ Created = RecipientStatusCode.new("Created")
1256
+ Declined = RecipientStatusCode.new("Declined")
1257
+ Delivered = RecipientStatusCode.new("Delivered")
1258
+ Sent = RecipientStatusCode.new("Sent")
1259
+ Signed = RecipientStatusCode.new("Signed")
1260
+ end
1261
+
1262
+ # {http://www.docusign.net/API/3.0}EventStatusCode
1263
+ class EventStatusCode < ::String
1264
+ Failed = EventStatusCode.new("Failed")
1265
+ Passed = EventStatusCode.new("Passed")
1266
+ end
1267
+
1268
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusCode
1269
+ class EnvelopeStatusCode < ::String
1270
+ Any = EnvelopeStatusCode.new("Any")
1271
+ Completed = EnvelopeStatusCode.new("Completed")
1272
+ Created = EnvelopeStatusCode.new("Created")
1273
+ Declined = EnvelopeStatusCode.new("Declined")
1274
+ Deleted = EnvelopeStatusCode.new("Deleted")
1275
+ Delivered = EnvelopeStatusCode.new("Delivered")
1276
+ Sent = EnvelopeStatusCode.new("Sent")
1277
+ Signed = EnvelopeStatusCode.new("Signed")
1278
+ TimedOut = EnvelopeStatusCode.new("TimedOut")
1279
+ Voided = EnvelopeStatusCode.new("Voided")
1280
+ end
1281
+
1282
+ # {http://www.docusign.net/API/3.0}EnvelopeACStatusCode
1283
+ class EnvelopeACStatusCode < ::String
1284
+ AuthoritativeCopy = EnvelopeACStatusCode.new("AuthoritativeCopy")
1285
+ AuthoritativeCopyExportPending = EnvelopeACStatusCode.new("AuthoritativeCopyExportPending")
1286
+ AuthoritativeCopyExported = EnvelopeACStatusCode.new("AuthoritativeCopyExported")
1287
+ DepositFailed = EnvelopeACStatusCode.new("DepositFailed")
1288
+ DepositPending = EnvelopeACStatusCode.new("DepositPending")
1289
+ Deposited = EnvelopeACStatusCode.new("Deposited")
1290
+ DepositedEO = EnvelopeACStatusCode.new("DepositedEO")
1291
+ Original = EnvelopeACStatusCode.new("Original")
1292
+ Transferred = EnvelopeACStatusCode.new("Transferred")
1293
+ Unknown = EnvelopeACStatusCode.new("Unknown")
1294
+ end
1295
+
1296
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
1297
+ class RequestRecipientTokenAuthenticationAssertionAuthenticationMethod < ::String
1298
+ Biometric = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Biometric")
1299
+ Email = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Email")
1300
+ HTTPBasicAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("HTTPBasicAuth")
1301
+ Kerberos = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Kerberos")
1302
+ None = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("None")
1303
+ PaperDocuments = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("PaperDocuments")
1304
+ Password = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Password")
1305
+ RSASecureID = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("RSASecureID")
1306
+ SSLMutualAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SSLMutualAuth")
1307
+ SingleSignOn_CASiteminder = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_CASiteminder")
1308
+ SingleSignOn_InfoCard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_InfoCard")
1309
+ SingleSignOn_MicrosoftActiveDirectory = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_MicrosoftActiveDirectory")
1310
+ SingleSignOn_Other = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Other")
1311
+ SingleSignOn_Passport = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Passport")
1312
+ SingleSignOn_SAML = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_SAML")
1313
+ Smartcard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Smartcard")
1314
+ X509Certificate = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("X509Certificate")
1315
+ end
1316
+
1317
+ # {http://www.docusign.net/API/3.0}CreateEnvelope
1318
+ # envelope - Docusign::Envelope
1319
+ class CreateEnvelope
1320
+ attr_accessor :envelope
1321
+
1322
+ def initialize(envelope = nil)
1323
+ @envelope = envelope
1324
+ end
1325
+ end
1326
+
1327
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeResponse
1328
+ # createEnvelopeResult - Docusign::EnvelopeStatus
1329
+ class CreateEnvelopeResponse
1330
+ attr_accessor :createEnvelopeResult
1331
+
1332
+ def initialize(createEnvelopeResult = nil)
1333
+ @createEnvelopeResult = createEnvelopeResult
1334
+ end
1335
+ end
1336
+
1337
+ # {http://www.docusign.net/API/3.0}CreateAndSendEnvelope
1338
+ # envelope - Docusign::Envelope
1339
+ class CreateAndSendEnvelope
1340
+ attr_accessor :envelope
1341
+
1342
+ def initialize(envelope = nil)
1343
+ @envelope = envelope
1344
+ end
1345
+ end
1346
+
1347
+ # {http://www.docusign.net/API/3.0}CreateAndSendEnvelopeResponse
1348
+ # createAndSendEnvelopeResult - Docusign::EnvelopeStatus
1349
+ class CreateAndSendEnvelopeResponse
1350
+ attr_accessor :createAndSendEnvelopeResult
1351
+
1352
+ def initialize(createAndSendEnvelopeResult = nil)
1353
+ @createAndSendEnvelopeResult = createAndSendEnvelopeResult
1354
+ end
1355
+ end
1356
+
1357
+ # {http://www.docusign.net/API/3.0}CorrectAndResendEnvelope
1358
+ # correction - Docusign::Correction
1359
+ class CorrectAndResendEnvelope
1360
+ attr_accessor :correction
1361
+
1362
+ def initialize(correction = nil)
1363
+ @correction = correction
1364
+ end
1365
+ end
1366
+
1367
+ # {http://www.docusign.net/API/3.0}CorrectAndResendEnvelopeResponse
1368
+ # correctAndResendEnvelopeResult - Docusign::CorrectionStatus
1369
+ class CorrectAndResendEnvelopeResponse
1370
+ attr_accessor :correctAndResendEnvelopeResult
1371
+
1372
+ def initialize(correctAndResendEnvelopeResult = nil)
1373
+ @correctAndResendEnvelopeResult = correctAndResendEnvelopeResult
1374
+ end
1375
+ end
1376
+
1377
+ # {http://www.docusign.net/API/3.0}RequestPDF
1378
+ # envelopeID - SOAP::SOAPString
1379
+ class RequestPDF
1380
+ attr_accessor :envelopeID
1381
+
1382
+ def initialize(envelopeID = nil)
1383
+ @envelopeID = envelopeID
1384
+ end
1385
+ end
1386
+
1387
+ # {http://www.docusign.net/API/3.0}RequestPDFResponse
1388
+ # requestPDFResult - Docusign::EnvelopePDF
1389
+ class RequestPDFResponse
1390
+ attr_accessor :requestPDFResult
1391
+
1392
+ def initialize(requestPDFResult = nil)
1393
+ @requestPDFResult = requestPDFResult
1394
+ end
1395
+ end
1396
+
1397
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFs
1398
+ # envelopeID - SOAP::SOAPString
1399
+ class RequestDocumentPDFs
1400
+ attr_accessor :envelopeID
1401
+
1402
+ def initialize(envelopeID = nil)
1403
+ @envelopeID = envelopeID
1404
+ end
1405
+ end
1406
+
1407
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsResponse
1408
+ # requestDocumentPDFsResult - Docusign::DocumentPDFs
1409
+ class RequestDocumentPDFsResponse
1410
+ attr_accessor :requestDocumentPDFsResult
1411
+
1412
+ def initialize(requestDocumentPDFsResult = nil)
1413
+ @requestDocumentPDFsResult = requestDocumentPDFsResult
1414
+ end
1415
+ end
1416
+
1417
+ # {http://www.docusign.net/API/3.0}RequestStatus
1418
+ # envelopeID - SOAP::SOAPString
1419
+ class RequestStatus
1420
+ attr_accessor :envelopeID
1421
+
1422
+ def initialize(envelopeID = nil)
1423
+ @envelopeID = envelopeID
1424
+ end
1425
+ end
1426
+
1427
+ # {http://www.docusign.net/API/3.0}RequestStatusResponse
1428
+ # requestStatusResult - Docusign::EnvelopeStatus
1429
+ class RequestStatusResponse
1430
+ attr_accessor :requestStatusResult
1431
+
1432
+ def initialize(requestStatusResult = nil)
1433
+ @requestStatusResult = requestStatusResult
1434
+ end
1435
+ end
1436
+
1437
+ # {http://www.docusign.net/API/3.0}RequestStatuses
1438
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
1439
+ class RequestStatuses
1440
+ attr_accessor :envelopeStatusFilter
1441
+
1442
+ def initialize(envelopeStatusFilter = nil)
1443
+ @envelopeStatusFilter = envelopeStatusFilter
1444
+ end
1445
+ end
1446
+
1447
+ # {http://www.docusign.net/API/3.0}RequestStatusesResponse
1448
+ # requestStatusesResult - Docusign::FilteredEnvelopeStatuses
1449
+ class RequestStatusesResponse
1450
+ attr_accessor :requestStatusesResult
1451
+
1452
+ def initialize(requestStatusesResult = nil)
1453
+ @requestStatusesResult = requestStatusesResult
1454
+ end
1455
+ end
1456
+
1457
+ # {http://www.docusign.net/API/3.0}GetRecipientEsignList
1458
+ # userName - SOAP::SOAPString
1459
+ # senderEmail - SOAP::SOAPString
1460
+ # senderAccountId - SOAP::SOAPString
1461
+ # recipientEmail - SOAP::SOAPString
1462
+ class GetRecipientEsignList
1463
+ attr_accessor :userName
1464
+ attr_accessor :senderEmail
1465
+ attr_accessor :senderAccountId
1466
+ attr_accessor :recipientEmail
1467
+
1468
+ def initialize(userName = nil, senderEmail = nil, senderAccountId = nil, recipientEmail = nil)
1469
+ @userName = userName
1470
+ @senderEmail = senderEmail
1471
+ @senderAccountId = senderAccountId
1472
+ @recipientEmail = recipientEmail
1473
+ end
1474
+ end
1475
+
1476
+ # {http://www.docusign.net/API/3.0}GetRecipientEsignListResponse
1477
+ # getRecipientEsignListResult - Docusign::RecipientEsignList
1478
+ class GetRecipientEsignListResponse
1479
+ attr_accessor :getRecipientEsignListResult
1480
+
1481
+ def initialize(getRecipientEsignListResult = nil)
1482
+ @getRecipientEsignListResult = getRecipientEsignListResult
1483
+ end
1484
+ end
1485
+
1486
+ # {http://www.docusign.net/API/3.0}VoidEnvelope
1487
+ # envelopeID - SOAP::SOAPString
1488
+ # reason - SOAP::SOAPString
1489
+ class VoidEnvelope
1490
+ attr_accessor :envelopeID
1491
+ attr_accessor :reason
1492
+
1493
+ def initialize(envelopeID = nil, reason = nil)
1494
+ @envelopeID = envelopeID
1495
+ @reason = reason
1496
+ end
1497
+ end
1498
+
1499
+ # {http://www.docusign.net/API/3.0}VoidEnvelopeResponse
1500
+ # voidEnvelopeResult - Docusign::VoidEnvelopeStatus
1501
+ class VoidEnvelopeResponse
1502
+ attr_accessor :voidEnvelopeResult
1503
+
1504
+ def initialize(voidEnvelopeResult = nil)
1505
+ @voidEnvelopeResult = voidEnvelopeResult
1506
+ end
1507
+ end
1508
+
1509
+ # {http://www.docusign.net/API/3.0}RequestRecipientToken
1510
+ # envelopeID - SOAP::SOAPString
1511
+ # clientUserID - SOAP::SOAPString
1512
+ # username - SOAP::SOAPString
1513
+ # email - SOAP::SOAPString
1514
+ # authenticationAssertion - Docusign::RequestRecipientTokenAuthenticationAssertion
1515
+ # clientURLs - Docusign::RequestRecipientTokenClientURLs
1516
+ class RequestRecipientToken
1517
+ attr_accessor :envelopeID
1518
+ attr_accessor :clientUserID
1519
+ attr_accessor :username
1520
+ attr_accessor :email
1521
+ attr_accessor :authenticationAssertion
1522
+ attr_accessor :clientURLs
1523
+
1524
+ def initialize(envelopeID = nil, clientUserID = nil, username = nil, email = nil, authenticationAssertion = nil, clientURLs = nil)
1525
+ @envelopeID = envelopeID
1526
+ @clientUserID = clientUserID
1527
+ @username = username
1528
+ @email = email
1529
+ @authenticationAssertion = authenticationAssertion
1530
+ @clientURLs = clientURLs
1531
+ end
1532
+ end
1533
+
1534
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenResponse
1535
+ # requestRecipientTokenResult - SOAP::SOAPString
1536
+ class RequestRecipientTokenResponse
1537
+ attr_accessor :requestRecipientTokenResult
1538
+
1539
+ def initialize(requestRecipientTokenResult = nil)
1540
+ @requestRecipientTokenResult = requestRecipientTokenResult
1541
+ end
1542
+ end
1543
+
1544
+ # {http://www.docusign.net/API/3.0}TransferEnvelope
1545
+ # envelopeID - SOAP::SOAPString
1546
+ # accountID - SOAP::SOAPString
1547
+ # userID - SOAP::SOAPString
1548
+ class TransferEnvelope
1549
+ attr_accessor :envelopeID
1550
+ attr_accessor :accountID
1551
+ attr_accessor :userID
1552
+
1553
+ def initialize(envelopeID = nil, accountID = nil, userID = nil)
1554
+ @envelopeID = envelopeID
1555
+ @accountID = accountID
1556
+ @userID = userID
1557
+ end
1558
+ end
1559
+
1560
+ # {http://www.docusign.net/API/3.0}TransferEnvelopeResponse
1561
+ # transferEnvelopeResult - Docusign::TransferEnvelopeStatus
1562
+ class TransferEnvelopeResponse
1563
+ attr_accessor :transferEnvelopeResult
1564
+
1565
+ def initialize(transferEnvelopeResult = nil)
1566
+ @transferEnvelopeResult = transferEnvelopeResult
1567
+ end
1568
+ end
1569
+
1570
+ # {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesList
1571
+ # accountId - SOAP::SOAPString
1572
+ class GetAccountMembershipFeaturesList
1573
+ attr_accessor :accountId
1574
+
1575
+ def initialize(accountId = nil)
1576
+ @accountId = accountId
1577
+ end
1578
+ end
1579
+
1580
+ # {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesListResponse
1581
+ # getAccountMembershipFeaturesListResult - Docusign::AccountMembershipFeaturesList
1582
+ class GetAccountMembershipFeaturesListResponse
1583
+ attr_accessor :getAccountMembershipFeaturesListResult
1584
+
1585
+ def initialize(getAccountMembershipFeaturesListResult = nil)
1586
+ @getAccountMembershipFeaturesListResult = getAccountMembershipFeaturesListResult
1587
+ end
1588
+ end
1589
+
1590
+ # {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExport
1591
+ # envelopeId - SOAP::SOAPString
1592
+ # transactionId - SOAP::SOAPString
1593
+ # checkSumHash - SOAP::SOAPBase64
1594
+ class AcknowledgeAuthoritativeCopyExport
1595
+ attr_accessor :envelopeId
1596
+ attr_accessor :transactionId
1597
+ attr_accessor :checkSumHash
1598
+
1599
+ def initialize(envelopeId = nil, transactionId = nil, checkSumHash = nil)
1600
+ @envelopeId = envelopeId
1601
+ @transactionId = transactionId
1602
+ @checkSumHash = checkSumHash
1603
+ end
1604
+ end
1605
+
1606
+ # {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExportResponse
1607
+ # acknowledgeAuthoritativeCopyExportResult - Docusign::AuthoritativeCopyExportStatus
1608
+ class AcknowledgeAuthoritativeCopyExportResponse
1609
+ attr_accessor :acknowledgeAuthoritativeCopyExportResult
1610
+
1611
+ def initialize(acknowledgeAuthoritativeCopyExportResult = nil)
1612
+ @acknowledgeAuthoritativeCopyExportResult = acknowledgeAuthoritativeCopyExportResult
1613
+ end
1614
+ end
1615
+
1616
+ # {http://www.docusign.net/API/3.0}ExportAuthoritativeCopy
1617
+ # envelopeId - SOAP::SOAPString
1618
+ class ExportAuthoritativeCopy
1619
+ attr_accessor :envelopeId
1620
+
1621
+ def initialize(envelopeId = nil)
1622
+ @envelopeId = envelopeId
1623
+ end
1624
+ end
1625
+
1626
+ # {http://www.docusign.net/API/3.0}ExportAuthoritativeCopyResponse
1627
+ # exportAuthoritativeCopyResult - Docusign::AuthoritativeCopyExportDocuments
1628
+ class ExportAuthoritativeCopyResponse
1629
+ attr_accessor :exportAuthoritativeCopyResult
1630
+
1631
+ def initialize(exportAuthoritativeCopyResult = nil)
1632
+ @exportAuthoritativeCopyResult = exportAuthoritativeCopyResult
1633
+ end
1634
+ end
1635
+
1636
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEvents
1637
+ # envelopeId - SOAP::SOAPString
1638
+ class EnvelopeAuditEvents
1639
+ attr_accessor :envelopeId
1640
+
1641
+ def initialize(envelopeId = nil)
1642
+ @envelopeId = envelopeId
1643
+ end
1644
+ end
1645
+
1646
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResponse
1647
+ # envelopeAuditEventsResult - Docusign::EnvelopeAuditEventsResponse::EnvelopeAuditEventsResult
1648
+ class EnvelopeAuditEventsResponse
1649
+
1650
+ # inner class for member: EnvelopeAuditEventsResult
1651
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResult
1652
+ class EnvelopeAuditEventsResult
1653
+ attr_reader :__xmlele_any
1654
+
1655
+ def set_any(elements)
1656
+ @__xmlele_any = elements
1657
+ end
1658
+
1659
+ def initialize
1660
+ @__xmlele_any = nil
1661
+ end
1662
+ end
1663
+
1664
+ attr_accessor :envelopeAuditEventsResult
1665
+
1666
+ def initialize(envelopeAuditEventsResult = nil)
1667
+ @envelopeAuditEventsResult = envelopeAuditEventsResult
1668
+ end
1669
+ end
1670
+
1671
+ # {http://www.docusign.net/API/3.0}Ping
1672
+ class Ping
1673
+ def initialize
1674
+ end
1675
+ end
1676
+
1677
+ # {http://www.docusign.net/API/3.0}PingResponse
1678
+ # pingResult - SOAP::SOAPBoolean
1679
+ class PingResponse
1680
+ attr_accessor :pingResult
1681
+
1682
+ def initialize(pingResult = nil)
1683
+ @pingResult = pingResult
1684
+ end
1685
+ end
1686
+
1687
+
1688
+ end