docusign 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,30 @@
1
+ require 'docusign'
2
+
3
+ module Docusign
4
+ class Document
5
+ attr_accessor :tabs
6
+ attr_writer :tab_builder
7
+
8
+ def tabs(recipient = nil, &block)
9
+ @tabs ||= Docusign::ArrayOfTab.new
10
+
11
+ return @tabs unless recipient || block_given?
12
+
13
+ self.tab_builder = Docusign::Builder::TabBuilder.new(self, recipient)
14
+
15
+ returning @tabs do |a|
16
+ yield self if block_given?
17
+ end
18
+ end
19
+
20
+ def tab(options = {}, &block)
21
+ returning tab_builder.build(options, &block) do |t|
22
+ tabs << t
23
+ end
24
+ end
25
+
26
+ def tab_builder
27
+ @tab_builder ||= Docusign::Builder::TabBuilder.new(self)
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,2624 @@
1
+ # Copyright (C) DocuSign, Inc. All rights reserved.
2
+ #
3
+ # This source code is intended only as a supplement to DocuSign SDK
4
+ # and/or on-line documentation.
5
+ #
6
+ # This sample is designed to demonstrate DocuSign features and is not intended
7
+ # for production use. Code and policy for a production application must be
8
+ # developed to meet the specific data and security requirements of the
9
+ # application.
10
+ #
11
+ # THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
12
+ # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
13
+ # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
16
+ require 'xsd/qname'
17
+
18
+ module Docusign
19
+
20
+
21
+ # {http://www.docusign.net/API/3.0}Envelope
22
+ # accountId - SOAP::SOAPString
23
+ # documents - Docusign::ArrayOfDocument
24
+ # recipients - Docusign::ArrayOfRecipient
25
+ # tabs - Docusign::ArrayOfTab
26
+ # subject - SOAP::SOAPString
27
+ # emailBlurb - SOAP::SOAPString
28
+ # signingLocation - Docusign::SigningLocationCode
29
+ # customFields - Docusign::ArrayOfCustomField
30
+ # vaultingOptions - Docusign::VaultingOptions
31
+ # autoNavigation - SOAP::SOAPBoolean
32
+ # envelopeIdStamping - SOAP::SOAPBoolean
33
+ # authoritativeCopy - SOAP::SOAPBoolean
34
+ # notification - Docusign::Notification
35
+ # envelopeAttachment - Docusign::ArrayOfAttachment
36
+ # enforceSignerVisibility - SOAP::SOAPBoolean
37
+ class Envelope
38
+ attr_accessor :accountId
39
+ attr_accessor :documents
40
+ attr_accessor :recipients
41
+ attr_accessor :tabs
42
+ attr_accessor :subject
43
+ attr_accessor :emailBlurb
44
+ attr_accessor :signingLocation
45
+ attr_accessor :customFields
46
+ attr_accessor :vaultingOptions
47
+ attr_accessor :autoNavigation
48
+ attr_accessor :envelopeIdStamping
49
+ attr_accessor :authoritativeCopy
50
+ attr_accessor :notification
51
+ attr_accessor :envelopeAttachment
52
+ attr_accessor :enforceSignerVisibility
53
+
54
+ 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, enforceSignerVisibility = nil)
55
+ @accountId = accountId
56
+ @documents = documents
57
+ @recipients = recipients
58
+ @tabs = tabs
59
+ @subject = subject
60
+ @emailBlurb = emailBlurb
61
+ @signingLocation = signingLocation
62
+ @customFields = customFields
63
+ @vaultingOptions = vaultingOptions
64
+ @autoNavigation = autoNavigation
65
+ @envelopeIdStamping = envelopeIdStamping
66
+ @authoritativeCopy = authoritativeCopy
67
+ @notification = notification
68
+ @envelopeAttachment = envelopeAttachment
69
+ @enforceSignerVisibility = enforceSignerVisibility
70
+ end
71
+ end
72
+
73
+ # {http://www.docusign.net/API/3.0}ArrayOfDocument
74
+ class ArrayOfDocument < ::Array
75
+ end
76
+
77
+ # {http://www.docusign.net/API/3.0}Document
78
+ # iD - SOAP::SOAPPositiveInteger
79
+ # name - SOAP::SOAPString
80
+ # pDFBytes - SOAP::SOAPBase64
81
+ # password - SOAP::SOAPString
82
+ # transformPdfFields - SOAP::SOAPBoolean
83
+ # fileExtension - SOAP::SOAPString
84
+ # matchBoxes - Docusign::ArrayOfMatchBox
85
+ class Document
86
+ attr_accessor :iD
87
+ attr_accessor :name
88
+ attr_accessor :pDFBytes
89
+ attr_accessor :password
90
+ attr_accessor :transformPdfFields
91
+ attr_accessor :fileExtension
92
+ attr_accessor :matchBoxes
93
+
94
+ def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil)
95
+ @iD = iD
96
+ @name = name
97
+ @pDFBytes = pDFBytes
98
+ @password = password
99
+ @transformPdfFields = transformPdfFields
100
+ @fileExtension = fileExtension
101
+ @matchBoxes = matchBoxes
102
+ end
103
+ end
104
+
105
+ # {http://www.docusign.net/API/3.0}ArrayOfMatchBox
106
+ class ArrayOfMatchBox < ::Array
107
+ end
108
+
109
+ # {http://www.docusign.net/API/3.0}MatchBox
110
+ # pageNumber - SOAP::SOAPPositiveInteger
111
+ # xPosition - SOAP::SOAPInt
112
+ # yPosition - SOAP::SOAPInt
113
+ # width - SOAP::SOAPInt
114
+ # height - SOAP::SOAPInt
115
+ class MatchBox
116
+ attr_accessor :pageNumber
117
+ attr_accessor :xPosition
118
+ attr_accessor :yPosition
119
+ attr_accessor :width
120
+ attr_accessor :height
121
+
122
+ def initialize(pageNumber = nil, xPosition = nil, yPosition = nil, width = nil, height = nil)
123
+ @pageNumber = pageNumber
124
+ @xPosition = xPosition
125
+ @yPosition = yPosition
126
+ @width = width
127
+ @height = height
128
+ end
129
+ end
130
+
131
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipient
132
+ class ArrayOfRecipient < ::Array
133
+ end
134
+
135
+ # {http://www.docusign.net/API/3.0}Recipient
136
+ # iD - SOAP::SOAPPositiveInteger
137
+ # userName - SOAP::SOAPString
138
+ # signerName - SOAP::SOAPString
139
+ # email - SOAP::SOAPString
140
+ # type - Docusign::RecipientTypeCode
141
+ # accessCode - SOAP::SOAPString
142
+ # addAccessCodeToEmail - SOAP::SOAPBoolean
143
+ # requireIDLookup - SOAP::SOAPBoolean
144
+ # iDCheckConfigurationName - SOAP::SOAPString
145
+ # signatureInfo - Docusign::RecipientSignatureInfo
146
+ # captiveInfo - Docusign::RecipientCaptiveInfo
147
+ # customFields - Docusign::ArrayOfString
148
+ # routingOrder - SOAP::SOAPUnsignedShort
149
+ # iDCheckInformationInput - Docusign::IDCheckInformationInput
150
+ # autoNavigation - SOAP::SOAPBoolean
151
+ # recipientAttachment - Docusign::ArrayOfAttachment
152
+ # note - SOAP::SOAPString
153
+ # roleName - SOAP::SOAPString
154
+ # templateLocked - SOAP::SOAPBoolean
155
+ # templateRequired - SOAP::SOAPBoolean
156
+ class Recipient
157
+ attr_accessor :iD
158
+ attr_accessor :userName
159
+ attr_accessor :signerName
160
+ attr_accessor :email
161
+ attr_accessor :type
162
+ attr_accessor :accessCode
163
+ attr_accessor :addAccessCodeToEmail
164
+ attr_accessor :requireIDLookup
165
+ attr_accessor :iDCheckConfigurationName
166
+ attr_accessor :signatureInfo
167
+ attr_accessor :captiveInfo
168
+ attr_accessor :customFields
169
+ attr_accessor :routingOrder
170
+ attr_accessor :iDCheckInformationInput
171
+ attr_accessor :autoNavigation
172
+ attr_accessor :recipientAttachment
173
+ attr_accessor :note
174
+ attr_accessor :roleName
175
+ attr_accessor :templateLocked
176
+ attr_accessor :templateRequired
177
+
178
+ def initialize(iD = nil, userName = nil, signerName = 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, roleName = nil, templateLocked = nil, templateRequired = nil)
179
+ @iD = iD
180
+ @userName = userName
181
+ @signerName = signerName
182
+ @email = email
183
+ @type = type
184
+ @accessCode = accessCode
185
+ @addAccessCodeToEmail = addAccessCodeToEmail
186
+ @requireIDLookup = requireIDLookup
187
+ @iDCheckConfigurationName = iDCheckConfigurationName
188
+ @signatureInfo = signatureInfo
189
+ @captiveInfo = captiveInfo
190
+ @customFields = customFields
191
+ @routingOrder = routingOrder
192
+ @iDCheckInformationInput = iDCheckInformationInput
193
+ @autoNavigation = autoNavigation
194
+ @recipientAttachment = recipientAttachment
195
+ @note = note
196
+ @roleName = roleName
197
+ @templateLocked = templateLocked
198
+ @templateRequired = templateRequired
199
+ end
200
+ end
201
+
202
+ # {http://www.docusign.net/API/3.0}RecipientSignatureInfo
203
+ # signatureName - SOAP::SOAPString
204
+ # signatureInitials - SOAP::SOAPString
205
+ # fontStyle - Docusign::FontStyleCode
206
+ class RecipientSignatureInfo
207
+ attr_accessor :signatureName
208
+ attr_accessor :signatureInitials
209
+ attr_accessor :fontStyle
210
+
211
+ def initialize(signatureName = nil, signatureInitials = nil, fontStyle = nil)
212
+ @signatureName = signatureName
213
+ @signatureInitials = signatureInitials
214
+ @fontStyle = fontStyle
215
+ end
216
+ end
217
+
218
+ # {http://www.docusign.net/API/3.0}RecipientCaptiveInfo
219
+ # clientUserId - SOAP::SOAPString
220
+ class RecipientCaptiveInfo
221
+ attr_accessor :clientUserId
222
+
223
+ def initialize(clientUserId = nil)
224
+ @clientUserId = clientUserId
225
+ end
226
+ end
227
+
228
+ # {http://www.docusign.net/API/3.0}ArrayOfString
229
+ class ArrayOfString < ::Array
230
+ end
231
+
232
+ # {http://www.docusign.net/API/3.0}IDCheckInformationInput
233
+ # addressInformationInput - Docusign::AddressInformationInput
234
+ # dOBInformationInput - Docusign::DOBInformationInput
235
+ # sSN4InformationInput - Docusign::SSN4InformationInput
236
+ # sSN9InformationInput - Docusign::SSN9InformationInput
237
+ class IDCheckInformationInput
238
+ attr_accessor :addressInformationInput
239
+ attr_accessor :dOBInformationInput
240
+ attr_accessor :sSN4InformationInput
241
+ attr_accessor :sSN9InformationInput
242
+
243
+ def initialize(addressInformationInput = nil, dOBInformationInput = nil, sSN4InformationInput = nil, sSN9InformationInput = nil)
244
+ @addressInformationInput = addressInformationInput
245
+ @dOBInformationInput = dOBInformationInput
246
+ @sSN4InformationInput = sSN4InformationInput
247
+ @sSN9InformationInput = sSN9InformationInput
248
+ end
249
+ end
250
+
251
+ # {http://www.docusign.net/API/3.0}AddressInformationInput
252
+ # addressInformation - Docusign::AddressInformation
253
+ # displayLevel - Docusign::DisplayLevelCode
254
+ # receiveInResponse - SOAP::SOAPBoolean
255
+ class AddressInformationInput
256
+ attr_accessor :addressInformation
257
+ attr_accessor :displayLevel
258
+ attr_accessor :receiveInResponse
259
+
260
+ def initialize(addressInformation = nil, displayLevel = nil, receiveInResponse = nil)
261
+ @addressInformation = addressInformation
262
+ @displayLevel = displayLevel
263
+ @receiveInResponse = receiveInResponse
264
+ end
265
+ end
266
+
267
+ # {http://www.docusign.net/API/3.0}AddressInformation
268
+ # street1 - SOAP::SOAPString
269
+ # street2 - SOAP::SOAPString
270
+ # city - SOAP::SOAPString
271
+ # state - SOAP::SOAPString
272
+ # zip - SOAP::SOAPString
273
+ # zipPlus4 - SOAP::SOAPString
274
+ class AddressInformation
275
+ attr_accessor :street1
276
+ attr_accessor :street2
277
+ attr_accessor :city
278
+ attr_accessor :state
279
+ attr_accessor :zip
280
+ attr_accessor :zipPlus4
281
+
282
+ def initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil)
283
+ @street1 = street1
284
+ @street2 = street2
285
+ @city = city
286
+ @state = state
287
+ @zip = zip
288
+ @zipPlus4 = zipPlus4
289
+ end
290
+ end
291
+
292
+ # {http://www.docusign.net/API/3.0}DOBInformationInput
293
+ # dOBInformation - Docusign::DOBInformation
294
+ # displayLevel - Docusign::DisplayLevelCode
295
+ # receiveInResponse - SOAP::SOAPBoolean
296
+ class DOBInformationInput
297
+ attr_accessor :dOBInformation
298
+ attr_accessor :displayLevel
299
+ attr_accessor :receiveInResponse
300
+
301
+ def initialize(dOBInformation = nil, displayLevel = nil, receiveInResponse = nil)
302
+ @dOBInformation = dOBInformation
303
+ @displayLevel = displayLevel
304
+ @receiveInResponse = receiveInResponse
305
+ end
306
+ end
307
+
308
+ # {http://www.docusign.net/API/3.0}DOBInformation
309
+ # dOB - SOAP::SOAPDateTime
310
+ class DOBInformation
311
+ attr_accessor :dOB
312
+
313
+ def initialize(dOB = nil)
314
+ @dOB = dOB
315
+ end
316
+ end
317
+
318
+ # {http://www.docusign.net/API/3.0}SSN4InformationInput
319
+ # sSN4Information - Docusign::SSN4Information
320
+ # displayLevel - Docusign::DisplayLevelCode
321
+ # receiveInResponse - SOAP::SOAPBoolean
322
+ class SSN4InformationInput
323
+ attr_accessor :sSN4Information
324
+ attr_accessor :displayLevel
325
+ attr_accessor :receiveInResponse
326
+
327
+ def initialize(sSN4Information = nil, displayLevel = nil, receiveInResponse = nil)
328
+ @sSN4Information = sSN4Information
329
+ @displayLevel = displayLevel
330
+ @receiveInResponse = receiveInResponse
331
+ end
332
+ end
333
+
334
+ # {http://www.docusign.net/API/3.0}SSN4Information
335
+ # sSN4 - SOAP::SOAPString
336
+ class SSN4Information
337
+ attr_accessor :sSN4
338
+
339
+ def initialize(sSN4 = nil)
340
+ @sSN4 = sSN4
341
+ end
342
+ end
343
+
344
+ # {http://www.docusign.net/API/3.0}SSN9InformationInput
345
+ # sSN9Information - Docusign::SSN9Information
346
+ # displayLevel - Docusign::DisplayLevelCode
347
+ class SSN9InformationInput
348
+ attr_accessor :sSN9Information
349
+ attr_accessor :displayLevel
350
+
351
+ def initialize(sSN9Information = nil, displayLevel = nil)
352
+ @sSN9Information = sSN9Information
353
+ @displayLevel = displayLevel
354
+ end
355
+ end
356
+
357
+ # {http://www.docusign.net/API/3.0}SSN9Information
358
+ # sSN9 - SOAP::SOAPString
359
+ class SSN9Information
360
+ attr_accessor :sSN9
361
+
362
+ def initialize(sSN9 = nil)
363
+ @sSN9 = sSN9
364
+ end
365
+ end
366
+
367
+ # {http://www.docusign.net/API/3.0}ArrayOfAttachment
368
+ class ArrayOfAttachment < ::Array
369
+ end
370
+
371
+ # {http://www.docusign.net/API/3.0}Attachment
372
+ # data - SOAP::SOAPBase64
373
+ # label - SOAP::SOAPString
374
+ # type - SOAP::SOAPString
375
+ class Attachment
376
+ attr_accessor :data
377
+ attr_accessor :label
378
+ attr_accessor :type
379
+
380
+ def initialize(data = nil, label = nil, type = nil)
381
+ @data = data
382
+ @label = label
383
+ @type = type
384
+ end
385
+ end
386
+
387
+ # {http://www.docusign.net/API/3.0}ArrayOfTab
388
+ class ArrayOfTab < ::Array
389
+ end
390
+
391
+ # {http://www.docusign.net/API/3.0}Tab
392
+ # documentID - SOAP::SOAPPositiveInteger
393
+ # recipientID - SOAP::SOAPPositiveInteger
394
+ # pageNumber - SOAP::SOAPNonNegativeInteger
395
+ # xPosition - SOAP::SOAPNonNegativeInteger
396
+ # yPosition - SOAP::SOAPNonNegativeInteger
397
+ # anchorTabItem - Docusign::AnchorTab
398
+ # type - Docusign::TabTypeCode
399
+ # name - SOAP::SOAPString
400
+ # tabLabel - SOAP::SOAPString
401
+ # value - SOAP::SOAPString
402
+ # customTabType - Docusign::CustomTabType
403
+ # customTabWidth - SOAP::SOAPInt
404
+ # customTabHeight - SOAP::SOAPInt
405
+ # customTabRequired - SOAP::SOAPBoolean
406
+ # customTabLocked - SOAP::SOAPBoolean
407
+ # customTabDisableAutoSize - SOAP::SOAPBoolean
408
+ # customTabListItems - SOAP::SOAPString
409
+ # customTabListValues - SOAP::SOAPString
410
+ # customTabListSelectedValue - SOAP::SOAPString
411
+ # customTabRadioGroupName - SOAP::SOAPString
412
+ # customTabValidationPattern - SOAP::SOAPString
413
+ # customTabValidationMessage - SOAP::SOAPString
414
+ # templateLocked - SOAP::SOAPBoolean
415
+ # templateRequired - SOAP::SOAPBoolean
416
+ class Tab
417
+ attr_accessor :documentID
418
+ attr_accessor :recipientID
419
+ attr_accessor :pageNumber
420
+ attr_accessor :xPosition
421
+ attr_accessor :yPosition
422
+ attr_accessor :anchorTabItem
423
+ attr_accessor :type
424
+ attr_accessor :name
425
+ attr_accessor :tabLabel
426
+ attr_accessor :value
427
+ attr_accessor :customTabType
428
+ attr_accessor :customTabWidth
429
+ attr_accessor :customTabHeight
430
+ attr_accessor :customTabRequired
431
+ attr_accessor :customTabLocked
432
+ attr_accessor :customTabDisableAutoSize
433
+ attr_accessor :customTabListItems
434
+ attr_accessor :customTabListValues
435
+ attr_accessor :customTabListSelectedValue
436
+ attr_accessor :customTabRadioGroupName
437
+ attr_accessor :customTabValidationPattern
438
+ attr_accessor :customTabValidationMessage
439
+ attr_accessor :templateLocked
440
+ attr_accessor :templateRequired
441
+
442
+ 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, customTabListValues = nil, customTabListSelectedValue = nil, customTabRadioGroupName = nil, customTabValidationPattern = nil, customTabValidationMessage = nil, templateLocked = nil, templateRequired = nil)
443
+ @documentID = documentID
444
+ @recipientID = recipientID
445
+ @pageNumber = pageNumber
446
+ @xPosition = xPosition
447
+ @yPosition = yPosition
448
+ @anchorTabItem = anchorTabItem
449
+ @type = type
450
+ @name = name
451
+ @tabLabel = tabLabel
452
+ @value = value
453
+ @customTabType = customTabType
454
+ @customTabWidth = customTabWidth
455
+ @customTabHeight = customTabHeight
456
+ @customTabRequired = customTabRequired
457
+ @customTabLocked = customTabLocked
458
+ @customTabDisableAutoSize = customTabDisableAutoSize
459
+ @customTabListItems = customTabListItems
460
+ @customTabListValues = customTabListValues
461
+ @customTabListSelectedValue = customTabListSelectedValue
462
+ @customTabRadioGroupName = customTabRadioGroupName
463
+ @customTabValidationPattern = customTabValidationPattern
464
+ @customTabValidationMessage = customTabValidationMessage
465
+ @templateLocked = templateLocked
466
+ @templateRequired = templateRequired
467
+ end
468
+ end
469
+
470
+ # {http://www.docusign.net/API/3.0}AnchorTab
471
+ # anchorTabString - SOAP::SOAPString
472
+ # xOffset - SOAP::SOAPDouble
473
+ # yOffset - SOAP::SOAPDouble
474
+ # unit - Docusign::UnitTypeCode
475
+ class AnchorTab
476
+ attr_accessor :anchorTabString
477
+ attr_accessor :xOffset
478
+ attr_accessor :yOffset
479
+ attr_accessor :unit
480
+
481
+ def initialize(anchorTabString = nil, xOffset = nil, yOffset = nil, unit = nil)
482
+ @anchorTabString = anchorTabString
483
+ @xOffset = xOffset
484
+ @yOffset = yOffset
485
+ @unit = unit
486
+ end
487
+ end
488
+
489
+ # {http://www.docusign.net/API/3.0}ArrayOfCustomField
490
+ class ArrayOfCustomField < ::Array
491
+ end
492
+
493
+ # {http://www.docusign.net/API/3.0}CustomField
494
+ # name - SOAP::SOAPString
495
+ # show - SOAP::SOAPString
496
+ # required - SOAP::SOAPString
497
+ # value - SOAP::SOAPString
498
+ class CustomField
499
+ attr_accessor :name
500
+ attr_accessor :show
501
+ attr_accessor :required
502
+ attr_accessor :value
503
+
504
+ def initialize(name = nil, show = nil, required = nil, value = nil)
505
+ @name = name
506
+ @show = show
507
+ @required = required
508
+ @value = value
509
+ end
510
+ end
511
+
512
+ # {http://www.docusign.net/API/3.0}VaultingOptions
513
+ # vaultingMode - Docusign::VaultingModeCode
514
+ # eODTransactionName - SOAP::SOAPString
515
+ # eODDocumentName - SOAP::SOAPString
516
+ # eODDocumentDescription - SOAP::SOAPString
517
+ class VaultingOptions
518
+ attr_accessor :vaultingMode
519
+ attr_accessor :eODTransactionName
520
+ attr_accessor :eODDocumentName
521
+ attr_accessor :eODDocumentDescription
522
+
523
+ def initialize(vaultingMode = nil, eODTransactionName = nil, eODDocumentName = nil, eODDocumentDescription = nil)
524
+ @vaultingMode = vaultingMode
525
+ @eODTransactionName = eODTransactionName
526
+ @eODDocumentName = eODDocumentName
527
+ @eODDocumentDescription = eODDocumentDescription
528
+ end
529
+ end
530
+
531
+ # {http://www.docusign.net/API/3.0}Notification
532
+ # useAccountDefaults - SOAP::SOAPBoolean
533
+ # reminders - Docusign::Reminders
534
+ # expirations - Docusign::Expirations
535
+ class Notification
536
+ attr_accessor :useAccountDefaults
537
+ attr_accessor :reminders
538
+ attr_accessor :expirations
539
+
540
+ def initialize(useAccountDefaults = nil, reminders = nil, expirations = nil)
541
+ @useAccountDefaults = useAccountDefaults
542
+ @reminders = reminders
543
+ @expirations = expirations
544
+ end
545
+ end
546
+
547
+ # {http://www.docusign.net/API/3.0}Reminders
548
+ # reminderEnabled - SOAP::SOAPBoolean
549
+ # reminderDelay - SOAP::SOAPNonNegativeInteger
550
+ # reminderFrequency - SOAP::SOAPNonNegativeInteger
551
+ class Reminders
552
+ attr_accessor :reminderEnabled
553
+ attr_accessor :reminderDelay
554
+ attr_accessor :reminderFrequency
555
+
556
+ def initialize(reminderEnabled = nil, reminderDelay = nil, reminderFrequency = nil)
557
+ @reminderEnabled = reminderEnabled
558
+ @reminderDelay = reminderDelay
559
+ @reminderFrequency = reminderFrequency
560
+ end
561
+ end
562
+
563
+ # {http://www.docusign.net/API/3.0}Expirations
564
+ # expireEnabled - SOAP::SOAPBoolean
565
+ # expireAfter - SOAP::SOAPNonNegativeInteger
566
+ # expireWarn - SOAP::SOAPNonNegativeInteger
567
+ class Expirations
568
+ attr_accessor :expireEnabled
569
+ attr_accessor :expireAfter
570
+ attr_accessor :expireWarn
571
+
572
+ def initialize(expireEnabled = nil, expireAfter = nil, expireWarn = nil)
573
+ @expireEnabled = expireEnabled
574
+ @expireAfter = expireAfter
575
+ @expireWarn = expireWarn
576
+ end
577
+ end
578
+
579
+ # {http://www.docusign.net/API/3.0}EnvelopeStatus
580
+ # recipientStatuses - Docusign::ArrayOfRecipientStatus
581
+ # timeGenerated - SOAP::SOAPDateTime
582
+ # envelopeID - SOAP::SOAPString
583
+ # subject - SOAP::SOAPString
584
+ # userName - SOAP::SOAPString
585
+ # email - SOAP::SOAPString
586
+ # status - Docusign::EnvelopeStatusCode
587
+ # created - SOAP::SOAPDateTime
588
+ # deleted - SOAP::SOAPDateTime
589
+ # sent - SOAP::SOAPDateTime
590
+ # delivered - SOAP::SOAPDateTime
591
+ # signed - SOAP::SOAPDateTime
592
+ # completed - SOAP::SOAPDateTime
593
+ # declined - SOAP::SOAPDateTime
594
+ # timedOut - SOAP::SOAPDateTime
595
+ # aCStatus - SOAP::SOAPString
596
+ # aCStatusDate - SOAP::SOAPDateTime
597
+ # aCHolder - SOAP::SOAPString
598
+ # aCHolderEmail - SOAP::SOAPString
599
+ # aCHolderLocation - SOAP::SOAPString
600
+ # signingLocation - Docusign::SigningLocationCode
601
+ # senderIPAddress - SOAP::SOAPString
602
+ # envelopePDFHash - SOAP::SOAPString
603
+ # customFields - Docusign::ArrayOfCustomField
604
+ # vaultingDetails - Docusign::VaultingDetails
605
+ # autoNavigation - SOAP::SOAPBoolean
606
+ # envelopeIdStamping - SOAP::SOAPBoolean
607
+ # authoritativeCopy - SOAP::SOAPBoolean
608
+ # envelopeAttachment - Docusign::ArrayOfAttachment
609
+ # documentStatuses - Docusign::ArrayOfDocumentStatus
610
+ # formData - Docusign::FormData
611
+ class EnvelopeStatus
612
+ attr_accessor :recipientStatuses
613
+ attr_accessor :timeGenerated
614
+ attr_accessor :envelopeID
615
+ attr_accessor :subject
616
+ attr_accessor :userName
617
+ attr_accessor :email
618
+ attr_accessor :status
619
+ attr_accessor :created
620
+ attr_accessor :deleted
621
+ attr_accessor :sent
622
+ attr_accessor :delivered
623
+ attr_accessor :signed
624
+ attr_accessor :completed
625
+ attr_accessor :declined
626
+ attr_accessor :timedOut
627
+ attr_accessor :aCStatus
628
+ attr_accessor :aCStatusDate
629
+ attr_accessor :aCHolder
630
+ attr_accessor :aCHolderEmail
631
+ attr_accessor :aCHolderLocation
632
+ attr_accessor :signingLocation
633
+ attr_accessor :senderIPAddress
634
+ attr_accessor :envelopePDFHash
635
+ attr_accessor :customFields
636
+ attr_accessor :vaultingDetails
637
+ attr_accessor :autoNavigation
638
+ attr_accessor :envelopeIdStamping
639
+ attr_accessor :authoritativeCopy
640
+ attr_accessor :envelopeAttachment
641
+ attr_accessor :documentStatuses
642
+ attr_accessor :formData
643
+
644
+ 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, documentStatuses = nil, formData = nil)
645
+ @recipientStatuses = recipientStatuses
646
+ @timeGenerated = timeGenerated
647
+ @envelopeID = envelopeID
648
+ @subject = subject
649
+ @userName = userName
650
+ @email = email
651
+ @status = status
652
+ @created = created
653
+ @deleted = deleted
654
+ @sent = sent
655
+ @delivered = delivered
656
+ @signed = signed
657
+ @completed = completed
658
+ @declined = declined
659
+ @timedOut = timedOut
660
+ @aCStatus = aCStatus
661
+ @aCStatusDate = aCStatusDate
662
+ @aCHolder = aCHolder
663
+ @aCHolderEmail = aCHolderEmail
664
+ @aCHolderLocation = aCHolderLocation
665
+ @signingLocation = signingLocation
666
+ @senderIPAddress = senderIPAddress
667
+ @envelopePDFHash = envelopePDFHash
668
+ @customFields = customFields
669
+ @vaultingDetails = vaultingDetails
670
+ @autoNavigation = autoNavigation
671
+ @envelopeIdStamping = envelopeIdStamping
672
+ @authoritativeCopy = authoritativeCopy
673
+ @envelopeAttachment = envelopeAttachment
674
+ @documentStatuses = documentStatuses
675
+ @formData = formData
676
+ end
677
+ end
678
+
679
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientStatus
680
+ class ArrayOfRecipientStatus < ::Array
681
+ end
682
+
683
+ # {http://www.docusign.net/API/3.0}RecipientStatus
684
+ # type - Docusign::RecipientTypeCode
685
+ # email - SOAP::SOAPString
686
+ # userName - SOAP::SOAPString
687
+ # routingOrder - SOAP::SOAPUnsignedShort
688
+ # sent - SOAP::SOAPDateTime
689
+ # delivered - SOAP::SOAPDateTime
690
+ # signed - SOAP::SOAPDateTime
691
+ # declined - SOAP::SOAPDateTime
692
+ # declineReason - SOAP::SOAPString
693
+ # status - Docusign::RecipientStatusCode
694
+ # recipientIPAddress - SOAP::SOAPString
695
+ # clientUserId - SOAP::SOAPString
696
+ # autoNavigation - SOAP::SOAPBoolean
697
+ # iDCheckInformation - Docusign::IDCheckInformation
698
+ # recipientAuthenticationStatus - Docusign::AuthenticationStatus
699
+ # customFields - Docusign::ArrayOfString
700
+ # tabStatuses - Docusign::ArrayOfTabStatus
701
+ # recipientAttachment - Docusign::ArrayOfAttachment
702
+ # accountStatus - SOAP::SOAPString
703
+ # esignAgreementInformation - Docusign::RecipientStatusEsignAgreementInformation
704
+ # formData - Docusign::FormData
705
+ class RecipientStatus
706
+ attr_accessor :type
707
+ attr_accessor :email
708
+ attr_accessor :userName
709
+ attr_accessor :routingOrder
710
+ attr_accessor :sent
711
+ attr_accessor :delivered
712
+ attr_accessor :signed
713
+ attr_accessor :declined
714
+ attr_accessor :declineReason
715
+ attr_accessor :status
716
+ attr_accessor :recipientIPAddress
717
+ attr_accessor :clientUserId
718
+ attr_accessor :autoNavigation
719
+ attr_accessor :iDCheckInformation
720
+ attr_accessor :recipientAuthenticationStatus
721
+ attr_accessor :customFields
722
+ attr_accessor :tabStatuses
723
+ attr_accessor :recipientAttachment
724
+ attr_accessor :accountStatus
725
+ attr_accessor :esignAgreementInformation
726
+ attr_accessor :formData
727
+
728
+ 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, accountStatus = nil, esignAgreementInformation = nil, formData = nil)
729
+ @type = type
730
+ @email = email
731
+ @userName = userName
732
+ @routingOrder = routingOrder
733
+ @sent = sent
734
+ @delivered = delivered
735
+ @signed = signed
736
+ @declined = declined
737
+ @declineReason = declineReason
738
+ @status = status
739
+ @recipientIPAddress = recipientIPAddress
740
+ @clientUserId = clientUserId
741
+ @autoNavigation = autoNavigation
742
+ @iDCheckInformation = iDCheckInformation
743
+ @recipientAuthenticationStatus = recipientAuthenticationStatus
744
+ @customFields = customFields
745
+ @tabStatuses = tabStatuses
746
+ @recipientAttachment = recipientAttachment
747
+ @accountStatus = accountStatus
748
+ @esignAgreementInformation = esignAgreementInformation
749
+ @formData = formData
750
+ end
751
+ end
752
+
753
+ # {http://www.docusign.net/API/3.0}IDCheckInformation
754
+ # addressInformation - Docusign::AddressInformation
755
+ # dOBInformation - Docusign::DOBInformation
756
+ # sSN4Information - Docusign::SSN4Information
757
+ class IDCheckInformation
758
+ attr_accessor :addressInformation
759
+ attr_accessor :dOBInformation
760
+ attr_accessor :sSN4Information
761
+
762
+ def initialize(addressInformation = nil, dOBInformation = nil, sSN4Information = nil)
763
+ @addressInformation = addressInformation
764
+ @dOBInformation = dOBInformation
765
+ @sSN4Information = sSN4Information
766
+ end
767
+ end
768
+
769
+ # {http://www.docusign.net/API/3.0}AuthenticationStatus
770
+ # accessCodeResult - Docusign::EventResult
771
+ # iDQuestionsResult - Docusign::EventResult
772
+ # iDLookupResult - Docusign::EventResult
773
+ # ageVerifyResult - Docusign::EventResult
774
+ # sTANPinResult - Docusign::EventResult
775
+ # oFACResult - Docusign::EventResult
776
+ class AuthenticationStatus
777
+ attr_accessor :accessCodeResult
778
+ attr_accessor :iDQuestionsResult
779
+ attr_accessor :iDLookupResult
780
+ attr_accessor :ageVerifyResult
781
+ attr_accessor :sTANPinResult
782
+ attr_accessor :oFACResult
783
+
784
+ def initialize(accessCodeResult = nil, iDQuestionsResult = nil, iDLookupResult = nil, ageVerifyResult = nil, sTANPinResult = nil, oFACResult = nil)
785
+ @accessCodeResult = accessCodeResult
786
+ @iDQuestionsResult = iDQuestionsResult
787
+ @iDLookupResult = iDLookupResult
788
+ @ageVerifyResult = ageVerifyResult
789
+ @sTANPinResult = sTANPinResult
790
+ @oFACResult = oFACResult
791
+ end
792
+ end
793
+
794
+ # {http://www.docusign.net/API/3.0}EventResult
795
+ # status - Docusign::EventStatusCode
796
+ # eventTimestamp - SOAP::SOAPDateTime
797
+ class EventResult
798
+ attr_accessor :status
799
+ attr_accessor :eventTimestamp
800
+
801
+ def initialize(status = nil, eventTimestamp = nil)
802
+ @status = status
803
+ @eventTimestamp = eventTimestamp
804
+ end
805
+ end
806
+
807
+ # {http://www.docusign.net/API/3.0}ArrayOfTabStatus
808
+ class ArrayOfTabStatus < ::Array
809
+ end
810
+
811
+ # {http://www.docusign.net/API/3.0}TabStatus
812
+ # tabType - Docusign::TabTypeCode
813
+ # status - SOAP::SOAPString
814
+ # xPosition - SOAP::SOAPDouble
815
+ # yPosition - SOAP::SOAPDouble
816
+ # signed - SOAP::SOAPDateTime
817
+ # tabLabel - SOAP::SOAPString
818
+ # tabName - SOAP::SOAPString
819
+ # tabValue - SOAP::SOAPString
820
+ # documentID - SOAP::SOAPPositiveInteger
821
+ # pageNumber - SOAP::SOAPNonNegativeInteger
822
+ # originalValue - SOAP::SOAPString
823
+ # validationPattern - SOAP::SOAPString
824
+ # roleName - SOAP::SOAPString
825
+ # listValues - SOAP::SOAPString
826
+ # listSelectedValue - SOAP::SOAPString
827
+ class TabStatus
828
+ attr_accessor :tabType
829
+ attr_accessor :status
830
+ attr_accessor :xPosition
831
+ attr_accessor :yPosition
832
+ attr_accessor :signed
833
+ attr_accessor :tabLabel
834
+ attr_accessor :tabName
835
+ attr_accessor :tabValue
836
+ attr_accessor :documentID
837
+ attr_accessor :pageNumber
838
+ attr_accessor :originalValue
839
+ attr_accessor :validationPattern
840
+ attr_accessor :roleName
841
+ attr_accessor :listValues
842
+ attr_accessor :listSelectedValue
843
+
844
+ def initialize(tabType = nil, status = nil, xPosition = nil, yPosition = nil, signed = nil, tabLabel = nil, tabName = nil, tabValue = nil, documentID = nil, pageNumber = nil, originalValue = nil, validationPattern = nil, roleName = nil, listValues = nil, listSelectedValue = nil)
845
+ @tabType = tabType
846
+ @status = status
847
+ @xPosition = xPosition
848
+ @yPosition = yPosition
849
+ @signed = signed
850
+ @tabLabel = tabLabel
851
+ @tabName = tabName
852
+ @tabValue = tabValue
853
+ @documentID = documentID
854
+ @pageNumber = pageNumber
855
+ @originalValue = originalValue
856
+ @validationPattern = validationPattern
857
+ @roleName = roleName
858
+ @listValues = listValues
859
+ @listSelectedValue = listSelectedValue
860
+ end
861
+ end
862
+
863
+ # {http://www.docusign.net/API/3.0}RecipientStatusEsignAgreementInformation
864
+ # accountEsignId - SOAP::SOAPString
865
+ # userEsignId - SOAP::SOAPString
866
+ # agreementDate - SOAP::SOAPDateTime
867
+ class RecipientStatusEsignAgreementInformation
868
+ attr_accessor :accountEsignId
869
+ attr_accessor :userEsignId
870
+ attr_accessor :agreementDate
871
+
872
+ def initialize(accountEsignId = nil, userEsignId = nil, agreementDate = nil)
873
+ @accountEsignId = accountEsignId
874
+ @userEsignId = userEsignId
875
+ @agreementDate = agreementDate
876
+ end
877
+ end
878
+
879
+ # {http://www.docusign.net/API/3.0}FormData
880
+ # xfdf - Docusign::FormDataXfdf
881
+ class FormData
882
+ attr_accessor :xfdf
883
+
884
+ def initialize(xfdf = nil)
885
+ @xfdf = xfdf
886
+ end
887
+ end
888
+
889
+ # {http://www.docusign.net/API/3.0}FormDataXfdf
890
+ # fields - Docusign::ArrayOfFormDataXfdfField
891
+ class FormDataXfdf
892
+ attr_accessor :fields
893
+
894
+ def initialize(fields = nil)
895
+ @fields = fields
896
+ end
897
+ end
898
+
899
+ # {http://www.docusign.net/API/3.0}ArrayOfFormDataXfdfField
900
+ class ArrayOfFormDataXfdfField < ::Array
901
+ end
902
+
903
+ # {http://www.docusign.net/API/3.0}FormDataXfdfField
904
+ # value - SOAP::SOAPString
905
+ # xmlattr_name - SOAP::SOAPString
906
+ class FormDataXfdfField
907
+ AttrName = XSD::QName.new(nil, "name")
908
+
909
+ attr_accessor :value
910
+
911
+ def __xmlattr
912
+ @__xmlattr ||= {}
913
+ end
914
+
915
+ def xmlattr_name
916
+ __xmlattr[AttrName]
917
+ end
918
+
919
+ def xmlattr_name=(value)
920
+ __xmlattr[AttrName] = value
921
+ end
922
+
923
+ def initialize(value = nil)
924
+ @value = value
925
+ @__xmlattr = {}
926
+ end
927
+ end
928
+
929
+ # {http://www.docusign.net/API/3.0}VaultingDetails
930
+ # eODTransactionName - SOAP::SOAPString
931
+ # eODTransactionID - SOAP::SOAPString
932
+ # eODDocumentProfileID - SOAP::SOAPString
933
+ class VaultingDetails
934
+ attr_accessor :eODTransactionName
935
+ attr_accessor :eODTransactionID
936
+ attr_accessor :eODDocumentProfileID
937
+
938
+ def initialize(eODTransactionName = nil, eODTransactionID = nil, eODDocumentProfileID = nil)
939
+ @eODTransactionName = eODTransactionName
940
+ @eODTransactionID = eODTransactionID
941
+ @eODDocumentProfileID = eODDocumentProfileID
942
+ end
943
+ end
944
+
945
+ # {http://www.docusign.net/API/3.0}ArrayOfDocumentStatus
946
+ class ArrayOfDocumentStatus < ::Array
947
+ end
948
+
949
+ # {http://www.docusign.net/API/3.0}DocumentStatus
950
+ # iD - SOAP::SOAPPositiveInteger
951
+ # name - SOAP::SOAPString
952
+ # templateName - SOAP::SOAPString
953
+ # sequence - SOAP::SOAPPositiveInteger
954
+ class DocumentStatus
955
+ attr_accessor :iD
956
+ attr_accessor :name
957
+ attr_accessor :templateName
958
+ attr_accessor :sequence
959
+
960
+ def initialize(iD = nil, name = nil, templateName = nil, sequence = nil)
961
+ @iD = iD
962
+ @name = name
963
+ @templateName = templateName
964
+ @sequence = sequence
965
+ end
966
+ end
967
+
968
+ # {http://www.docusign.net/API/3.0}Correction
969
+ # envelopeID - SOAP::SOAPString
970
+ # envelopeSettingsCorrection - Docusign::EnvelopeSettings
971
+ # recipientCorrections - Docusign::ArrayOfRecipientCorrection
972
+ class Correction
973
+ attr_accessor :envelopeID
974
+ attr_accessor :envelopeSettingsCorrection
975
+ attr_accessor :recipientCorrections
976
+
977
+ def initialize(envelopeID = nil, envelopeSettingsCorrection = nil, recipientCorrections = nil)
978
+ @envelopeID = envelopeID
979
+ @envelopeSettingsCorrection = envelopeSettingsCorrection
980
+ @recipientCorrections = recipientCorrections
981
+ end
982
+ end
983
+
984
+ # {http://www.docusign.net/API/3.0}EnvelopeSettings
985
+ # autoNavigation - SOAP::SOAPBoolean
986
+ # envelopeIdStamping - SOAP::SOAPBoolean
987
+ class EnvelopeSettings
988
+ attr_accessor :autoNavigation
989
+ attr_accessor :envelopeIdStamping
990
+
991
+ def initialize(autoNavigation = nil, envelopeIdStamping = nil)
992
+ @autoNavigation = autoNavigation
993
+ @envelopeIdStamping = envelopeIdStamping
994
+ end
995
+ end
996
+
997
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrection
998
+ class ArrayOfRecipientCorrection < ::Array
999
+ end
1000
+
1001
+ # {http://www.docusign.net/API/3.0}RecipientCorrection
1002
+ # previousUserName - SOAP::SOAPString
1003
+ # previousEmail - SOAP::SOAPString
1004
+ # previousRoutingOrder - SOAP::SOAPUnsignedShort
1005
+ # previousSignerName - SOAP::SOAPString
1006
+ # correctedUserName - SOAP::SOAPString
1007
+ # correctedSignerName - SOAP::SOAPString
1008
+ # correctedEmail - SOAP::SOAPString
1009
+ # correctedCaptiveInfo - Docusign::RecipientCorrectionCorrectedCaptiveInfo
1010
+ # correctedAccessCode - SOAP::SOAPString
1011
+ # correctedAccessCodeRequired - SOAP::SOAPBoolean
1012
+ # correctedRequireIDLookup - SOAP::SOAPBoolean
1013
+ # correctedIDCheckConfigurationName - SOAP::SOAPString
1014
+ # correctedRoutingOrder - SOAP::SOAPUnsignedShort
1015
+ # correctedAutoNavigation - SOAP::SOAPBoolean
1016
+ # correctedIDCheckInformationInput - Docusign::IDCheckInformationInput
1017
+ # resend - SOAP::SOAPBoolean
1018
+ class RecipientCorrection
1019
+ attr_accessor :previousUserName
1020
+ attr_accessor :previousEmail
1021
+ attr_accessor :previousRoutingOrder
1022
+ attr_accessor :previousSignerName
1023
+ attr_accessor :correctedUserName
1024
+ attr_accessor :correctedSignerName
1025
+ attr_accessor :correctedEmail
1026
+ attr_accessor :correctedCaptiveInfo
1027
+ attr_accessor :correctedAccessCode
1028
+ attr_accessor :correctedAccessCodeRequired
1029
+ attr_accessor :correctedRequireIDLookup
1030
+ attr_accessor :correctedIDCheckConfigurationName
1031
+ attr_accessor :correctedRoutingOrder
1032
+ attr_accessor :correctedAutoNavigation
1033
+ attr_accessor :correctedIDCheckInformationInput
1034
+ attr_accessor :resend
1035
+
1036
+ def initialize(previousUserName = nil, previousEmail = nil, previousRoutingOrder = nil, previousSignerName = nil, correctedUserName = nil, correctedSignerName = nil, correctedEmail = nil, correctedCaptiveInfo = nil, correctedAccessCode = nil, correctedAccessCodeRequired = nil, correctedRequireIDLookup = nil, correctedIDCheckConfigurationName = nil, correctedRoutingOrder = nil, correctedAutoNavigation = nil, correctedIDCheckInformationInput = nil, resend = nil)
1037
+ @previousUserName = previousUserName
1038
+ @previousEmail = previousEmail
1039
+ @previousRoutingOrder = previousRoutingOrder
1040
+ @previousSignerName = previousSignerName
1041
+ @correctedUserName = correctedUserName
1042
+ @correctedSignerName = correctedSignerName
1043
+ @correctedEmail = correctedEmail
1044
+ @correctedCaptiveInfo = correctedCaptiveInfo
1045
+ @correctedAccessCode = correctedAccessCode
1046
+ @correctedAccessCodeRequired = correctedAccessCodeRequired
1047
+ @correctedRequireIDLookup = correctedRequireIDLookup
1048
+ @correctedIDCheckConfigurationName = correctedIDCheckConfigurationName
1049
+ @correctedRoutingOrder = correctedRoutingOrder
1050
+ @correctedAutoNavigation = correctedAutoNavigation
1051
+ @correctedIDCheckInformationInput = correctedIDCheckInformationInput
1052
+ @resend = resend
1053
+ end
1054
+ end
1055
+
1056
+ # {http://www.docusign.net/API/3.0}RecipientCorrectionCorrectedCaptiveInfo
1057
+ # clientUserId - SOAP::SOAPString
1058
+ class RecipientCorrectionCorrectedCaptiveInfo
1059
+ attr_accessor :clientUserId
1060
+
1061
+ def initialize(clientUserId = nil)
1062
+ @clientUserId = clientUserId
1063
+ end
1064
+ end
1065
+
1066
+ # {http://www.docusign.net/API/3.0}CorrectionStatus
1067
+ # envelopeSettingsCorrectionStatus - Docusign::EnvelopeSettings
1068
+ # recipientCorrectionStatuses - Docusign::ArrayOfRecipientCorrectionStatus
1069
+ class CorrectionStatus
1070
+ attr_accessor :envelopeSettingsCorrectionStatus
1071
+ attr_accessor :recipientCorrectionStatuses
1072
+
1073
+ def initialize(envelopeSettingsCorrectionStatus = nil, recipientCorrectionStatuses = nil)
1074
+ @envelopeSettingsCorrectionStatus = envelopeSettingsCorrectionStatus
1075
+ @recipientCorrectionStatuses = recipientCorrectionStatuses
1076
+ end
1077
+ end
1078
+
1079
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrectionStatus
1080
+ class ArrayOfRecipientCorrectionStatus < ::Array
1081
+ end
1082
+
1083
+ # {http://www.docusign.net/API/3.0}RecipientCorrectionStatus
1084
+ # correctionSucceeded - SOAP::SOAPBoolean
1085
+ # recipientCorrection - Docusign::RecipientCorrection
1086
+ # recipientStatus - Docusign::RecipientStatus
1087
+ class RecipientCorrectionStatus
1088
+ attr_accessor :correctionSucceeded
1089
+ attr_accessor :recipientCorrection
1090
+ attr_accessor :recipientStatus
1091
+
1092
+ def initialize(correctionSucceeded = nil, recipientCorrection = nil, recipientStatus = nil)
1093
+ @correctionSucceeded = correctionSucceeded
1094
+ @recipientCorrection = recipientCorrection
1095
+ @recipientStatus = recipientStatus
1096
+ end
1097
+ end
1098
+
1099
+ # {http://www.docusign.net/API/3.0}EnvelopePDF
1100
+ # envelopeID - SOAP::SOAPString
1101
+ # pDFBytes - SOAP::SOAPBase64
1102
+ class EnvelopePDF
1103
+ attr_accessor :envelopeID
1104
+ attr_accessor :pDFBytes
1105
+
1106
+ def initialize(envelopeID = nil, pDFBytes = nil)
1107
+ @envelopeID = envelopeID
1108
+ @pDFBytes = pDFBytes
1109
+ end
1110
+ end
1111
+
1112
+ # {http://www.docusign.net/API/3.0}DocumentPDFs
1113
+ # envelopeId - SOAP::SOAPString
1114
+ # documentPDF - Docusign::DocumentPDF
1115
+ class DocumentPDFs
1116
+ attr_accessor :envelopeId
1117
+ attr_accessor :documentPDF
1118
+
1119
+ def initialize(envelopeId = nil, documentPDF = [])
1120
+ @envelopeId = envelopeId
1121
+ @documentPDF = documentPDF
1122
+ end
1123
+ end
1124
+
1125
+ # {http://www.docusign.net/API/3.0}DocumentPDF
1126
+ # name - SOAP::SOAPString
1127
+ # pDFBytes - SOAP::SOAPBase64
1128
+ # documentID - SOAP::SOAPPositiveInteger
1129
+ # documentType - Docusign::DocumentType
1130
+ class DocumentPDF
1131
+ attr_accessor :name
1132
+ attr_accessor :pDFBytes
1133
+ attr_accessor :documentID
1134
+ attr_accessor :documentType
1135
+
1136
+ def initialize(name = nil, pDFBytes = nil, documentID = nil, documentType = nil)
1137
+ @name = name
1138
+ @pDFBytes = pDFBytes
1139
+ @documentID = documentID
1140
+ @documentType = documentType
1141
+ end
1142
+ end
1143
+
1144
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusFilter
1145
+ # userInfo - Docusign::UserInfo
1146
+ # accountId - SOAP::SOAPString
1147
+ # beginDateTime - Docusign::EnvelopeStatusFilterBeginDateTime
1148
+ # endDateTime - SOAP::SOAPDateTime
1149
+ # statuses - Docusign::ArrayOfEnvelopeStatusCode
1150
+ # envelopeIds - Docusign::ArrayOfString1
1151
+ # startAtIndex - SOAP::SOAPNonNegativeInteger
1152
+ # aCStatus - Docusign::EnvelopeACStatusCode
1153
+ class EnvelopeStatusFilter
1154
+ attr_accessor :userInfo
1155
+ attr_accessor :accountId
1156
+ attr_accessor :beginDateTime
1157
+ attr_accessor :endDateTime
1158
+ attr_accessor :statuses
1159
+ attr_accessor :envelopeIds
1160
+ attr_accessor :startAtIndex
1161
+ attr_accessor :aCStatus
1162
+
1163
+ def initialize(userInfo = nil, accountId = nil, beginDateTime = nil, endDateTime = nil, statuses = nil, envelopeIds = nil, startAtIndex = nil, aCStatus = nil)
1164
+ @userInfo = userInfo
1165
+ @accountId = accountId
1166
+ @beginDateTime = beginDateTime
1167
+ @endDateTime = endDateTime
1168
+ @statuses = statuses
1169
+ @envelopeIds = envelopeIds
1170
+ @startAtIndex = startAtIndex
1171
+ @aCStatus = aCStatus
1172
+ end
1173
+ end
1174
+
1175
+ # {http://www.docusign.net/API/3.0}UserInfo
1176
+ # userName - SOAP::SOAPString
1177
+ # email - SOAP::SOAPString
1178
+ class UserInfo
1179
+ attr_accessor :userName
1180
+ attr_accessor :email
1181
+
1182
+ def initialize(userName = nil, email = nil)
1183
+ @userName = userName
1184
+ @email = email
1185
+ end
1186
+ end
1187
+
1188
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusFilterBeginDateTime
1189
+ # xmlattr_statusQualifier - SOAP::SOAPString
1190
+ class EnvelopeStatusFilterBeginDateTime < ::String
1191
+ AttrStatusQualifier = XSD::QName.new(nil, "statusQualifier")
1192
+
1193
+ def __xmlattr
1194
+ @__xmlattr ||= {}
1195
+ end
1196
+
1197
+ def xmlattr_statusQualifier
1198
+ __xmlattr[AttrStatusQualifier]
1199
+ end
1200
+
1201
+ def xmlattr_statusQualifier=(value)
1202
+ __xmlattr[AttrStatusQualifier] = value
1203
+ end
1204
+
1205
+ def initialize(*arg)
1206
+ super
1207
+ @__xmlattr = {}
1208
+ end
1209
+ end
1210
+
1211
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatusCode
1212
+ class ArrayOfEnvelopeStatusCode < ::Array
1213
+ end
1214
+
1215
+ # {http://www.docusign.net/API/3.0}ArrayOfString1
1216
+ class ArrayOfString1 < ::Array
1217
+ end
1218
+
1219
+ # {http://www.docusign.net/API/3.0}FilteredEnvelopeStatuses
1220
+ # resultSetSize - SOAP::SOAPInt
1221
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
1222
+ # envelopeStatuses - Docusign::ArrayOfEnvelopeStatus
1223
+ class FilteredEnvelopeStatuses
1224
+ attr_accessor :resultSetSize
1225
+ attr_accessor :envelopeStatusFilter
1226
+ attr_accessor :envelopeStatuses
1227
+
1228
+ def initialize(resultSetSize = nil, envelopeStatusFilter = nil, envelopeStatuses = nil)
1229
+ @resultSetSize = resultSetSize
1230
+ @envelopeStatusFilter = envelopeStatusFilter
1231
+ @envelopeStatuses = envelopeStatuses
1232
+ end
1233
+ end
1234
+
1235
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatus
1236
+ class ArrayOfEnvelopeStatus < ::Array
1237
+ end
1238
+
1239
+ # {http://www.docusign.net/API/3.0}RecipientEsignList
1240
+ # accountId - SOAP::SOAPString
1241
+ # recipientEsign - Docusign::ArrayOfRecipientEsign
1242
+ class RecipientEsignList
1243
+ attr_accessor :accountId
1244
+ attr_accessor :recipientEsign
1245
+
1246
+ def initialize(accountId = nil, recipientEsign = nil)
1247
+ @accountId = accountId
1248
+ @recipientEsign = recipientEsign
1249
+ end
1250
+ end
1251
+
1252
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipientEsign
1253
+ class ArrayOfRecipientEsign < ::Array
1254
+ end
1255
+
1256
+ # {http://www.docusign.net/API/3.0}RecipientEsign
1257
+ # userName - SOAP::SOAPString
1258
+ # email - SOAP::SOAPString
1259
+ # esign - SOAP::SOAPBoolean
1260
+ # reservedRecipientEmail - SOAP::SOAPBoolean
1261
+ # reservedRecipientNames - SOAP::SOAPString
1262
+ class RecipientEsign
1263
+ attr_accessor :userName
1264
+ attr_accessor :email
1265
+ attr_accessor :esign
1266
+ attr_accessor :reservedRecipientEmail
1267
+ attr_accessor :reservedRecipientNames
1268
+
1269
+ def initialize(userName = nil, email = nil, esign = nil, reservedRecipientEmail = nil, reservedRecipientNames = nil)
1270
+ @userName = userName
1271
+ @email = email
1272
+ @esign = esign
1273
+ @reservedRecipientEmail = reservedRecipientEmail
1274
+ @reservedRecipientNames = reservedRecipientNames
1275
+ end
1276
+ end
1277
+
1278
+ # {http://www.docusign.net/API/3.0}RecipientList
1279
+ # reservedRecipientEmail - SOAP::SOAPBoolean
1280
+ # multipleUsers - SOAP::SOAPBoolean
1281
+ # recipientName - Docusign::ArrayOfString2
1282
+ class RecipientList
1283
+ attr_accessor :reservedRecipientEmail
1284
+ attr_accessor :multipleUsers
1285
+ attr_accessor :recipientName
1286
+
1287
+ def initialize(reservedRecipientEmail = nil, multipleUsers = nil, recipientName = nil)
1288
+ @reservedRecipientEmail = reservedRecipientEmail
1289
+ @multipleUsers = multipleUsers
1290
+ @recipientName = recipientName
1291
+ end
1292
+ end
1293
+
1294
+ # {http://www.docusign.net/API/3.0}ArrayOfString2
1295
+ class ArrayOfString2 < ::Array
1296
+ end
1297
+
1298
+ # {http://www.docusign.net/API/3.0}VoidEnvelopeStatus
1299
+ # voidSuccess - SOAP::SOAPBoolean
1300
+ class VoidEnvelopeStatus
1301
+ attr_accessor :voidSuccess
1302
+
1303
+ def initialize(voidSuccess = nil)
1304
+ @voidSuccess = voidSuccess
1305
+ end
1306
+ end
1307
+
1308
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertion
1309
+ # assertionID - SOAP::SOAPString
1310
+ # authenticationInstant - SOAP::SOAPDateTime
1311
+ # authenticationMethod - Docusign::RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
1312
+ # securityDomain - SOAP::SOAPString
1313
+ class RequestRecipientTokenAuthenticationAssertion
1314
+ attr_accessor :assertionID
1315
+ attr_accessor :authenticationInstant
1316
+ attr_accessor :authenticationMethod
1317
+ attr_accessor :securityDomain
1318
+
1319
+ def initialize(assertionID = nil, authenticationInstant = nil, authenticationMethod = nil, securityDomain = nil)
1320
+ @assertionID = assertionID
1321
+ @authenticationInstant = authenticationInstant
1322
+ @authenticationMethod = authenticationMethod
1323
+ @securityDomain = securityDomain
1324
+ end
1325
+ end
1326
+
1327
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenClientURLs
1328
+ # onSigningComplete - SOAP::SOAPString
1329
+ # onViewingComplete - SOAP::SOAPString
1330
+ # onCancel - SOAP::SOAPString
1331
+ # onDecline - SOAP::SOAPString
1332
+ # onSessionTimeout - SOAP::SOAPString
1333
+ # onTTLExpired - SOAP::SOAPString
1334
+ # onException - SOAP::SOAPString
1335
+ # onAccessCodeFailed - SOAP::SOAPString
1336
+ # onIdCheckFailed - SOAP::SOAPString
1337
+ class RequestRecipientTokenClientURLs
1338
+ attr_accessor :onSigningComplete
1339
+ attr_accessor :onViewingComplete
1340
+ attr_accessor :onCancel
1341
+ attr_accessor :onDecline
1342
+ attr_accessor :onSessionTimeout
1343
+ attr_accessor :onTTLExpired
1344
+ attr_accessor :onException
1345
+ attr_accessor :onAccessCodeFailed
1346
+ attr_accessor :onIdCheckFailed
1347
+
1348
+ def initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil)
1349
+ @onSigningComplete = onSigningComplete
1350
+ @onViewingComplete = onViewingComplete
1351
+ @onCancel = onCancel
1352
+ @onDecline = onDecline
1353
+ @onSessionTimeout = onSessionTimeout
1354
+ @onTTLExpired = onTTLExpired
1355
+ @onException = onException
1356
+ @onAccessCodeFailed = onAccessCodeFailed
1357
+ @onIdCheckFailed = onIdCheckFailed
1358
+ end
1359
+ end
1360
+
1361
+ # {http://www.docusign.net/API/3.0}TransferEnvelopeStatus
1362
+ # transferEnvelopeSuccess - SOAP::SOAPBoolean
1363
+ class TransferEnvelopeStatus
1364
+ attr_accessor :transferEnvelopeSuccess
1365
+
1366
+ def initialize(transferEnvelopeSuccess = nil)
1367
+ @transferEnvelopeSuccess = transferEnvelopeSuccess
1368
+ end
1369
+ end
1370
+
1371
+ # {http://www.docusign.net/API/3.0}AccountMembershipFeaturesList
1372
+ # email - SOAP::SOAPString
1373
+ # userName - SOAP::SOAPString
1374
+ # enabledFeaturesSet - Docusign::ArrayOfString3
1375
+ class AccountMembershipFeaturesList
1376
+ attr_accessor :email
1377
+ attr_accessor :userName
1378
+ attr_accessor :enabledFeaturesSet
1379
+
1380
+ def initialize(email = nil, userName = nil, enabledFeaturesSet = nil)
1381
+ @email = email
1382
+ @userName = userName
1383
+ @enabledFeaturesSet = enabledFeaturesSet
1384
+ end
1385
+ end
1386
+
1387
+ # {http://www.docusign.net/API/3.0}ArrayOfString3
1388
+ class ArrayOfString3 < ::Array
1389
+ end
1390
+
1391
+ # {http://www.docusign.net/API/3.0}AccountSettingsList
1392
+ class AccountSettingsList < ::Array
1393
+ end
1394
+
1395
+ # {http://www.docusign.net/API/3.0}AccountSetting
1396
+ # name - SOAP::SOAPString
1397
+ # value - SOAP::SOAPString
1398
+ # type - SOAP::SOAPString
1399
+ # testSetting - SOAP::SOAPString
1400
+ class AccountSetting
1401
+ attr_accessor :name
1402
+ attr_accessor :value
1403
+ attr_accessor :type
1404
+ attr_accessor :testSetting
1405
+
1406
+ def initialize(name = nil, value = nil, type = nil, testSetting = nil)
1407
+ @name = name
1408
+ @value = value
1409
+ @type = type
1410
+ @testSetting = testSetting
1411
+ end
1412
+ end
1413
+
1414
+ # {http://www.docusign.net/API/3.0}AuthoritativeCopyExportStatus
1415
+ # authoritativeCopyExportSuccess - SOAP::SOAPBoolean
1416
+ # envelopeId - SOAP::SOAPString
1417
+ # exportKey - SOAP::SOAPString
1418
+ class AuthoritativeCopyExportStatus
1419
+ attr_accessor :authoritativeCopyExportSuccess
1420
+ attr_accessor :envelopeId
1421
+ attr_accessor :exportKey
1422
+
1423
+ def initialize(authoritativeCopyExportSuccess = nil, envelopeId = nil, exportKey = nil)
1424
+ @authoritativeCopyExportSuccess = authoritativeCopyExportSuccess
1425
+ @envelopeId = envelopeId
1426
+ @exportKey = exportKey
1427
+ end
1428
+ end
1429
+
1430
+ # {http://www.docusign.net/API/3.0}AuthoritativeCopyExportDocuments
1431
+ # envelopeId - SOAP::SOAPString
1432
+ # transactionId - SOAP::SOAPString
1433
+ # count - SOAP::SOAPInt
1434
+ # documentPDF - Docusign::DocumentPDF
1435
+ class AuthoritativeCopyExportDocuments
1436
+ attr_accessor :envelopeId
1437
+ attr_accessor :transactionId
1438
+ attr_accessor :count
1439
+ attr_accessor :documentPDF
1440
+
1441
+ def initialize(envelopeId = nil, transactionId = nil, count = nil, documentPDF = [])
1442
+ @envelopeId = envelopeId
1443
+ @transactionId = transactionId
1444
+ @count = count
1445
+ @documentPDF = documentPDF
1446
+ end
1447
+ end
1448
+
1449
+ # {http://www.docusign.net/API/3.0}ArrayOfTemplateReference
1450
+ class ArrayOfTemplateReference < ::Array
1451
+ end
1452
+
1453
+ # {http://www.docusign.net/API/3.0}TemplateReference
1454
+ # templateLocation - Docusign::TemplateLocationCode
1455
+ # template - SOAP::SOAPString
1456
+ # document - Docusign::Document
1457
+ # roleAssignments - Docusign::ArrayOfTemplateReferenceRoleAssignment
1458
+ # fieldData - Docusign::TemplateReferenceFieldData
1459
+ # additionalTabs - Docusign::ArrayOfTab
1460
+ # sequence - SOAP::SOAPPositiveInteger
1461
+ # templateAttachments - Docusign::ArrayOfAttachment
1462
+ class TemplateReference
1463
+ attr_accessor :templateLocation
1464
+ attr_accessor :template
1465
+ attr_accessor :document
1466
+ attr_accessor :roleAssignments
1467
+ attr_accessor :fieldData
1468
+ attr_accessor :additionalTabs
1469
+ attr_accessor :sequence
1470
+ attr_accessor :templateAttachments
1471
+
1472
+ def initialize(templateLocation = nil, template = nil, document = nil, roleAssignments = nil, fieldData = nil, additionalTabs = nil, sequence = nil, templateAttachments = nil)
1473
+ @templateLocation = templateLocation
1474
+ @template = template
1475
+ @document = document
1476
+ @roleAssignments = roleAssignments
1477
+ @fieldData = fieldData
1478
+ @additionalTabs = additionalTabs
1479
+ @sequence = sequence
1480
+ @templateAttachments = templateAttachments
1481
+ end
1482
+ end
1483
+
1484
+ # {http://www.docusign.net/API/3.0}ArrayOfTemplateReferenceRoleAssignment
1485
+ class ArrayOfTemplateReferenceRoleAssignment < ::Array
1486
+ end
1487
+
1488
+ # {http://www.docusign.net/API/3.0}TemplateReferenceRoleAssignment
1489
+ # roleName - SOAP::SOAPString
1490
+ # recipientID - SOAP::SOAPPositiveInteger
1491
+ class TemplateReferenceRoleAssignment
1492
+ attr_accessor :roleName
1493
+ attr_accessor :recipientID
1494
+
1495
+ def initialize(roleName = nil, recipientID = nil)
1496
+ @roleName = roleName
1497
+ @recipientID = recipientID
1498
+ end
1499
+ end
1500
+
1501
+ # {http://www.docusign.net/API/3.0}TemplateReferenceFieldData
1502
+ # dataValues - Docusign::ArrayOfTemplateReferenceFieldDataDataValue
1503
+ class TemplateReferenceFieldData
1504
+ attr_accessor :dataValues
1505
+
1506
+ def initialize(dataValues = nil)
1507
+ @dataValues = dataValues
1508
+ end
1509
+ end
1510
+
1511
+ # {http://www.docusign.net/API/3.0}ArrayOfTemplateReferenceFieldDataDataValue
1512
+ class ArrayOfTemplateReferenceFieldDataDataValue < ::Array
1513
+ end
1514
+
1515
+ # {http://www.docusign.net/API/3.0}TemplateReferenceFieldDataDataValue
1516
+ # tabLabel - SOAP::SOAPString
1517
+ # value - SOAP::SOAPString
1518
+ class TemplateReferenceFieldDataDataValue
1519
+ attr_accessor :tabLabel
1520
+ attr_accessor :value
1521
+
1522
+ def initialize(tabLabel = nil, value = nil)
1523
+ @tabLabel = tabLabel
1524
+ @value = value
1525
+ end
1526
+ end
1527
+
1528
+ # {http://www.docusign.net/API/3.0}ArrayOfRecipient1
1529
+ class ArrayOfRecipient1 < ::Array
1530
+ end
1531
+
1532
+ # {http://www.docusign.net/API/3.0}EnvelopeInformation
1533
+ # accountId - SOAP::SOAPString
1534
+ # emailBlurb - SOAP::SOAPString
1535
+ # subject - SOAP::SOAPString
1536
+ # signingLocation - Docusign::SigningLocationCode
1537
+ # customFields - Docusign::ArrayOfCustomField
1538
+ # vaultingOptions - Docusign::VaultingOptions
1539
+ # autoNavigation - SOAP::SOAPBoolean
1540
+ # envelopeIdStamping - SOAP::SOAPBoolean
1541
+ # authoritativeCopy - SOAP::SOAPBoolean
1542
+ # notification - Docusign::Notification
1543
+ # enforceSignerVisibility - SOAP::SOAPBoolean
1544
+ class EnvelopeInformation
1545
+ attr_accessor :accountId
1546
+ attr_accessor :emailBlurb
1547
+ attr_accessor :subject
1548
+ attr_accessor :signingLocation
1549
+ attr_accessor :customFields
1550
+ attr_accessor :vaultingOptions
1551
+ attr_accessor :autoNavigation
1552
+ attr_accessor :envelopeIdStamping
1553
+ attr_accessor :authoritativeCopy
1554
+ attr_accessor :notification
1555
+ attr_accessor :enforceSignerVisibility
1556
+
1557
+ def initialize(accountId = nil, emailBlurb = nil, subject = nil, signingLocation = nil, customFields = nil, vaultingOptions = nil, autoNavigation = nil, envelopeIdStamping = nil, authoritativeCopy = nil, notification = nil, enforceSignerVisibility = nil)
1558
+ @accountId = accountId
1559
+ @emailBlurb = emailBlurb
1560
+ @subject = subject
1561
+ @signingLocation = signingLocation
1562
+ @customFields = customFields
1563
+ @vaultingOptions = vaultingOptions
1564
+ @autoNavigation = autoNavigation
1565
+ @envelopeIdStamping = envelopeIdStamping
1566
+ @authoritativeCopy = authoritativeCopy
1567
+ @notification = notification
1568
+ @enforceSignerVisibility = enforceSignerVisibility
1569
+ end
1570
+ end
1571
+
1572
+ # {http://www.docusign.net/API/3.0}DocuSignEnvelopeInformation
1573
+ # envelopeStatus - Docusign::EnvelopeStatus
1574
+ # documentPDFs - Docusign::ArrayOfDocumentPDF
1575
+ class DocuSignEnvelopeInformation
1576
+ attr_accessor :envelopeStatus
1577
+ attr_accessor :documentPDFs
1578
+
1579
+ def initialize(envelopeStatus = nil, documentPDFs = nil)
1580
+ @envelopeStatus = envelopeStatus
1581
+ @documentPDFs = documentPDFs
1582
+ end
1583
+ end
1584
+
1585
+ # {http://www.docusign.net/API/3.0}ArrayOfDocumentPDF
1586
+ class ArrayOfDocumentPDF < ::Array
1587
+ end
1588
+
1589
+ # {http://www.docusign.net/API/3.0}PurgeDocumentStatus
1590
+ # purgeDocumentSuccess - SOAP::SOAPBoolean
1591
+ # purgeDocumentError - SOAP::SOAPString
1592
+ class PurgeDocumentStatus
1593
+ attr_accessor :purgeDocumentSuccess
1594
+ attr_accessor :purgeDocumentError
1595
+
1596
+ def initialize(purgeDocumentSuccess = nil, purgeDocumentError = nil)
1597
+ @purgeDocumentSuccess = purgeDocumentSuccess
1598
+ @purgeDocumentError = purgeDocumentError
1599
+ end
1600
+ end
1601
+
1602
+ # {http://www.docusign.net/API/3.0}EnvelopeTemplate
1603
+ # envelopeTemplateDefinition - Docusign::EnvelopeTemplateDefinition
1604
+ # envelope - Docusign::Envelope
1605
+ class EnvelopeTemplate
1606
+ attr_accessor :envelopeTemplateDefinition
1607
+ attr_accessor :envelope
1608
+
1609
+ def initialize(envelopeTemplateDefinition = nil, envelope = nil)
1610
+ @envelopeTemplateDefinition = envelopeTemplateDefinition
1611
+ @envelope = envelope
1612
+ end
1613
+ end
1614
+
1615
+ # {http://www.docusign.net/API/3.0}EnvelopeTemplateDefinition
1616
+ # templateID - SOAP::SOAPString
1617
+ # name - SOAP::SOAPString
1618
+ # shared - SOAP::SOAPBoolean
1619
+ # templatePassword - SOAP::SOAPString
1620
+ # templateDescription - SOAP::SOAPString
1621
+ # lastModified - SOAP::SOAPDateTime
1622
+ # pageCount - SOAP::SOAPInt
1623
+ class EnvelopeTemplateDefinition
1624
+ attr_accessor :templateID
1625
+ attr_accessor :name
1626
+ attr_accessor :shared
1627
+ attr_accessor :templatePassword
1628
+ attr_accessor :templateDescription
1629
+ attr_accessor :lastModified
1630
+ attr_accessor :pageCount
1631
+
1632
+ def initialize(templateID = nil, name = nil, shared = nil, templatePassword = nil, templateDescription = nil, lastModified = nil, pageCount = nil)
1633
+ @templateID = templateID
1634
+ @name = name
1635
+ @shared = shared
1636
+ @templatePassword = templatePassword
1637
+ @templateDescription = templateDescription
1638
+ @lastModified = lastModified
1639
+ @pageCount = pageCount
1640
+ end
1641
+ end
1642
+
1643
+ # {http://www.docusign.net/API/3.0}SaveTemplateResult
1644
+ # success - SOAP::SOAPBoolean
1645
+ # templateID - SOAP::SOAPString
1646
+ # name - SOAP::SOAPString
1647
+ class SaveTemplateResult
1648
+ attr_accessor :success
1649
+ attr_accessor :templateID
1650
+ attr_accessor :name
1651
+
1652
+ def initialize(success = nil, templateID = nil, name = nil)
1653
+ @success = success
1654
+ @templateID = templateID
1655
+ @name = name
1656
+ end
1657
+ end
1658
+
1659
+ # {http://www.docusign.net/API/3.0}EnvelopeTemplates
1660
+ class EnvelopeTemplates < ::Array
1661
+ end
1662
+
1663
+ # {http://www.docusign.net/API/3.0}ArrayOfAddressBookItem
1664
+ class ArrayOfAddressBookItem < ::Array
1665
+ end
1666
+
1667
+ # {http://www.docusign.net/API/3.0}AddressBookItem
1668
+ # addressBookID - SOAP::SOAPString
1669
+ # email - SOAP::SOAPString
1670
+ # userName - SOAP::SOAPString
1671
+ # accountName - SOAP::SOAPString
1672
+ # shared - SOAP::SOAPBoolean
1673
+ # created - SOAP::SOAPDateTime
1674
+ # owner - SOAP::SOAPBoolean
1675
+ class AddressBookItem
1676
+ attr_accessor :addressBookID
1677
+ attr_accessor :email
1678
+ attr_accessor :userName
1679
+ attr_accessor :accountName
1680
+ attr_accessor :shared
1681
+ attr_accessor :created
1682
+ attr_accessor :owner
1683
+
1684
+ def initialize(addressBookID = nil, email = nil, userName = nil, accountName = nil, shared = nil, created = nil, owner = nil)
1685
+ @addressBookID = addressBookID
1686
+ @email = email
1687
+ @userName = userName
1688
+ @accountName = accountName
1689
+ @shared = shared
1690
+ @created = created
1691
+ @owner = owner
1692
+ end
1693
+ end
1694
+
1695
+ # {http://www.docusign.net/API/3.0}UpdateAddressBookResult
1696
+ # success - SOAP::SOAPBoolean
1697
+ # addressBookItems - Docusign::ArrayOfAddressBookItem1
1698
+ class UpdateAddressBookResult
1699
+ attr_accessor :success
1700
+ attr_accessor :addressBookItems
1701
+
1702
+ def initialize(success = nil, addressBookItems = nil)
1703
+ @success = success
1704
+ @addressBookItems = addressBookItems
1705
+ end
1706
+ end
1707
+
1708
+ # {http://www.docusign.net/API/3.0}ArrayOfAddressBookItem1
1709
+ class ArrayOfAddressBookItem1 < ::Array
1710
+ end
1711
+
1712
+ # {http://www.docusign.net/API/3.0}ArrayOfAddressBookRemoveItem
1713
+ class ArrayOfAddressBookRemoveItem < ::Array
1714
+ end
1715
+
1716
+ # {http://www.docusign.net/API/3.0}AddressBookRemoveItem
1717
+ # addressBookID - SOAP::SOAPString
1718
+ class AddressBookRemoveItem
1719
+ attr_accessor :addressBookID
1720
+
1721
+ def initialize(addressBookID = nil)
1722
+ @addressBookID = addressBookID
1723
+ end
1724
+ end
1725
+
1726
+ # {http://www.docusign.net/API/3.0}RecipientTypeCode
1727
+ class RecipientTypeCode < ::String
1728
+ CarbonCopy = RecipientTypeCode.new("CarbonCopy")
1729
+ CertifiedDelivery = RecipientTypeCode.new("CertifiedDelivery")
1730
+ InPersonSigner = RecipientTypeCode.new("InPersonSigner")
1731
+ Signer = RecipientTypeCode.new("Signer")
1732
+ end
1733
+
1734
+ # {http://www.docusign.net/API/3.0}FontStyleCode
1735
+ class FontStyleCode < ::String
1736
+ BradleyHandITC = FontStyleCode.new("BradleyHandITC")
1737
+ Freehand575 = FontStyleCode.new("Freehand575")
1738
+ KaufmannBT = FontStyleCode.new("KaufmannBT")
1739
+ LuciaBT = FontStyleCode.new("LuciaBT")
1740
+ Mistral = FontStyleCode.new("Mistral")
1741
+ RageItalic = FontStyleCode.new("RageItalic")
1742
+ end
1743
+
1744
+ # {http://www.docusign.net/API/3.0}DisplayLevelCode
1745
+ class DisplayLevelCode < ::String
1746
+ DoNotDisplay = DisplayLevelCode.new("DoNotDisplay")
1747
+ Editable = DisplayLevelCode.new("Editable")
1748
+ ReadOnly = DisplayLevelCode.new("ReadOnly")
1749
+ end
1750
+
1751
+ # {http://www.docusign.net/API/3.0}UnitTypeCode
1752
+ class UnitTypeCode < ::String
1753
+ Cms = UnitTypeCode.new("Cms")
1754
+ Inches = UnitTypeCode.new("Inches")
1755
+ Mms = UnitTypeCode.new("Mms")
1756
+ Pixels = UnitTypeCode.new("Pixels")
1757
+ end
1758
+
1759
+ # {http://www.docusign.net/API/3.0}TabTypeCode
1760
+ class TabTypeCode < ::String
1761
+ Company = TabTypeCode.new("Company")
1762
+ Custom = TabTypeCode.new("Custom")
1763
+ DateSigned = TabTypeCode.new("DateSigned")
1764
+ EnvelopeID = TabTypeCode.new("EnvelopeID")
1765
+ FullName = TabTypeCode.new("FullName")
1766
+ InitialHere = TabTypeCode.new("InitialHere")
1767
+ InitialHereOptional = TabTypeCode.new("InitialHereOptional")
1768
+ SignHere = TabTypeCode.new("SignHere")
1769
+ Title = TabTypeCode.new("Title")
1770
+ end
1771
+
1772
+ # {http://www.docusign.net/API/3.0}CustomTabType
1773
+ class CustomTabType < ::String
1774
+ Checkbox = CustomTabType.new("Checkbox")
1775
+ Date = CustomTabType.new("Date")
1776
+ Email = CustomTabType.new("Email")
1777
+ List = CustomTabType.new("List")
1778
+ Number = CustomTabType.new("Number")
1779
+ Radio = CustomTabType.new("Radio")
1780
+ SSN = CustomTabType.new("SSN")
1781
+ Text = CustomTabType.new("Text")
1782
+ ZIP5 = CustomTabType.new("ZIP5")
1783
+ ZIP5DASH4 = CustomTabType.new("ZIP5DASH4")
1784
+ end
1785
+
1786
+ # {http://www.docusign.net/API/3.0}SigningLocationCode
1787
+ class SigningLocationCode < ::String
1788
+ InPerson = SigningLocationCode.new("InPerson")
1789
+ Online = SigningLocationCode.new("Online")
1790
+ end
1791
+
1792
+ # {http://www.docusign.net/API/3.0}VaultingModeCode
1793
+ class VaultingModeCode < ::String
1794
+ EODAuthoritativeCopy = VaultingModeCode.new("EODAuthoritativeCopy")
1795
+ EODeStore = VaultingModeCode.new("EODeStore")
1796
+ None = VaultingModeCode.new("None")
1797
+ end
1798
+
1799
+ # {http://www.docusign.net/API/3.0}RecipientStatusCode
1800
+ class RecipientStatusCode < ::String
1801
+ Completed = RecipientStatusCode.new("Completed")
1802
+ Created = RecipientStatusCode.new("Created")
1803
+ Declined = RecipientStatusCode.new("Declined")
1804
+ Delivered = RecipientStatusCode.new("Delivered")
1805
+ Sent = RecipientStatusCode.new("Sent")
1806
+ Signed = RecipientStatusCode.new("Signed")
1807
+ end
1808
+
1809
+ # {http://www.docusign.net/API/3.0}EventStatusCode
1810
+ class EventStatusCode < ::String
1811
+ Failed = EventStatusCode.new("Failed")
1812
+ Passed = EventStatusCode.new("Passed")
1813
+ end
1814
+
1815
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusCode
1816
+ class EnvelopeStatusCode < ::String
1817
+ Any = EnvelopeStatusCode.new("Any")
1818
+ Completed = EnvelopeStatusCode.new("Completed")
1819
+ Created = EnvelopeStatusCode.new("Created")
1820
+ Declined = EnvelopeStatusCode.new("Declined")
1821
+ Deleted = EnvelopeStatusCode.new("Deleted")
1822
+ Delivered = EnvelopeStatusCode.new("Delivered")
1823
+ Sent = EnvelopeStatusCode.new("Sent")
1824
+ Signed = EnvelopeStatusCode.new("Signed")
1825
+ Template = EnvelopeStatusCode.new("Template")
1826
+ TimedOut = EnvelopeStatusCode.new("TimedOut")
1827
+ Voided = EnvelopeStatusCode.new("Voided")
1828
+ end
1829
+
1830
+ # {http://www.docusign.net/API/3.0}DocumentType
1831
+ class DocumentType < ::String
1832
+ CONTENT = DocumentType.new("CONTENT")
1833
+ SUMMARY = DocumentType.new("SUMMARY")
1834
+ end
1835
+
1836
+ # {http://www.docusign.net/API/3.0}EnvelopeACStatusCode
1837
+ class EnvelopeACStatusCode < ::String
1838
+ AuthoritativeCopy = EnvelopeACStatusCode.new("AuthoritativeCopy")
1839
+ AuthoritativeCopyExportPending = EnvelopeACStatusCode.new("AuthoritativeCopyExportPending")
1840
+ AuthoritativeCopyExported = EnvelopeACStatusCode.new("AuthoritativeCopyExported")
1841
+ DepositFailed = EnvelopeACStatusCode.new("DepositFailed")
1842
+ DepositPending = EnvelopeACStatusCode.new("DepositPending")
1843
+ Deposited = EnvelopeACStatusCode.new("Deposited")
1844
+ DepositedEO = EnvelopeACStatusCode.new("DepositedEO")
1845
+ Original = EnvelopeACStatusCode.new("Original")
1846
+ Transferred = EnvelopeACStatusCode.new("Transferred")
1847
+ Unknown = EnvelopeACStatusCode.new("Unknown")
1848
+ end
1849
+
1850
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
1851
+ class RequestRecipientTokenAuthenticationAssertionAuthenticationMethod < ::String
1852
+ Biometric = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Biometric")
1853
+ Email = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Email")
1854
+ HTTPBasicAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("HTTPBasicAuth")
1855
+ Kerberos = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Kerberos")
1856
+ KnowledgeBasedAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("KnowledgeBasedAuth")
1857
+ None = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("None")
1858
+ PaperDocuments = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("PaperDocuments")
1859
+ Password = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Password")
1860
+ RSASecureID = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("RSASecureID")
1861
+ SSLMutualAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SSLMutualAuth")
1862
+ SingleSignOn_CASiteminder = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_CASiteminder")
1863
+ SingleSignOn_InfoCard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_InfoCard")
1864
+ SingleSignOn_MicrosoftActiveDirectory = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_MicrosoftActiveDirectory")
1865
+ SingleSignOn_Other = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Other")
1866
+ SingleSignOn_Passport = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Passport")
1867
+ SingleSignOn_SAML = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_SAML")
1868
+ Smartcard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Smartcard")
1869
+ X509Certificate = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("X509Certificate")
1870
+ end
1871
+
1872
+ # {http://www.docusign.net/API/3.0}TemplateLocationCode
1873
+ class TemplateLocationCode < ::String
1874
+ PDFMetaData = TemplateLocationCode.new("PDFMetaData")
1875
+ SOAP = TemplateLocationCode.new("SOAP")
1876
+ Server = TemplateLocationCode.new("Server")
1877
+ end
1878
+
1879
+ # {http://www.docusign.net/API/3.0}CreateEnvelope
1880
+ # envelope - Docusign::Envelope
1881
+ class CreateEnvelope
1882
+ attr_accessor :envelope
1883
+
1884
+ def initialize(envelope = nil)
1885
+ @envelope = envelope
1886
+ end
1887
+ end
1888
+
1889
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeResponse
1890
+ # createEnvelopeResult - Docusign::EnvelopeStatus
1891
+ class CreateEnvelopeResponse
1892
+ attr_accessor :createEnvelopeResult
1893
+
1894
+ def initialize(createEnvelopeResult = nil)
1895
+ @createEnvelopeResult = createEnvelopeResult
1896
+ end
1897
+ end
1898
+
1899
+ # {http://www.docusign.net/API/3.0}CreateAndSendEnvelope
1900
+ # envelope - Docusign::Envelope
1901
+ class CreateAndSendEnvelope
1902
+ attr_accessor :envelope
1903
+
1904
+ def initialize(envelope = nil)
1905
+ @envelope = envelope
1906
+ end
1907
+ end
1908
+
1909
+ # {http://www.docusign.net/API/3.0}CreateAndSendEnvelopeResponse
1910
+ # createAndSendEnvelopeResult - Docusign::EnvelopeStatus
1911
+ class CreateAndSendEnvelopeResponse
1912
+ attr_accessor :createAndSendEnvelopeResult
1913
+
1914
+ def initialize(createAndSendEnvelopeResult = nil)
1915
+ @createAndSendEnvelopeResult = createAndSendEnvelopeResult
1916
+ end
1917
+ end
1918
+
1919
+ # {http://www.docusign.net/API/3.0}CorrectAndResendEnvelope
1920
+ # correction - Docusign::Correction
1921
+ class CorrectAndResendEnvelope
1922
+ attr_accessor :correction
1923
+
1924
+ def initialize(correction = nil)
1925
+ @correction = correction
1926
+ end
1927
+ end
1928
+
1929
+ # {http://www.docusign.net/API/3.0}CorrectAndResendEnvelopeResponse
1930
+ # correctAndResendEnvelopeResult - Docusign::CorrectionStatus
1931
+ class CorrectAndResendEnvelopeResponse
1932
+ attr_accessor :correctAndResendEnvelopeResult
1933
+
1934
+ def initialize(correctAndResendEnvelopeResult = nil)
1935
+ @correctAndResendEnvelopeResult = correctAndResendEnvelopeResult
1936
+ end
1937
+ end
1938
+
1939
+ # {http://www.docusign.net/API/3.0}RequestPDF
1940
+ # envelopeID - SOAP::SOAPString
1941
+ class RequestPDF
1942
+ attr_accessor :envelopeID
1943
+
1944
+ def initialize(envelopeID = nil)
1945
+ @envelopeID = envelopeID
1946
+ end
1947
+ end
1948
+
1949
+ # {http://www.docusign.net/API/3.0}RequestPDFResponse
1950
+ # requestPDFResult - Docusign::EnvelopePDF
1951
+ class RequestPDFResponse
1952
+ attr_accessor :requestPDFResult
1953
+
1954
+ def initialize(requestPDFResult = nil)
1955
+ @requestPDFResult = requestPDFResult
1956
+ end
1957
+ end
1958
+
1959
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFs
1960
+ # envelopeID - SOAP::SOAPString
1961
+ class RequestDocumentPDFs
1962
+ attr_accessor :envelopeID
1963
+
1964
+ def initialize(envelopeID = nil)
1965
+ @envelopeID = envelopeID
1966
+ end
1967
+ end
1968
+
1969
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsResponse
1970
+ # requestDocumentPDFsResult - Docusign::DocumentPDFs
1971
+ class RequestDocumentPDFsResponse
1972
+ attr_accessor :requestDocumentPDFsResult
1973
+
1974
+ def initialize(requestDocumentPDFsResult = nil)
1975
+ @requestDocumentPDFsResult = requestDocumentPDFsResult
1976
+ end
1977
+ end
1978
+
1979
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsEx
1980
+ # envelopeID - SOAP::SOAPString
1981
+ class RequestDocumentPDFsEx
1982
+ attr_accessor :envelopeID
1983
+
1984
+ def initialize(envelopeID = nil)
1985
+ @envelopeID = envelopeID
1986
+ end
1987
+ end
1988
+
1989
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsExResponse
1990
+ # requestDocumentPDFsExResult - Docusign::DocumentPDFs
1991
+ class RequestDocumentPDFsExResponse
1992
+ attr_accessor :requestDocumentPDFsExResult
1993
+
1994
+ def initialize(requestDocumentPDFsExResult = nil)
1995
+ @requestDocumentPDFsExResult = requestDocumentPDFsExResult
1996
+ end
1997
+ end
1998
+
1999
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsRecipientsView
2000
+ # envelopeID - SOAP::SOAPString
2001
+ # recipientName - SOAP::SOAPString
2002
+ # recipientEmail - SOAP::SOAPString
2003
+ class RequestDocumentPDFsRecipientsView
2004
+ attr_accessor :envelopeID
2005
+ attr_accessor :recipientName
2006
+ attr_accessor :recipientEmail
2007
+
2008
+ def initialize(envelopeID = nil, recipientName = nil, recipientEmail = nil)
2009
+ @envelopeID = envelopeID
2010
+ @recipientName = recipientName
2011
+ @recipientEmail = recipientEmail
2012
+ end
2013
+ end
2014
+
2015
+ # {http://www.docusign.net/API/3.0}RequestDocumentPDFsRecipientsViewResponse
2016
+ # requestDocumentPDFsRecipientsViewResult - Docusign::DocumentPDFs
2017
+ class RequestDocumentPDFsRecipientsViewResponse
2018
+ attr_accessor :requestDocumentPDFsRecipientsViewResult
2019
+
2020
+ def initialize(requestDocumentPDFsRecipientsViewResult = nil)
2021
+ @requestDocumentPDFsRecipientsViewResult = requestDocumentPDFsRecipientsViewResult
2022
+ end
2023
+ end
2024
+
2025
+ # {http://www.docusign.net/API/3.0}RequestStatusEx
2026
+ # envelopeID - SOAP::SOAPString
2027
+ class RequestStatusEx
2028
+ attr_accessor :envelopeID
2029
+
2030
+ def initialize(envelopeID = nil)
2031
+ @envelopeID = envelopeID
2032
+ end
2033
+ end
2034
+
2035
+ # {http://www.docusign.net/API/3.0}RequestStatusExResponse
2036
+ # requestStatusExResult - Docusign::EnvelopeStatus
2037
+ class RequestStatusExResponse
2038
+ attr_accessor :requestStatusExResult
2039
+
2040
+ def initialize(requestStatusExResult = nil)
2041
+ @requestStatusExResult = requestStatusExResult
2042
+ end
2043
+ end
2044
+
2045
+ # {http://www.docusign.net/API/3.0}RequestStatus
2046
+ # envelopeID - SOAP::SOAPString
2047
+ class RequestStatus
2048
+ attr_accessor :envelopeID
2049
+
2050
+ def initialize(envelopeID = nil)
2051
+ @envelopeID = envelopeID
2052
+ end
2053
+ end
2054
+
2055
+ # {http://www.docusign.net/API/3.0}RequestStatusResponse
2056
+ # requestStatusResult - Docusign::EnvelopeStatus
2057
+ class RequestStatusResponse
2058
+ attr_accessor :requestStatusResult
2059
+
2060
+ def initialize(requestStatusResult = nil)
2061
+ @requestStatusResult = requestStatusResult
2062
+ end
2063
+ end
2064
+
2065
+ # {http://www.docusign.net/API/3.0}RequestStatusesEx
2066
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
2067
+ class RequestStatusesEx
2068
+ attr_accessor :envelopeStatusFilter
2069
+
2070
+ def initialize(envelopeStatusFilter = nil)
2071
+ @envelopeStatusFilter = envelopeStatusFilter
2072
+ end
2073
+ end
2074
+
2075
+ # {http://www.docusign.net/API/3.0}RequestStatusesExResponse
2076
+ # requestStatusesExResult - Docusign::FilteredEnvelopeStatuses
2077
+ class RequestStatusesExResponse
2078
+ attr_accessor :requestStatusesExResult
2079
+
2080
+ def initialize(requestStatusesExResult = nil)
2081
+ @requestStatusesExResult = requestStatusesExResult
2082
+ end
2083
+ end
2084
+
2085
+ # {http://www.docusign.net/API/3.0}RequestStatuses
2086
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
2087
+ class RequestStatuses
2088
+ attr_accessor :envelopeStatusFilter
2089
+
2090
+ def initialize(envelopeStatusFilter = nil)
2091
+ @envelopeStatusFilter = envelopeStatusFilter
2092
+ end
2093
+ end
2094
+
2095
+ # {http://www.docusign.net/API/3.0}RequestStatusesResponse
2096
+ # requestStatusesResult - Docusign::FilteredEnvelopeStatuses
2097
+ class RequestStatusesResponse
2098
+ attr_accessor :requestStatusesResult
2099
+
2100
+ def initialize(requestStatusesResult = nil)
2101
+ @requestStatusesResult = requestStatusesResult
2102
+ end
2103
+ end
2104
+
2105
+ # {http://www.docusign.net/API/3.0}GetRecipientEsignList
2106
+ # userName - SOAP::SOAPString
2107
+ # senderEmail - SOAP::SOAPString
2108
+ # senderAccountId - SOAP::SOAPString
2109
+ # recipientEmail - SOAP::SOAPString
2110
+ class GetRecipientEsignList
2111
+ attr_accessor :userName
2112
+ attr_accessor :senderEmail
2113
+ attr_accessor :senderAccountId
2114
+ attr_accessor :recipientEmail
2115
+
2116
+ def initialize(userName = nil, senderEmail = nil, senderAccountId = nil, recipientEmail = nil)
2117
+ @userName = userName
2118
+ @senderEmail = senderEmail
2119
+ @senderAccountId = senderAccountId
2120
+ @recipientEmail = recipientEmail
2121
+ end
2122
+ end
2123
+
2124
+ # {http://www.docusign.net/API/3.0}GetRecipientEsignListResponse
2125
+ # getRecipientEsignListResult - Docusign::RecipientEsignList
2126
+ class GetRecipientEsignListResponse
2127
+ attr_accessor :getRecipientEsignListResult
2128
+
2129
+ def initialize(getRecipientEsignListResult = nil)
2130
+ @getRecipientEsignListResult = getRecipientEsignListResult
2131
+ end
2132
+ end
2133
+
2134
+ # {http://www.docusign.net/API/3.0}GetRecipientList
2135
+ # senderAccountId - SOAP::SOAPString
2136
+ # recipientEmail - SOAP::SOAPString
2137
+ class GetRecipientList
2138
+ attr_accessor :senderAccountId
2139
+ attr_accessor :recipientEmail
2140
+
2141
+ def initialize(senderAccountId = nil, recipientEmail = nil)
2142
+ @senderAccountId = senderAccountId
2143
+ @recipientEmail = recipientEmail
2144
+ end
2145
+ end
2146
+
2147
+ # {http://www.docusign.net/API/3.0}GetRecipientListResponse
2148
+ # getRecipientListResult - Docusign::RecipientList
2149
+ class GetRecipientListResponse
2150
+ attr_accessor :getRecipientListResult
2151
+
2152
+ def initialize(getRecipientListResult = nil)
2153
+ @getRecipientListResult = getRecipientListResult
2154
+ end
2155
+ end
2156
+
2157
+ # {http://www.docusign.net/API/3.0}VoidEnvelope
2158
+ # envelopeID - SOAP::SOAPString
2159
+ # reason - SOAP::SOAPString
2160
+ class VoidEnvelope
2161
+ attr_accessor :envelopeID
2162
+ attr_accessor :reason
2163
+
2164
+ def initialize(envelopeID = nil, reason = nil)
2165
+ @envelopeID = envelopeID
2166
+ @reason = reason
2167
+ end
2168
+ end
2169
+
2170
+ # {http://www.docusign.net/API/3.0}VoidEnvelopeResponse
2171
+ # voidEnvelopeResult - Docusign::VoidEnvelopeStatus
2172
+ class VoidEnvelopeResponse
2173
+ attr_accessor :voidEnvelopeResult
2174
+
2175
+ def initialize(voidEnvelopeResult = nil)
2176
+ @voidEnvelopeResult = voidEnvelopeResult
2177
+ end
2178
+ end
2179
+
2180
+ # {http://www.docusign.net/API/3.0}RequestRecipientToken
2181
+ # envelopeID - SOAP::SOAPString
2182
+ # clientUserID - SOAP::SOAPString
2183
+ # username - SOAP::SOAPString
2184
+ # email - SOAP::SOAPString
2185
+ # authenticationAssertion - Docusign::RequestRecipientTokenAuthenticationAssertion
2186
+ # clientURLs - Docusign::RequestRecipientTokenClientURLs
2187
+ class RequestRecipientToken
2188
+ attr_accessor :envelopeID
2189
+ attr_accessor :clientUserID
2190
+ attr_accessor :username
2191
+ attr_accessor :email
2192
+ attr_accessor :authenticationAssertion
2193
+ attr_accessor :clientURLs
2194
+
2195
+ def initialize(envelopeID = nil, clientUserID = nil, username = nil, email = nil, authenticationAssertion = nil, clientURLs = nil)
2196
+ @envelopeID = envelopeID
2197
+ @clientUserID = clientUserID
2198
+ @username = username
2199
+ @email = email
2200
+ @authenticationAssertion = authenticationAssertion
2201
+ @clientURLs = clientURLs
2202
+ end
2203
+ end
2204
+
2205
+ # {http://www.docusign.net/API/3.0}RequestRecipientTokenResponse
2206
+ # requestRecipientTokenResult - SOAP::SOAPString
2207
+ class RequestRecipientTokenResponse
2208
+ attr_accessor :requestRecipientTokenResult
2209
+
2210
+ def initialize(requestRecipientTokenResult = nil)
2211
+ @requestRecipientTokenResult = requestRecipientTokenResult
2212
+ end
2213
+ end
2214
+
2215
+ # {http://www.docusign.net/API/3.0}TransferEnvelope
2216
+ # envelopeID - SOAP::SOAPString
2217
+ # accountID - SOAP::SOAPString
2218
+ # userID - SOAP::SOAPString
2219
+ class TransferEnvelope
2220
+ attr_accessor :envelopeID
2221
+ attr_accessor :accountID
2222
+ attr_accessor :userID
2223
+
2224
+ def initialize(envelopeID = nil, accountID = nil, userID = nil)
2225
+ @envelopeID = envelopeID
2226
+ @accountID = accountID
2227
+ @userID = userID
2228
+ end
2229
+ end
2230
+
2231
+ # {http://www.docusign.net/API/3.0}TransferEnvelopeResponse
2232
+ # transferEnvelopeResult - Docusign::TransferEnvelopeStatus
2233
+ class TransferEnvelopeResponse
2234
+ attr_accessor :transferEnvelopeResult
2235
+
2236
+ def initialize(transferEnvelopeResult = nil)
2237
+ @transferEnvelopeResult = transferEnvelopeResult
2238
+ end
2239
+ end
2240
+
2241
+ # {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesList
2242
+ # accountId - SOAP::SOAPString
2243
+ class GetAccountMembershipFeaturesList
2244
+ attr_accessor :accountId
2245
+
2246
+ def initialize(accountId = nil)
2247
+ @accountId = accountId
2248
+ end
2249
+ end
2250
+
2251
+ # {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesListResponse
2252
+ # getAccountMembershipFeaturesListResult - Docusign::AccountMembershipFeaturesList
2253
+ class GetAccountMembershipFeaturesListResponse
2254
+ attr_accessor :getAccountMembershipFeaturesListResult
2255
+
2256
+ def initialize(getAccountMembershipFeaturesListResult = nil)
2257
+ @getAccountMembershipFeaturesListResult = getAccountMembershipFeaturesListResult
2258
+ end
2259
+ end
2260
+
2261
+ # {http://www.docusign.net/API/3.0}GetAccountSettingsList
2262
+ # accountId - SOAP::SOAPString
2263
+ class GetAccountSettingsList
2264
+ attr_accessor :accountId
2265
+
2266
+ def initialize(accountId = nil)
2267
+ @accountId = accountId
2268
+ end
2269
+ end
2270
+
2271
+ # {http://www.docusign.net/API/3.0}GetAccountSettingsListResponse
2272
+ # getAccountSettingsListResult - Docusign::AccountSettingsList
2273
+ class GetAccountSettingsListResponse
2274
+ attr_accessor :getAccountSettingsListResult
2275
+
2276
+ def initialize(getAccountSettingsListResult = nil)
2277
+ @getAccountSettingsListResult = getAccountSettingsListResult
2278
+ end
2279
+ end
2280
+
2281
+ # {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExport
2282
+ # envelopeId - SOAP::SOAPString
2283
+ # transactionId - SOAP::SOAPString
2284
+ # checkSumHash - SOAP::SOAPBase64
2285
+ class AcknowledgeAuthoritativeCopyExport
2286
+ attr_accessor :envelopeId
2287
+ attr_accessor :transactionId
2288
+ attr_accessor :checkSumHash
2289
+
2290
+ def initialize(envelopeId = nil, transactionId = nil, checkSumHash = nil)
2291
+ @envelopeId = envelopeId
2292
+ @transactionId = transactionId
2293
+ @checkSumHash = checkSumHash
2294
+ end
2295
+ end
2296
+
2297
+ # {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExportResponse
2298
+ # acknowledgeAuthoritativeCopyExportResult - Docusign::AuthoritativeCopyExportStatus
2299
+ class AcknowledgeAuthoritativeCopyExportResponse
2300
+ attr_accessor :acknowledgeAuthoritativeCopyExportResult
2301
+
2302
+ def initialize(acknowledgeAuthoritativeCopyExportResult = nil)
2303
+ @acknowledgeAuthoritativeCopyExportResult = acknowledgeAuthoritativeCopyExportResult
2304
+ end
2305
+ end
2306
+
2307
+ # {http://www.docusign.net/API/3.0}ExportAuthoritativeCopy
2308
+ # envelopeId - SOAP::SOAPString
2309
+ class ExportAuthoritativeCopy
2310
+ attr_accessor :envelopeId
2311
+
2312
+ def initialize(envelopeId = nil)
2313
+ @envelopeId = envelopeId
2314
+ end
2315
+ end
2316
+
2317
+ # {http://www.docusign.net/API/3.0}ExportAuthoritativeCopyResponse
2318
+ # exportAuthoritativeCopyResult - Docusign::AuthoritativeCopyExportDocuments
2319
+ class ExportAuthoritativeCopyResponse
2320
+ attr_accessor :exportAuthoritativeCopyResult
2321
+
2322
+ def initialize(exportAuthoritativeCopyResult = nil)
2323
+ @exportAuthoritativeCopyResult = exportAuthoritativeCopyResult
2324
+ end
2325
+ end
2326
+
2327
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEvents
2328
+ # envelopeId - SOAP::SOAPString
2329
+ class EnvelopeAuditEvents
2330
+ attr_accessor :envelopeId
2331
+
2332
+ def initialize(envelopeId = nil)
2333
+ @envelopeId = envelopeId
2334
+ end
2335
+ end
2336
+
2337
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResponse
2338
+ # envelopeAuditEventsResult - Docusign::EnvelopeAuditEventsResponse::EnvelopeAuditEventsResult
2339
+ class EnvelopeAuditEventsResponse
2340
+
2341
+ # inner class for member: EnvelopeAuditEventsResult
2342
+ # {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResult
2343
+ class EnvelopeAuditEventsResult
2344
+ attr_reader :__xmlele_any
2345
+
2346
+ def set_any(elements)
2347
+ @__xmlele_any = elements
2348
+ end
2349
+
2350
+ def initialize
2351
+ @__xmlele_any = nil
2352
+ end
2353
+ end
2354
+
2355
+ attr_accessor :envelopeAuditEventsResult
2356
+
2357
+ def initialize(envelopeAuditEventsResult = nil)
2358
+ @envelopeAuditEventsResult = envelopeAuditEventsResult
2359
+ end
2360
+ end
2361
+
2362
+ # {http://www.docusign.net/API/3.0}Ping
2363
+ class Ping
2364
+ def initialize
2365
+ end
2366
+ end
2367
+
2368
+ # {http://www.docusign.net/API/3.0}PingResponse
2369
+ # pingResult - SOAP::SOAPBoolean
2370
+ class PingResponse
2371
+ attr_accessor :pingResult
2372
+
2373
+ def initialize(pingResult = nil)
2374
+ @pingResult = pingResult
2375
+ end
2376
+ end
2377
+
2378
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplates
2379
+ # templateReferences - Docusign::ArrayOfTemplateReference
2380
+ # recipients - Docusign::ArrayOfRecipient1
2381
+ # envelopeInformation - Docusign::EnvelopeInformation
2382
+ # activateEnvelope - SOAP::SOAPBoolean
2383
+ class CreateEnvelopeFromTemplates
2384
+ attr_accessor :templateReferences
2385
+ attr_accessor :recipients
2386
+ attr_accessor :envelopeInformation
2387
+ attr_accessor :activateEnvelope
2388
+
2389
+ def initialize(templateReferences = nil, recipients = nil, envelopeInformation = nil, activateEnvelope = nil)
2390
+ @templateReferences = templateReferences
2391
+ @recipients = recipients
2392
+ @envelopeInformation = envelopeInformation
2393
+ @activateEnvelope = activateEnvelope
2394
+ end
2395
+ end
2396
+
2397
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplatesResponse
2398
+ # createEnvelopeFromTemplatesResult - Docusign::EnvelopeStatus
2399
+ class CreateEnvelopeFromTemplatesResponse
2400
+ attr_accessor :createEnvelopeFromTemplatesResult
2401
+
2402
+ def initialize(createEnvelopeFromTemplatesResult = nil)
2403
+ @createEnvelopeFromTemplatesResult = createEnvelopeFromTemplatesResult
2404
+ end
2405
+ end
2406
+
2407
+ # {http://www.docusign.net/API/3.0}GetStatusInDocuSignConnectFormat
2408
+ # envelopeID - SOAP::SOAPString
2409
+ class GetStatusInDocuSignConnectFormat
2410
+ attr_accessor :envelopeID
2411
+
2412
+ def initialize(envelopeID = nil)
2413
+ @envelopeID = envelopeID
2414
+ end
2415
+ end
2416
+
2417
+ # {http://www.docusign.net/API/3.0}GetStatusInDocuSignConnectFormatResponse
2418
+ # getStatusInDocuSignConnectFormatResult - Docusign::DocuSignEnvelopeInformation
2419
+ class GetStatusInDocuSignConnectFormatResponse
2420
+ attr_accessor :getStatusInDocuSignConnectFormatResult
2421
+
2422
+ def initialize(getStatusInDocuSignConnectFormatResult = nil)
2423
+ @getStatusInDocuSignConnectFormatResult = getStatusInDocuSignConnectFormatResult
2424
+ end
2425
+ end
2426
+
2427
+ # {http://www.docusign.net/API/3.0}PurgeDocuments
2428
+ # envelopeID - SOAP::SOAPString
2429
+ class PurgeDocuments
2430
+ attr_accessor :envelopeID
2431
+
2432
+ def initialize(envelopeID = nil)
2433
+ @envelopeID = envelopeID
2434
+ end
2435
+ end
2436
+
2437
+ # {http://www.docusign.net/API/3.0}PurgeDocumentsResponse
2438
+ # purgeDocumentsResult - Docusign::PurgeDocumentStatus
2439
+ class PurgeDocumentsResponse
2440
+ attr_accessor :purgeDocumentsResult
2441
+
2442
+ def initialize(purgeDocumentsResult = nil)
2443
+ @purgeDocumentsResult = purgeDocumentsResult
2444
+ end
2445
+ end
2446
+
2447
+ # {http://www.docusign.net/API/3.0}SaveTemplate
2448
+ # envelopeTemplate - Docusign::EnvelopeTemplate
2449
+ class SaveTemplate
2450
+ attr_accessor :envelopeTemplate
2451
+
2452
+ def initialize(envelopeTemplate = nil)
2453
+ @envelopeTemplate = envelopeTemplate
2454
+ end
2455
+ end
2456
+
2457
+ # {http://www.docusign.net/API/3.0}SaveTemplateResponse
2458
+ # saveTemplateResult - Docusign::SaveTemplateResult
2459
+ class SaveTemplateResponse
2460
+ attr_accessor :saveTemplateResult
2461
+
2462
+ def initialize(saveTemplateResult = nil)
2463
+ @saveTemplateResult = saveTemplateResult
2464
+ end
2465
+ end
2466
+
2467
+ # {http://www.docusign.net/API/3.0}UploadTemplate
2468
+ # templateXML - SOAP::SOAPString
2469
+ # accountID - SOAP::SOAPString
2470
+ # shared - SOAP::SOAPBoolean
2471
+ class UploadTemplate
2472
+ attr_accessor :templateXML
2473
+ attr_accessor :accountID
2474
+ attr_accessor :shared
2475
+
2476
+ def initialize(templateXML = nil, accountID = nil, shared = nil)
2477
+ @templateXML = templateXML
2478
+ @accountID = accountID
2479
+ @shared = shared
2480
+ end
2481
+ end
2482
+
2483
+ # {http://www.docusign.net/API/3.0}UploadTemplateResponse
2484
+ # uploadTemplateResult - Docusign::SaveTemplateResult
2485
+ class UploadTemplateResponse
2486
+ attr_accessor :uploadTemplateResult
2487
+
2488
+ def initialize(uploadTemplateResult = nil)
2489
+ @uploadTemplateResult = uploadTemplateResult
2490
+ end
2491
+ end
2492
+
2493
+ # {http://www.docusign.net/API/3.0}RequestTemplates
2494
+ # accountID - SOAP::SOAPString
2495
+ class RequestTemplates
2496
+ attr_accessor :accountID
2497
+
2498
+ def initialize(accountID = nil)
2499
+ @accountID = accountID
2500
+ end
2501
+ end
2502
+
2503
+ # {http://www.docusign.net/API/3.0}RequestTemplatesResponse
2504
+ # requestTemplatesResult - Docusign::EnvelopeTemplates
2505
+ class RequestTemplatesResponse
2506
+ attr_accessor :requestTemplatesResult
2507
+
2508
+ def initialize(requestTemplatesResult = nil)
2509
+ @requestTemplatesResult = requestTemplatesResult
2510
+ end
2511
+ end
2512
+
2513
+ # {http://www.docusign.net/API/3.0}RequestTemplate
2514
+ # templateID - SOAP::SOAPString
2515
+ # includeDocumentBytes - SOAP::SOAPBoolean
2516
+ class RequestTemplate
2517
+ attr_accessor :templateID
2518
+ attr_accessor :includeDocumentBytes
2519
+
2520
+ def initialize(templateID = nil, includeDocumentBytes = nil)
2521
+ @templateID = templateID
2522
+ @includeDocumentBytes = includeDocumentBytes
2523
+ end
2524
+ end
2525
+
2526
+ # {http://www.docusign.net/API/3.0}RequestTemplateResponse
2527
+ # requestTemplateResult - Docusign::EnvelopeTemplate
2528
+ class RequestTemplateResponse
2529
+ attr_accessor :requestTemplateResult
2530
+
2531
+ def initialize(requestTemplateResult = nil)
2532
+ @requestTemplateResult = requestTemplateResult
2533
+ end
2534
+ end
2535
+
2536
+ # {http://www.docusign.net/API/3.0}GetAuthenticationToken
2537
+ # goToEnvelopeID - SOAP::SOAPString
2538
+ class GetAuthenticationToken
2539
+ attr_accessor :goToEnvelopeID
2540
+
2541
+ def initialize(goToEnvelopeID = nil)
2542
+ @goToEnvelopeID = goToEnvelopeID
2543
+ end
2544
+ end
2545
+
2546
+ # {http://www.docusign.net/API/3.0}GetAuthenticationTokenResponse
2547
+ # getAuthenticationTokenResult - SOAP::SOAPString
2548
+ class GetAuthenticationTokenResponse
2549
+ attr_accessor :getAuthenticationTokenResult
2550
+
2551
+ def initialize(getAuthenticationTokenResult = nil)
2552
+ @getAuthenticationTokenResult = getAuthenticationTokenResult
2553
+ end
2554
+ end
2555
+
2556
+ # {http://www.docusign.net/API/3.0}GetAddressBookItems
2557
+ # accountID - SOAP::SOAPString
2558
+ class GetAddressBookItems
2559
+ attr_accessor :accountID
2560
+
2561
+ def initialize(accountID = nil)
2562
+ @accountID = accountID
2563
+ end
2564
+ end
2565
+
2566
+ # {http://www.docusign.net/API/3.0}GetAddressBookItemsResponse
2567
+ # getAddressBookItemsResult - Docusign::ArrayOfAddressBookItem
2568
+ class GetAddressBookItemsResponse
2569
+ attr_accessor :getAddressBookItemsResult
2570
+
2571
+ def initialize(getAddressBookItemsResult = nil)
2572
+ @getAddressBookItemsResult = getAddressBookItemsResult
2573
+ end
2574
+ end
2575
+
2576
+ # {http://www.docusign.net/API/3.0}UpdateAddressBookItems
2577
+ # addressBookItems - Docusign::ArrayOfAddressBookItem
2578
+ # returnAddressBook - SOAP::SOAPBoolean
2579
+ class UpdateAddressBookItems
2580
+ attr_accessor :addressBookItems
2581
+ attr_accessor :returnAddressBook
2582
+
2583
+ def initialize(addressBookItems = nil, returnAddressBook = nil)
2584
+ @addressBookItems = addressBookItems
2585
+ @returnAddressBook = returnAddressBook
2586
+ end
2587
+ end
2588
+
2589
+ # {http://www.docusign.net/API/3.0}UpdateAddressBookItemsResponse
2590
+ # updateAddressBookItemsResult - Docusign::UpdateAddressBookResult
2591
+ class UpdateAddressBookItemsResponse
2592
+ attr_accessor :updateAddressBookItemsResult
2593
+
2594
+ def initialize(updateAddressBookItemsResult = nil)
2595
+ @updateAddressBookItemsResult = updateAddressBookItemsResult
2596
+ end
2597
+ end
2598
+
2599
+ # {http://www.docusign.net/API/3.0}RemoveAddressBookItems
2600
+ # addressBookRemoveItems - Docusign::ArrayOfAddressBookRemoveItem
2601
+ # returnAddressBook - SOAP::SOAPBoolean
2602
+ class RemoveAddressBookItems
2603
+ attr_accessor :addressBookRemoveItems
2604
+ attr_accessor :returnAddressBook
2605
+
2606
+ def initialize(addressBookRemoveItems = nil, returnAddressBook = nil)
2607
+ @addressBookRemoveItems = addressBookRemoveItems
2608
+ @returnAddressBook = returnAddressBook
2609
+ end
2610
+ end
2611
+
2612
+ # {http://www.docusign.net/API/3.0}RemoveAddressBookItemsResponse
2613
+ # removeAddressBookItemsResult - Docusign::UpdateAddressBookResult
2614
+ class RemoveAddressBookItemsResponse
2615
+ attr_accessor :removeAddressBookItemsResult
2616
+
2617
+ def initialize(removeAddressBookItemsResult = nil)
2618
+ @removeAddressBookItemsResult = removeAddressBookItemsResult
2619
+ end
2620
+ end
2621
+
2622
+
2623
+ end
2624
+