docusign 0.7.1 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -46,13 +46,13 @@ namespace :docusign do
46
46
  namespace :services do
47
47
  desc "Generate SOAP stubs for Docusign API"
48
48
  task :generate do
49
- wsdl_path = File.expand_path(File.dirname(__FILE__) + "/lib/DocuSign3.0.10API.wsdl")
49
+ wsdl_path = File.expand_path(File.dirname(__FILE__) + "/lib/wsdl/DocuSign3.0.2API.wsdl")
50
50
  wsdl2ruby('docusign', 'Docusign', "file://#{wsdl_path}")
51
51
  end
52
52
 
53
53
  desc "Generate SOAP stubs for Docusign Credential API"
54
54
  task :generate_credential_api do
55
- wsdl_path = File.expand_path(File.dirname(__FILE__) + "/lib/Credential.wsdl")
55
+ wsdl_path = File.expand_path(File.dirname(__FILE__) + "/lib/wsdl/DocuSign3.0.2CredentialAPI.wsdl")
56
56
  wsdl2ruby('docusign/credential', 'Docusign::Credential', "file://#{wsdl_path}")
57
57
  end
58
58
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.1
1
+ 0.8.0
data/bin/docusign CHANGED
File without changes
data/lib/docusign.rb CHANGED
@@ -39,4 +39,4 @@ require 'docusign/builder/base'
39
39
  require 'docusign/builder/tab_builder'
40
40
  require 'docusign/builder/anchor_builder'
41
41
 
42
- require 'docusign/extensions'
42
+ require 'docusign/extensions'
@@ -160,5 +160,37 @@ class RequestSenderTokenResponse
160
160
  end
161
161
  end
162
162
 
163
+ # {http://www.docusign.net/API/Credential}RequestCorrectToken
164
+ # email - SOAP::SOAPString
165
+ # password - SOAP::SOAPString
166
+ # envelopeID - SOAP::SOAPString
167
+ # suppressNavigation - SOAP::SOAPBoolean
168
+ # returnURL - SOAP::SOAPString
169
+ class RequestCorrectToken
170
+ attr_accessor :email
171
+ attr_accessor :password
172
+ attr_accessor :envelopeID
173
+ attr_accessor :suppressNavigation
174
+ attr_accessor :returnURL
175
+
176
+ def initialize(email = nil, password = nil, envelopeID = nil, suppressNavigation = nil, returnURL = nil)
177
+ @email = email
178
+ @password = password
179
+ @envelopeID = envelopeID
180
+ @suppressNavigation = suppressNavigation
181
+ @returnURL = returnURL
182
+ end
183
+ end
184
+
185
+ # {http://www.docusign.net/API/Credential}RequestCorrectTokenResponse
186
+ # requestCorrectTokenResult - SOAP::SOAPString
187
+ class RequestCorrectTokenResponse
188
+ attr_accessor :requestCorrectTokenResult
189
+
190
+ def initialize(requestCorrectTokenResult = nil)
191
+ @requestCorrectTokenResult = requestCorrectTokenResult
192
+ end
193
+ end
194
+
163
195
 
164
196
  end; end
@@ -5,7 +5,7 @@ require 'soap/rpc/driver'
5
5
  module Docusign::Credential
6
6
 
7
7
  class CredentialSoap < ::SOAP::RPC::Driver
8
- DefaultEndpointUrl = "https://demo.docusign.net/api/3.0/Credential.asmx"
8
+ DefaultEndpointUrl = "https://demo.docusign.net/api/3.0/credential.asmx"
9
9
 
10
10
  Methods = [
11
11
  [ "http://www.docusign.net/API/Credential/Ping",
@@ -39,6 +39,14 @@ class CredentialSoap < ::SOAP::RPC::Driver
39
39
  { :request_style => :document, :request_use => :literal,
40
40
  :response_style => :document, :response_use => :literal,
41
41
  :faults => {} }
42
+ ],
43
+ [ "http://www.docusign.net/API/Credential/RequestCorrectToken",
44
+ "requestCorrectToken",
45
+ [ ["in", "parameters", ["::SOAP::SOAPElement", "http://www.docusign.net/API/Credential", "RequestCorrectToken"]],
46
+ ["out", "parameters", ["::SOAP::SOAPElement", "http://www.docusign.net/API/Credential", "RequestCorrectTokenResponse"]] ],
47
+ { :request_style => :document, :request_use => :literal,
48
+ :response_style => :document, :response_use => :literal,
49
+ :faults => {} }
42
50
  ]
43
51
  ]
44
52
 
@@ -144,6 +144,26 @@ module DefaultMappingRegistry
144
144
  ["requestSenderTokenResult", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "RequestSenderTokenResult")], [0, 1]]
145
145
  ]
146
146
  )
147
+
148
+ LiteralRegistry.register(
149
+ :class => Docusign::Credential::RequestCorrectToken,
150
+ :schema_name => XSD::QName.new(NsCredential, "RequestCorrectToken"),
151
+ :schema_element => [
152
+ ["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]],
153
+ ["password", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Password")], [0, 1]],
154
+ ["envelopeID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "EnvelopeID")], [0, 1]],
155
+ ["suppressNavigation", ["SOAP::SOAPBoolean", XSD::QName.new(NsCredential, "SuppressNavigation")]],
156
+ ["returnURL", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "ReturnURL")], [0, 1]]
157
+ ]
158
+ )
159
+
160
+ LiteralRegistry.register(
161
+ :class => Docusign::Credential::RequestCorrectTokenResponse,
162
+ :schema_name => XSD::QName.new(NsCredential, "RequestCorrectTokenResponse"),
163
+ :schema_element => [
164
+ ["requestCorrectTokenResult", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "RequestCorrectTokenResult")], [0, 1]]
165
+ ]
166
+ )
147
167
  end
148
168
 
149
169
  end; end
@@ -1,24 +1,11 @@
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
1
  require 'xsd/qname'
17
2
 
18
3
  module Docusign
19
4
 
20
5
 
21
6
  # {http://www.docusign.net/API/3.0}Envelope
7
+ # transactionID - SOAP::SOAPString
8
+ # asynchronous - SOAP::SOAPBoolean
22
9
  # accountId - SOAP::SOAPString
23
10
  # documents - Docusign::ArrayOfDocument
24
11
  # recipients - Docusign::ArrayOfRecipient
@@ -34,7 +21,12 @@ module Docusign
34
21
  # notification - Docusign::Notification
35
22
  # envelopeAttachment - Docusign::ArrayOfAttachment
36
23
  # enforceSignerVisibility - SOAP::SOAPBoolean
24
+ # enableWetSign - SOAP::SOAPBoolean
25
+ # allowMarkup - SOAP::SOAPBoolean
26
+ # eventNotification - Docusign::EventNotification
37
27
  class Envelope
28
+ attr_accessor :transactionID
29
+ attr_accessor :asynchronous
38
30
  attr_accessor :accountId
39
31
  attr_accessor :documents
40
32
  attr_accessor :recipients
@@ -50,8 +42,13 @@ class Envelope
50
42
  attr_accessor :notification
51
43
  attr_accessor :envelopeAttachment
52
44
  attr_accessor :enforceSignerVisibility
45
+ attr_accessor :enableWetSign
46
+ attr_accessor :allowMarkup
47
+ attr_accessor :eventNotification
53
48
 
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)
49
+ def initialize(transactionID = nil, asynchronous = nil, 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, enableWetSign = nil, allowMarkup = nil, eventNotification = nil)
50
+ @transactionID = transactionID
51
+ @asynchronous = asynchronous
55
52
  @accountId = accountId
56
53
  @documents = documents
57
54
  @recipients = recipients
@@ -67,6 +64,9 @@ class Envelope
67
64
  @notification = notification
68
65
  @envelopeAttachment = envelopeAttachment
69
66
  @enforceSignerVisibility = enforceSignerVisibility
67
+ @enableWetSign = enableWetSign
68
+ @allowMarkup = allowMarkup
69
+ @eventNotification = eventNotification
70
70
  end
71
71
  end
72
72
 
@@ -82,6 +82,7 @@ end
82
82
  # transformPdfFields - SOAP::SOAPBoolean
83
83
  # fileExtension - SOAP::SOAPString
84
84
  # matchBoxes - Docusign::ArrayOfMatchBox
85
+ # attachmentDescription - SOAP::SOAPString
85
86
  class Document
86
87
  attr_accessor :iD
87
88
  attr_accessor :name
@@ -90,8 +91,9 @@ class Document
90
91
  attr_accessor :transformPdfFields
91
92
  attr_accessor :fileExtension
92
93
  attr_accessor :matchBoxes
94
+ attr_accessor :attachmentDescription
93
95
 
94
- def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil)
96
+ def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil, attachmentDescription = nil)
95
97
  @iD = iD
96
98
  @name = name
97
99
  @pDFBytes = pDFBytes
@@ -99,6 +101,7 @@ class Document
99
101
  @transformPdfFields = transformPdfFields
100
102
  @fileExtension = fileExtension
101
103
  @matchBoxes = matchBoxes
104
+ @attachmentDescription = attachmentDescription
102
105
  end
103
106
  end
104
107
 
@@ -142,9 +145,10 @@ end
142
145
  # addAccessCodeToEmail - SOAP::SOAPBoolean
143
146
  # requireIDLookup - SOAP::SOAPBoolean
144
147
  # iDCheckConfigurationName - SOAP::SOAPString
148
+ # phoneAuthentication - Docusign::RecipientPhoneAuthentication
145
149
  # signatureInfo - Docusign::RecipientSignatureInfo
146
150
  # captiveInfo - Docusign::RecipientCaptiveInfo
147
- # customFields - Docusign::ArrayOfString
151
+ # customFields - Docusign::ArrayOfString1
148
152
  # routingOrder - SOAP::SOAPUnsignedShort
149
153
  # iDCheckInformationInput - Docusign::IDCheckInformationInput
150
154
  # autoNavigation - SOAP::SOAPBoolean
@@ -153,6 +157,8 @@ end
153
157
  # roleName - SOAP::SOAPString
154
158
  # templateLocked - SOAP::SOAPBoolean
155
159
  # templateRequired - SOAP::SOAPBoolean
160
+ # templateAccessCodeRequired - SOAP::SOAPBoolean
161
+ # defaultRecipient - SOAP::SOAPBoolean
156
162
  class Recipient
157
163
  attr_accessor :iD
158
164
  attr_accessor :userName
@@ -163,6 +169,7 @@ class Recipient
163
169
  attr_accessor :addAccessCodeToEmail
164
170
  attr_accessor :requireIDLookup
165
171
  attr_accessor :iDCheckConfigurationName
172
+ attr_accessor :phoneAuthentication
166
173
  attr_accessor :signatureInfo
167
174
  attr_accessor :captiveInfo
168
175
  attr_accessor :customFields
@@ -174,8 +181,10 @@ class Recipient
174
181
  attr_accessor :roleName
175
182
  attr_accessor :templateLocked
176
183
  attr_accessor :templateRequired
184
+ attr_accessor :templateAccessCodeRequired
185
+ attr_accessor :defaultRecipient
177
186
 
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)
187
+ def initialize(iD = nil, userName = nil, signerName = nil, email = nil, type = nil, accessCode = nil, addAccessCodeToEmail = nil, requireIDLookup = nil, iDCheckConfigurationName = nil, phoneAuthentication = nil, signatureInfo = nil, captiveInfo = nil, customFields = nil, routingOrder = nil, iDCheckInformationInput = nil, autoNavigation = nil, recipientAttachment = nil, note = nil, roleName = nil, templateLocked = nil, templateRequired = nil, templateAccessCodeRequired = nil, defaultRecipient = nil)
179
188
  @iD = iD
180
189
  @userName = userName
181
190
  @signerName = signerName
@@ -185,6 +194,7 @@ class Recipient
185
194
  @addAccessCodeToEmail = addAccessCodeToEmail
186
195
  @requireIDLookup = requireIDLookup
187
196
  @iDCheckConfigurationName = iDCheckConfigurationName
197
+ @phoneAuthentication = phoneAuthentication
188
198
  @signatureInfo = signatureInfo
189
199
  @captiveInfo = captiveInfo
190
200
  @customFields = customFields
@@ -196,9 +206,34 @@ class Recipient
196
206
  @roleName = roleName
197
207
  @templateLocked = templateLocked
198
208
  @templateRequired = templateRequired
209
+ @templateAccessCodeRequired = templateAccessCodeRequired
210
+ @defaultRecipient = defaultRecipient
211
+ end
212
+ end
213
+
214
+ # {http://www.docusign.net/API/3.0}RecipientPhoneAuthentication
215
+ # recipMayProvideNumber - SOAP::SOAPBoolean
216
+ # validateRecipProvidedNumber - SOAP::SOAPBoolean
217
+ # recordVoicePrint - SOAP::SOAPBoolean
218
+ # senderProvidedNumbers - Docusign::ArrayOfString
219
+ class RecipientPhoneAuthentication
220
+ attr_accessor :recipMayProvideNumber
221
+ attr_accessor :validateRecipProvidedNumber
222
+ attr_accessor :recordVoicePrint
223
+ attr_accessor :senderProvidedNumbers
224
+
225
+ def initialize(recipMayProvideNumber = nil, validateRecipProvidedNumber = nil, recordVoicePrint = nil, senderProvidedNumbers = nil)
226
+ @recipMayProvideNumber = recipMayProvideNumber
227
+ @validateRecipProvidedNumber = validateRecipProvidedNumber
228
+ @recordVoicePrint = recordVoicePrint
229
+ @senderProvidedNumbers = senderProvidedNumbers
199
230
  end
200
231
  end
201
232
 
233
+ # {http://www.docusign.net/API/3.0}ArrayOfString
234
+ class ArrayOfString < ::Array
235
+ end
236
+
202
237
  # {http://www.docusign.net/API/3.0}RecipientSignatureInfo
203
238
  # signatureName - SOAP::SOAPString
204
239
  # signatureInitials - SOAP::SOAPString
@@ -225,8 +260,8 @@ class RecipientCaptiveInfo
225
260
  end
226
261
  end
227
262
 
228
- # {http://www.docusign.net/API/3.0}ArrayOfString
229
- class ArrayOfString < ::Array
263
+ # {http://www.docusign.net/API/3.0}ArrayOfString1
264
+ class ArrayOfString1 < ::Array
230
265
  end
231
266
 
232
267
  # {http://www.docusign.net/API/3.0}IDCheckInformationInput
@@ -394,6 +429,7 @@ end
394
429
  # pageNumber - SOAP::SOAPNonNegativeInteger
395
430
  # xPosition - SOAP::SOAPNonNegativeInteger
396
431
  # yPosition - SOAP::SOAPNonNegativeInteger
432
+ # scaleValue - SOAP::SOAPDecimal
397
433
  # anchorTabItem - Docusign::AnchorTab
398
434
  # type - Docusign::TabTypeCode
399
435
  # name - SOAP::SOAPString
@@ -413,12 +449,18 @@ end
413
449
  # customTabValidationMessage - SOAP::SOAPString
414
450
  # templateLocked - SOAP::SOAPBoolean
415
451
  # templateRequired - SOAP::SOAPBoolean
452
+ # conditionalParentLabel - SOAP::SOAPString
453
+ # conditionalParentValue - SOAP::SOAPString
454
+ # sharedTab - SOAP::SOAPBoolean
455
+ # requireInitialOnSharedTabChange - SOAP::SOAPBoolean
456
+ # concealValueOnDocument - SOAP::SOAPBoolean
416
457
  class Tab
417
458
  attr_accessor :documentID
418
459
  attr_accessor :recipientID
419
460
  attr_accessor :pageNumber
420
461
  attr_accessor :xPosition
421
462
  attr_accessor :yPosition
463
+ attr_accessor :scaleValue
422
464
  attr_accessor :anchorTabItem
423
465
  attr_accessor :type
424
466
  attr_accessor :name
@@ -438,13 +480,19 @@ class Tab
438
480
  attr_accessor :customTabValidationMessage
439
481
  attr_accessor :templateLocked
440
482
  attr_accessor :templateRequired
483
+ attr_accessor :conditionalParentLabel
484
+ attr_accessor :conditionalParentValue
485
+ attr_accessor :sharedTab
486
+ attr_accessor :requireInitialOnSharedTabChange
487
+ attr_accessor :concealValueOnDocument
441
488
 
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)
489
+ def initialize(documentID = nil, recipientID = nil, pageNumber = nil, xPosition = nil, yPosition = nil, scaleValue = 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, conditionalParentLabel = nil, conditionalParentValue = nil, sharedTab = nil, requireInitialOnSharedTabChange = nil, concealValueOnDocument = nil)
443
490
  @documentID = documentID
444
491
  @recipientID = recipientID
445
492
  @pageNumber = pageNumber
446
493
  @xPosition = xPosition
447
494
  @yPosition = yPosition
495
+ @scaleValue = scaleValue
448
496
  @anchorTabItem = anchorTabItem
449
497
  @type = type
450
498
  @name = name
@@ -464,6 +512,11 @@ class Tab
464
512
  @customTabValidationMessage = customTabValidationMessage
465
513
  @templateLocked = templateLocked
466
514
  @templateRequired = templateRequired
515
+ @conditionalParentLabel = conditionalParentLabel
516
+ @conditionalParentValue = conditionalParentValue
517
+ @sharedTab = sharedTab
518
+ @requireInitialOnSharedTabChange = requireInitialOnSharedTabChange
519
+ @concealValueOnDocument = concealValueOnDocument
467
520
  end
468
521
  end
469
522
 
@@ -472,17 +525,20 @@ end
472
525
  # xOffset - SOAP::SOAPDouble
473
526
  # yOffset - SOAP::SOAPDouble
474
527
  # unit - Docusign::UnitTypeCode
528
+ # ignoreIfNotPresent - SOAP::SOAPBoolean
475
529
  class AnchorTab
476
530
  attr_accessor :anchorTabString
477
531
  attr_accessor :xOffset
478
532
  attr_accessor :yOffset
479
533
  attr_accessor :unit
534
+ attr_accessor :ignoreIfNotPresent
480
535
 
481
- def initialize(anchorTabString = nil, xOffset = nil, yOffset = nil, unit = nil)
536
+ def initialize(anchorTabString = nil, xOffset = nil, yOffset = nil, unit = nil, ignoreIfNotPresent = nil)
482
537
  @anchorTabString = anchorTabString
483
538
  @xOffset = xOffset
484
539
  @yOffset = yOffset
485
540
  @unit = unit
541
+ @ignoreIfNotPresent = ignoreIfNotPresent
486
542
  end
487
543
  end
488
544
 
@@ -495,17 +551,23 @@ end
495
551
  # show - SOAP::SOAPString
496
552
  # required - SOAP::SOAPString
497
553
  # value - SOAP::SOAPString
554
+ # customFieldType - Docusign::CustomFieldType
555
+ # listItems - SOAP::SOAPString
498
556
  class CustomField
499
557
  attr_accessor :name
500
558
  attr_accessor :show
501
559
  attr_accessor :required
502
560
  attr_accessor :value
561
+ attr_accessor :customFieldType
562
+ attr_accessor :listItems
503
563
 
504
- def initialize(name = nil, show = nil, required = nil, value = nil)
564
+ def initialize(name = nil, show = nil, required = nil, value = nil, customFieldType = nil, listItems = nil)
505
565
  @name = name
506
566
  @show = show
507
567
  @required = required
508
568
  @value = value
569
+ @customFieldType = customFieldType
570
+ @listItems = listItems
509
571
  end
510
572
  end
511
573
 
@@ -576,6 +638,39 @@ class Expirations
576
638
  end
577
639
  end
578
640
 
641
+ # {http://www.docusign.net/API/3.0}EventNotification
642
+ # uRL - SOAP::SOAPString
643
+ # loggingEnabled - SOAP::SOAPBoolean
644
+ # envelopeEvents - Docusign::ArrayOfEnvelopeEvent
645
+ class EventNotification
646
+ attr_accessor :uRL
647
+ attr_accessor :loggingEnabled
648
+ attr_accessor :envelopeEvents
649
+
650
+ def initialize(uRL = nil, loggingEnabled = nil, envelopeEvents = nil)
651
+ @uRL = uRL
652
+ @loggingEnabled = loggingEnabled
653
+ @envelopeEvents = envelopeEvents
654
+ end
655
+ end
656
+
657
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeEvent
658
+ class ArrayOfEnvelopeEvent < ::Array
659
+ end
660
+
661
+ # {http://www.docusign.net/API/3.0}EnvelopeEvent
662
+ # envelopeEventStatusCode - Docusign::EnvelopeEventStatusCode
663
+ # includeDocuments - SOAP::SOAPBoolean
664
+ class EnvelopeEvent
665
+ attr_accessor :envelopeEventStatusCode
666
+ attr_accessor :includeDocuments
667
+
668
+ def initialize(envelopeEventStatusCode = nil, includeDocuments = nil)
669
+ @envelopeEventStatusCode = envelopeEventStatusCode
670
+ @includeDocuments = includeDocuments
671
+ end
672
+ end
673
+
579
674
  # {http://www.docusign.net/API/3.0}EnvelopeStatus
580
675
  # recipientStatuses - Docusign::ArrayOfRecipientStatus
581
676
  # timeGenerated - SOAP::SOAPDateTime
@@ -696,12 +791,13 @@ end
696
791
  # autoNavigation - SOAP::SOAPBoolean
697
792
  # iDCheckInformation - Docusign::IDCheckInformation
698
793
  # recipientAuthenticationStatus - Docusign::AuthenticationStatus
699
- # customFields - Docusign::ArrayOfString
794
+ # customFields - Docusign::ArrayOfString1
700
795
  # tabStatuses - Docusign::ArrayOfTabStatus
701
796
  # recipientAttachment - Docusign::ArrayOfAttachment
702
797
  # accountStatus - SOAP::SOAPString
703
798
  # esignAgreementInformation - Docusign::RecipientStatusEsignAgreementInformation
704
799
  # formData - Docusign::FormData
800
+ # recipientId - SOAP::SOAPString
705
801
  class RecipientStatus
706
802
  attr_accessor :type
707
803
  attr_accessor :email
@@ -724,8 +820,9 @@ class RecipientStatus
724
820
  attr_accessor :accountStatus
725
821
  attr_accessor :esignAgreementInformation
726
822
  attr_accessor :formData
823
+ attr_accessor :recipientId
727
824
 
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)
825
+ 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, recipientId = nil)
729
826
  @type = type
730
827
  @email = email
731
828
  @userName = userName
@@ -747,6 +844,7 @@ class RecipientStatus
747
844
  @accountStatus = accountStatus
748
845
  @esignAgreementInformation = esignAgreementInformation
749
846
  @formData = formData
847
+ @recipientId = recipientId
750
848
  end
751
849
  end
752
850
 
@@ -773,6 +871,7 @@ end
773
871
  # ageVerifyResult - Docusign::EventResult
774
872
  # sTANPinResult - Docusign::EventResult
775
873
  # oFACResult - Docusign::EventResult
874
+ # phoneAuthResult - Docusign::EventResult
776
875
  class AuthenticationStatus
777
876
  attr_accessor :accessCodeResult
778
877
  attr_accessor :iDQuestionsResult
@@ -780,14 +879,16 @@ class AuthenticationStatus
780
879
  attr_accessor :ageVerifyResult
781
880
  attr_accessor :sTANPinResult
782
881
  attr_accessor :oFACResult
882
+ attr_accessor :phoneAuthResult
783
883
 
784
- def initialize(accessCodeResult = nil, iDQuestionsResult = nil, iDLookupResult = nil, ageVerifyResult = nil, sTANPinResult = nil, oFACResult = nil)
884
+ def initialize(accessCodeResult = nil, iDQuestionsResult = nil, iDLookupResult = nil, ageVerifyResult = nil, sTANPinResult = nil, oFACResult = nil, phoneAuthResult = nil)
785
885
  @accessCodeResult = accessCodeResult
786
886
  @iDQuestionsResult = iDQuestionsResult
787
887
  @iDLookupResult = iDLookupResult
788
888
  @ageVerifyResult = ageVerifyResult
789
889
  @sTANPinResult = sTANPinResult
790
890
  @oFACResult = oFACResult
891
+ @phoneAuthResult = phoneAuthResult
791
892
  end
792
893
  end
793
894
 
@@ -824,6 +925,8 @@ end
824
925
  # roleName - SOAP::SOAPString
825
926
  # listValues - SOAP::SOAPString
826
927
  # listSelectedValue - SOAP::SOAPString
928
+ # scaleValue - SOAP::SOAPDecimal
929
+ # customTabType - Docusign::CustomTabType
827
930
  class TabStatus
828
931
  attr_accessor :tabType
829
932
  attr_accessor :status
@@ -840,8 +943,10 @@ class TabStatus
840
943
  attr_accessor :roleName
841
944
  attr_accessor :listValues
842
945
  attr_accessor :listSelectedValue
946
+ attr_accessor :scaleValue
947
+ attr_accessor :customTabType
843
948
 
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)
949
+ 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, scaleValue = nil, customTabType = nil)
845
950
  @tabType = tabType
846
951
  @status = status
847
952
  @xPosition = xPosition
@@ -857,6 +962,8 @@ class TabStatus
857
962
  @roleName = roleName
858
963
  @listValues = listValues
859
964
  @listSelectedValue = listSelectedValue
965
+ @scaleValue = scaleValue
966
+ @customTabType = customTabType
860
967
  end
861
968
  end
862
969
 
@@ -1147,7 +1254,7 @@ end
1147
1254
  # beginDateTime - Docusign::EnvelopeStatusFilterBeginDateTime
1148
1255
  # endDateTime - SOAP::SOAPDateTime
1149
1256
  # statuses - Docusign::ArrayOfEnvelopeStatusCode
1150
- # envelopeIds - Docusign::ArrayOfString1
1257
+ # envelopeIds - Docusign::ArrayOfString2
1151
1258
  # startAtIndex - SOAP::SOAPNonNegativeInteger
1152
1259
  # aCStatus - Docusign::EnvelopeACStatusCode
1153
1260
  class EnvelopeStatusFilter
@@ -1212,8 +1319,60 @@ end
1212
1319
  class ArrayOfEnvelopeStatusCode < ::Array
1213
1320
  end
1214
1321
 
1215
- # {http://www.docusign.net/API/3.0}ArrayOfString1
1216
- class ArrayOfString1 < ::Array
1322
+ # {http://www.docusign.net/API/3.0}ArrayOfString2
1323
+ class ArrayOfString2 < ::Array
1324
+ end
1325
+
1326
+ # {http://www.docusign.net/API/3.0}FilteredEnvelopeStatusChanges
1327
+ # resultSetSize - SOAP::SOAPInt
1328
+ # envelopeStatusChanges - Docusign::ArrayOfEnvelopeStatusChange
1329
+ class FilteredEnvelopeStatusChanges
1330
+ attr_accessor :resultSetSize
1331
+ attr_accessor :envelopeStatusChanges
1332
+
1333
+ def initialize(resultSetSize = nil, envelopeStatusChanges = nil)
1334
+ @resultSetSize = resultSetSize
1335
+ @envelopeStatusChanges = envelopeStatusChanges
1336
+ end
1337
+ end
1338
+
1339
+ # {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatusChange
1340
+ class ArrayOfEnvelopeStatusChange < ::Array
1341
+ end
1342
+
1343
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusChange
1344
+ # envelopeID - SOAP::SOAPString
1345
+ # status - Docusign::EnvelopeStatusCode
1346
+ # statusChanged - SOAP::SOAPDateTime
1347
+ class EnvelopeStatusChange
1348
+ attr_accessor :envelopeID
1349
+ attr_accessor :status
1350
+ attr_accessor :statusChanged
1351
+
1352
+ def initialize(envelopeID = nil, status = nil, statusChanged = nil)
1353
+ @envelopeID = envelopeID
1354
+ @status = status
1355
+ @statusChanged = statusChanged
1356
+ end
1357
+ end
1358
+
1359
+ # {http://www.docusign.net/API/3.0}EnvelopeStatusChangeFilter
1360
+ # accountId - SOAP::SOAPString
1361
+ # userInfo - Docusign::UserInfo
1362
+ # statusChangedSince - SOAP::SOAPDateTime
1363
+ # statuses - Docusign::ArrayOfEnvelopeStatusCode
1364
+ class EnvelopeStatusChangeFilter
1365
+ attr_accessor :accountId
1366
+ attr_accessor :userInfo
1367
+ attr_accessor :statusChangedSince
1368
+ attr_accessor :statuses
1369
+
1370
+ def initialize(accountId = nil, userInfo = nil, statusChangedSince = nil, statuses = nil)
1371
+ @accountId = accountId
1372
+ @userInfo = userInfo
1373
+ @statusChangedSince = statusChangedSince
1374
+ @statuses = statuses
1375
+ end
1217
1376
  end
1218
1377
 
1219
1378
  # {http://www.docusign.net/API/3.0}FilteredEnvelopeStatuses
@@ -1278,7 +1437,7 @@ end
1278
1437
  # {http://www.docusign.net/API/3.0}RecipientList
1279
1438
  # reservedRecipientEmail - SOAP::SOAPBoolean
1280
1439
  # multipleUsers - SOAP::SOAPBoolean
1281
- # recipientName - Docusign::ArrayOfString2
1440
+ # recipientName - Docusign::ArrayOfString3
1282
1441
  class RecipientList
1283
1442
  attr_accessor :reservedRecipientEmail
1284
1443
  attr_accessor :multipleUsers
@@ -1291,8 +1450,8 @@ class RecipientList
1291
1450
  end
1292
1451
  end
1293
1452
 
1294
- # {http://www.docusign.net/API/3.0}ArrayOfString2
1295
- class ArrayOfString2 < ::Array
1453
+ # {http://www.docusign.net/API/3.0}ArrayOfString3
1454
+ class ArrayOfString3 < ::Array
1296
1455
  end
1297
1456
 
1298
1457
  # {http://www.docusign.net/API/3.0}VoidEnvelopeStatus
@@ -1334,6 +1493,8 @@ end
1334
1493
  # onException - SOAP::SOAPString
1335
1494
  # onAccessCodeFailed - SOAP::SOAPString
1336
1495
  # onIdCheckFailed - SOAP::SOAPString
1496
+ # onFaxPending - SOAP::SOAPString
1497
+ # generateSignedDocumentAsynch - SOAP::SOAPBoolean
1337
1498
  class RequestRecipientTokenClientURLs
1338
1499
  attr_accessor :onSigningComplete
1339
1500
  attr_accessor :onViewingComplete
@@ -1344,8 +1505,10 @@ class RequestRecipientTokenClientURLs
1344
1505
  attr_accessor :onException
1345
1506
  attr_accessor :onAccessCodeFailed
1346
1507
  attr_accessor :onIdCheckFailed
1508
+ attr_accessor :onFaxPending
1509
+ attr_accessor :generateSignedDocumentAsynch
1347
1510
 
1348
- def initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil)
1511
+ def initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil, onFaxPending = nil, generateSignedDocumentAsynch = nil)
1349
1512
  @onSigningComplete = onSigningComplete
1350
1513
  @onViewingComplete = onViewingComplete
1351
1514
  @onCancel = onCancel
@@ -1355,6 +1518,8 @@ class RequestRecipientTokenClientURLs
1355
1518
  @onException = onException
1356
1519
  @onAccessCodeFailed = onAccessCodeFailed
1357
1520
  @onIdCheckFailed = onIdCheckFailed
1521
+ @onFaxPending = onFaxPending
1522
+ @generateSignedDocumentAsynch = generateSignedDocumentAsynch
1358
1523
  end
1359
1524
  end
1360
1525
 
@@ -1371,7 +1536,7 @@ end
1371
1536
  # {http://www.docusign.net/API/3.0}AccountMembershipFeaturesList
1372
1537
  # email - SOAP::SOAPString
1373
1538
  # userName - SOAP::SOAPString
1374
- # enabledFeaturesSet - Docusign::ArrayOfString3
1539
+ # enabledFeaturesSet - Docusign::ArrayOfString4
1375
1540
  class AccountMembershipFeaturesList
1376
1541
  attr_accessor :email
1377
1542
  attr_accessor :userName
@@ -1384,8 +1549,8 @@ class AccountMembershipFeaturesList
1384
1549
  end
1385
1550
  end
1386
1551
 
1387
- # {http://www.docusign.net/API/3.0}ArrayOfString3
1388
- class ArrayOfString3 < ::Array
1552
+ # {http://www.docusign.net/API/3.0}ArrayOfString4
1553
+ class ArrayOfString4 < ::Array
1389
1554
  end
1390
1555
 
1391
1556
  # {http://www.docusign.net/API/3.0}AccountSettingsList
@@ -1530,6 +1695,8 @@ class ArrayOfRecipient1 < ::Array
1530
1695
  end
1531
1696
 
1532
1697
  # {http://www.docusign.net/API/3.0}EnvelopeInformation
1698
+ # transactionID - SOAP::SOAPString
1699
+ # asynchronous - SOAP::SOAPBoolean
1533
1700
  # accountId - SOAP::SOAPString
1534
1701
  # emailBlurb - SOAP::SOAPString
1535
1702
  # subject - SOAP::SOAPString
@@ -1541,7 +1708,13 @@ end
1541
1708
  # authoritativeCopy - SOAP::SOAPBoolean
1542
1709
  # notification - Docusign::Notification
1543
1710
  # enforceSignerVisibility - SOAP::SOAPBoolean
1711
+ # enableWetSign - SOAP::SOAPBoolean
1712
+ # allowRecipientRecursion - SOAP::SOAPBoolean
1713
+ # allowMarkup - SOAP::SOAPBoolean
1714
+ # eventNotification - Docusign::EventNotification
1544
1715
  class EnvelopeInformation
1716
+ attr_accessor :transactionID
1717
+ attr_accessor :asynchronous
1545
1718
  attr_accessor :accountId
1546
1719
  attr_accessor :emailBlurb
1547
1720
  attr_accessor :subject
@@ -1553,8 +1726,14 @@ class EnvelopeInformation
1553
1726
  attr_accessor :authoritativeCopy
1554
1727
  attr_accessor :notification
1555
1728
  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)
1729
+ attr_accessor :enableWetSign
1730
+ attr_accessor :allowRecipientRecursion
1731
+ attr_accessor :allowMarkup
1732
+ attr_accessor :eventNotification
1733
+
1734
+ def initialize(transactionID = nil, asynchronous = nil, accountId = nil, emailBlurb = nil, subject = nil, signingLocation = nil, customFields = nil, vaultingOptions = nil, autoNavigation = nil, envelopeIdStamping = nil, authoritativeCopy = nil, notification = nil, enforceSignerVisibility = nil, enableWetSign = nil, allowRecipientRecursion = nil, allowMarkup = nil, eventNotification = nil)
1735
+ @transactionID = transactionID
1736
+ @asynchronous = asynchronous
1558
1737
  @accountId = accountId
1559
1738
  @emailBlurb = emailBlurb
1560
1739
  @subject = subject
@@ -1566,6 +1745,77 @@ class EnvelopeInformation
1566
1745
  @authoritativeCopy = authoritativeCopy
1567
1746
  @notification = notification
1568
1747
  @enforceSignerVisibility = enforceSignerVisibility
1748
+ @enableWetSign = enableWetSign
1749
+ @allowRecipientRecursion = allowRecipientRecursion
1750
+ @allowMarkup = allowMarkup
1751
+ @eventNotification = eventNotification
1752
+ end
1753
+ end
1754
+
1755
+ # {http://www.docusign.net/API/3.0}ArrayOfCompositeTemplate
1756
+ class ArrayOfCompositeTemplate < ::Array
1757
+ end
1758
+
1759
+ # {http://www.docusign.net/API/3.0}CompositeTemplate
1760
+ # serverTemplates - Docusign::ArrayOfServerTemplate
1761
+ # inlineTemplates - Docusign::ArrayOfInlineTemplate
1762
+ # pDFMetaDataTemplate - Docusign::PDFMetaDataTemplate
1763
+ # document - Docusign::Document
1764
+ class CompositeTemplate
1765
+ attr_accessor :serverTemplates
1766
+ attr_accessor :inlineTemplates
1767
+ attr_accessor :pDFMetaDataTemplate
1768
+ attr_accessor :document
1769
+
1770
+ def initialize(serverTemplates = nil, inlineTemplates = nil, pDFMetaDataTemplate = nil, document = nil)
1771
+ @serverTemplates = serverTemplates
1772
+ @inlineTemplates = inlineTemplates
1773
+ @pDFMetaDataTemplate = pDFMetaDataTemplate
1774
+ @document = document
1775
+ end
1776
+ end
1777
+
1778
+ # {http://www.docusign.net/API/3.0}ArrayOfServerTemplate
1779
+ class ArrayOfServerTemplate < ::Array
1780
+ end
1781
+
1782
+ # {http://www.docusign.net/API/3.0}ServerTemplate
1783
+ # sequence - SOAP::SOAPPositiveInteger
1784
+ # templateID - SOAP::SOAPString
1785
+ class ServerTemplate
1786
+ attr_accessor :sequence
1787
+ attr_accessor :templateID
1788
+
1789
+ def initialize(sequence = nil, templateID = nil)
1790
+ @sequence = sequence
1791
+ @templateID = templateID
1792
+ end
1793
+ end
1794
+
1795
+ # {http://www.docusign.net/API/3.0}ArrayOfInlineTemplate
1796
+ class ArrayOfInlineTemplate < ::Array
1797
+ end
1798
+
1799
+ # {http://www.docusign.net/API/3.0}InlineTemplate
1800
+ # sequence - SOAP::SOAPPositiveInteger
1801
+ # envelope - Docusign::Envelope
1802
+ class InlineTemplate
1803
+ attr_accessor :sequence
1804
+ attr_accessor :envelope
1805
+
1806
+ def initialize(sequence = nil, envelope = nil)
1807
+ @sequence = sequence
1808
+ @envelope = envelope
1809
+ end
1810
+ end
1811
+
1812
+ # {http://www.docusign.net/API/3.0}PDFMetaDataTemplate
1813
+ # sequence - SOAP::SOAPPositiveInteger
1814
+ class PDFMetaDataTemplate
1815
+ attr_accessor :sequence
1816
+
1817
+ def initialize(sequence = nil)
1818
+ @sequence = sequence
1569
1819
  end
1570
1820
  end
1571
1821
 
@@ -1672,6 +1922,10 @@ end
1672
1922
  # shared - SOAP::SOAPBoolean
1673
1923
  # created - SOAP::SOAPDateTime
1674
1924
  # owner - SOAP::SOAPBoolean
1925
+ # phone1 - Docusign::AddressBookPhoneNumber
1926
+ # phone2 - Docusign::AddressBookPhoneNumber
1927
+ # phone3 - Docusign::AddressBookPhoneNumber
1928
+ # phone4 - Docusign::AddressBookPhoneNumber
1675
1929
  class AddressBookItem
1676
1930
  attr_accessor :addressBookID
1677
1931
  attr_accessor :email
@@ -1680,8 +1934,12 @@ class AddressBookItem
1680
1934
  attr_accessor :shared
1681
1935
  attr_accessor :created
1682
1936
  attr_accessor :owner
1937
+ attr_accessor :phone1
1938
+ attr_accessor :phone2
1939
+ attr_accessor :phone3
1940
+ attr_accessor :phone4
1683
1941
 
1684
- def initialize(addressBookID = nil, email = nil, userName = nil, accountName = nil, shared = nil, created = nil, owner = nil)
1942
+ def initialize(addressBookID = nil, email = nil, userName = nil, accountName = nil, shared = nil, created = nil, owner = nil, phone1 = nil, phone2 = nil, phone3 = nil, phone4 = nil)
1685
1943
  @addressBookID = addressBookID
1686
1944
  @email = email
1687
1945
  @userName = userName
@@ -1689,6 +1947,23 @@ class AddressBookItem
1689
1947
  @shared = shared
1690
1948
  @created = created
1691
1949
  @owner = owner
1950
+ @phone1 = phone1
1951
+ @phone2 = phone2
1952
+ @phone3 = phone3
1953
+ @phone4 = phone4
1954
+ end
1955
+ end
1956
+
1957
+ # {http://www.docusign.net/API/3.0}AddressBookPhoneNumber
1958
+ # phoneNumber - SOAP::SOAPString
1959
+ # designation - Docusign::PhoneNumberDesignation
1960
+ class AddressBookPhoneNumber
1961
+ attr_accessor :phoneNumber
1962
+ attr_accessor :designation
1963
+
1964
+ def initialize(phoneNumber = nil, designation = nil)
1965
+ @phoneNumber = phoneNumber
1966
+ @designation = designation
1692
1967
  end
1693
1968
  end
1694
1969
 
@@ -1723,10 +1998,175 @@ class AddressBookRemoveItem
1723
1998
  end
1724
1999
  end
1725
2000
 
2001
+ # {http://www.docusign.net/API/3.0}SynchEnvelopeStatus
2002
+ # envelopeStatus - Docusign::EnvelopeStatusCode
2003
+ # envelopeID - SOAP::SOAPString
2004
+ class SynchEnvelopeStatus
2005
+ attr_accessor :envelopeStatus
2006
+ attr_accessor :envelopeID
2007
+
2008
+ def initialize(envelopeStatus = nil, envelopeID = nil)
2009
+ @envelopeStatus = envelopeStatus
2010
+ @envelopeID = envelopeID
2011
+ end
2012
+ end
2013
+
2014
+ # {http://www.docusign.net/API/3.0}FolderFilter
2015
+ # accountId - SOAP::SOAPString
2016
+ # folderOwner - Docusign::UserInfo
2017
+ # folderTypeInfo - Docusign::FolderTypeInfo
2018
+ # startPosition - SOAP::SOAPInt
2019
+ # fromDate - SOAP::SOAPDateTime
2020
+ # toDate - SOAP::SOAPDateTime
2021
+ # searchText - SOAP::SOAPString
2022
+ # status - Docusign::EnvelopeStatusCode
2023
+ class FolderFilter
2024
+ attr_accessor :accountId
2025
+ attr_accessor :folderOwner
2026
+ attr_accessor :folderTypeInfo
2027
+ attr_accessor :startPosition
2028
+ attr_accessor :fromDate
2029
+ attr_accessor :toDate
2030
+ attr_accessor :searchText
2031
+ attr_accessor :status
2032
+
2033
+ def initialize(accountId = nil, folderOwner = nil, folderTypeInfo = nil, startPosition = nil, fromDate = nil, toDate = nil, searchText = nil, status = nil)
2034
+ @accountId = accountId
2035
+ @folderOwner = folderOwner
2036
+ @folderTypeInfo = folderTypeInfo
2037
+ @startPosition = startPosition
2038
+ @fromDate = fromDate
2039
+ @toDate = toDate
2040
+ @searchText = searchText
2041
+ @status = status
2042
+ end
2043
+ end
2044
+
2045
+ # {http://www.docusign.net/API/3.0}FolderTypeInfo
2046
+ # folderType - Docusign::FolderType
2047
+ # folderName - SOAP::SOAPString
2048
+ class FolderTypeInfo
2049
+ attr_accessor :folderType
2050
+ attr_accessor :folderName
2051
+
2052
+ def initialize(folderType = nil, folderName = nil)
2053
+ @folderType = folderType
2054
+ @folderName = folderName
2055
+ end
2056
+ end
2057
+
2058
+ # {http://www.docusign.net/API/3.0}FolderResults
2059
+ # resultSetSize - SOAP::SOAPInt
2060
+ # startPosition - SOAP::SOAPInt
2061
+ # endPosition - SOAP::SOAPInt
2062
+ # folderTypeInfo - Docusign::FolderTypeInfo
2063
+ # folderItems - Docusign::ArrayOfFolderItem
2064
+ class FolderResults
2065
+ attr_accessor :resultSetSize
2066
+ attr_accessor :startPosition
2067
+ attr_accessor :endPosition
2068
+ attr_accessor :folderTypeInfo
2069
+ attr_accessor :folderItems
2070
+
2071
+ def initialize(resultSetSize = nil, startPosition = nil, endPosition = nil, folderTypeInfo = nil, folderItems = nil)
2072
+ @resultSetSize = resultSetSize
2073
+ @startPosition = startPosition
2074
+ @endPosition = endPosition
2075
+ @folderTypeInfo = folderTypeInfo
2076
+ @folderItems = folderItems
2077
+ end
2078
+ end
2079
+
2080
+ # {http://www.docusign.net/API/3.0}ArrayOfFolderItem
2081
+ class ArrayOfFolderItem < ::Array
2082
+ end
2083
+
2084
+ # {http://www.docusign.net/API/3.0}FolderItem
2085
+ # envelopeId - SOAP::SOAPString
2086
+ # status - Docusign::EnvelopeStatusCode
2087
+ # owner - SOAP::SOAPString
2088
+ # senderName - SOAP::SOAPString
2089
+ # senderEmail - SOAP::SOAPString
2090
+ # senderCompany - SOAP::SOAPString
2091
+ # recipientStatuses - Docusign::ArrayOfRecipientStatus
2092
+ # customFields - Docusign::ArrayOfCustomField
2093
+ # created - SOAP::SOAPDateTime
2094
+ # sent - SOAP::SOAPDateTime
2095
+ # completed - SOAP::SOAPDateTime
2096
+ # subject - SOAP::SOAPString
2097
+ class FolderItem
2098
+ attr_accessor :envelopeId
2099
+ attr_accessor :status
2100
+ attr_accessor :owner
2101
+ attr_accessor :senderName
2102
+ attr_accessor :senderEmail
2103
+ attr_accessor :senderCompany
2104
+ attr_accessor :recipientStatuses
2105
+ attr_accessor :customFields
2106
+ attr_accessor :created
2107
+ attr_accessor :sent
2108
+ attr_accessor :completed
2109
+ attr_accessor :subject
2110
+
2111
+ def initialize(envelopeId = nil, status = nil, owner = nil, senderName = nil, senderEmail = nil, senderCompany = nil, recipientStatuses = nil, customFields = nil, created = nil, sent = nil, completed = nil, subject = nil)
2112
+ @envelopeId = envelopeId
2113
+ @status = status
2114
+ @owner = owner
2115
+ @senderName = senderName
2116
+ @senderEmail = senderEmail
2117
+ @senderCompany = senderCompany
2118
+ @recipientStatuses = recipientStatuses
2119
+ @customFields = customFields
2120
+ @created = created
2121
+ @sent = sent
2122
+ @completed = completed
2123
+ @subject = subject
2124
+ end
2125
+ end
2126
+
2127
+ # {http://www.docusign.net/API/3.0}FoldersFilter
2128
+ # accountId - SOAP::SOAPString
2129
+ class FoldersFilter
2130
+ attr_accessor :accountId
2131
+
2132
+ def initialize(accountId = nil)
2133
+ @accountId = accountId
2134
+ end
2135
+ end
2136
+
2137
+ # {http://www.docusign.net/API/3.0}AvailableFolders
2138
+ # folders - Docusign::ArrayOfFolder
2139
+ class AvailableFolders
2140
+ attr_accessor :folders
2141
+
2142
+ def initialize(folders = nil)
2143
+ @folders = folders
2144
+ end
2145
+ end
2146
+
2147
+ # {http://www.docusign.net/API/3.0}ArrayOfFolder
2148
+ class ArrayOfFolder < ::Array
2149
+ end
2150
+
2151
+ # {http://www.docusign.net/API/3.0}Folder
2152
+ # folderOwner - Docusign::UserInfo
2153
+ # folderTypeInfo - Docusign::FolderTypeInfo
2154
+ class Folder
2155
+ attr_accessor :folderOwner
2156
+ attr_accessor :folderTypeInfo
2157
+
2158
+ def initialize(folderOwner = nil, folderTypeInfo = nil)
2159
+ @folderOwner = folderOwner
2160
+ @folderTypeInfo = folderTypeInfo
2161
+ end
2162
+ end
2163
+
1726
2164
  # {http://www.docusign.net/API/3.0}RecipientTypeCode
1727
2165
  class RecipientTypeCode < ::String
2166
+ Agent = RecipientTypeCode.new("Agent")
1728
2167
  CarbonCopy = RecipientTypeCode.new("CarbonCopy")
1729
2168
  CertifiedDelivery = RecipientTypeCode.new("CertifiedDelivery")
2169
+ Editor = RecipientTypeCode.new("Editor")
1730
2170
  InPersonSigner = RecipientTypeCode.new("InPersonSigner")
1731
2171
  Signer = RecipientTypeCode.new("Signer")
1732
2172
  end
@@ -1734,6 +2174,14 @@ end
1734
2174
  # {http://www.docusign.net/API/3.0}FontStyleCode
1735
2175
  class FontStyleCode < ::String
1736
2176
  BradleyHandITC = FontStyleCode.new("BradleyHandITC")
2177
+ DocuSign1 = FontStyleCode.new("DocuSign1")
2178
+ DocuSign2 = FontStyleCode.new("DocuSign2")
2179
+ DocuSign3 = FontStyleCode.new("DocuSign3")
2180
+ DocuSign4 = FontStyleCode.new("DocuSign4")
2181
+ DocuSign5 = FontStyleCode.new("DocuSign5")
2182
+ DocuSign6 = FontStyleCode.new("DocuSign6")
2183
+ DocuSign7 = FontStyleCode.new("DocuSign7")
2184
+ DocuSign8 = FontStyleCode.new("DocuSign8")
1737
2185
  Freehand575 = FontStyleCode.new("Freehand575")
1738
2186
  KaufmannBT = FontStyleCode.new("KaufmannBT")
1739
2187
  LuciaBT = FontStyleCode.new("LuciaBT")
@@ -1766,6 +2214,8 @@ class TabTypeCode < ::String
1766
2214
  InitialHere = TabTypeCode.new("InitialHere")
1767
2215
  InitialHereOptional = TabTypeCode.new("InitialHereOptional")
1768
2216
  SignHere = TabTypeCode.new("SignHere")
2217
+ SignHereOptional = TabTypeCode.new("SignHereOptional")
2218
+ SignerAttachment = TabTypeCode.new("SignerAttachment")
1769
2219
  Title = TabTypeCode.new("Title")
1770
2220
  end
1771
2221
 
@@ -1789,6 +2239,12 @@ class SigningLocationCode < ::String
1789
2239
  Online = SigningLocationCode.new("Online")
1790
2240
  end
1791
2241
 
2242
+ # {http://www.docusign.net/API/3.0}CustomFieldType
2243
+ class CustomFieldType < ::String
2244
+ List = CustomFieldType.new("List")
2245
+ Text = CustomFieldType.new("Text")
2246
+ end
2247
+
1792
2248
  # {http://www.docusign.net/API/3.0}VaultingModeCode
1793
2249
  class VaultingModeCode < ::String
1794
2250
  EODAuthoritativeCopy = VaultingModeCode.new("EODAuthoritativeCopy")
@@ -1796,12 +2252,22 @@ class VaultingModeCode < ::String
1796
2252
  None = VaultingModeCode.new("None")
1797
2253
  end
1798
2254
 
2255
+ # {http://www.docusign.net/API/3.0}EnvelopeEventStatusCode
2256
+ class EnvelopeEventStatusCode < ::String
2257
+ Completed = EnvelopeEventStatusCode.new("Completed")
2258
+ Declined = EnvelopeEventStatusCode.new("Declined")
2259
+ Delivered = EnvelopeEventStatusCode.new("Delivered")
2260
+ Sent = EnvelopeEventStatusCode.new("Sent")
2261
+ Voided = EnvelopeEventStatusCode.new("Voided")
2262
+ end
2263
+
1799
2264
  # {http://www.docusign.net/API/3.0}RecipientStatusCode
1800
2265
  class RecipientStatusCode < ::String
1801
2266
  Completed = RecipientStatusCode.new("Completed")
1802
2267
  Created = RecipientStatusCode.new("Created")
1803
2268
  Declined = RecipientStatusCode.new("Declined")
1804
2269
  Delivered = RecipientStatusCode.new("Delivered")
2270
+ FaxPending = RecipientStatusCode.new("FaxPending")
1805
2271
  Sent = RecipientStatusCode.new("Sent")
1806
2272
  Signed = RecipientStatusCode.new("Signed")
1807
2273
  end
@@ -1820,6 +2286,7 @@ class EnvelopeStatusCode < ::String
1820
2286
  Declined = EnvelopeStatusCode.new("Declined")
1821
2287
  Deleted = EnvelopeStatusCode.new("Deleted")
1822
2288
  Delivered = EnvelopeStatusCode.new("Delivered")
2289
+ Processing = EnvelopeStatusCode.new("Processing")
1823
2290
  Sent = EnvelopeStatusCode.new("Sent")
1824
2291
  Signed = EnvelopeStatusCode.new("Signed")
1825
2292
  Template = EnvelopeStatusCode.new("Template")
@@ -1876,6 +2343,23 @@ class TemplateLocationCode < ::String
1876
2343
  Server = TemplateLocationCode.new("Server")
1877
2344
  end
1878
2345
 
2346
+ # {http://www.docusign.net/API/3.0}PhoneNumberDesignation
2347
+ class PhoneNumberDesignation < ::String
2348
+ Home = PhoneNumberDesignation.new("Home")
2349
+ Mobile = PhoneNumberDesignation.new("Mobile")
2350
+ Other = PhoneNumberDesignation.new("Other")
2351
+ Work = PhoneNumberDesignation.new("Work")
2352
+ end
2353
+
2354
+ # {http://www.docusign.net/API/3.0}FolderType
2355
+ class FolderType < ::String
2356
+ Draft = FolderType.new("Draft")
2357
+ Inbox = FolderType.new("Inbox")
2358
+ Normal = FolderType.new("Normal")
2359
+ RecycleBin = FolderType.new("RecycleBin")
2360
+ SentItems = FolderType.new("SentItems")
2361
+ end
2362
+
1879
2363
  # {http://www.docusign.net/API/3.0}CreateEnvelope
1880
2364
  # envelope - Docusign::Envelope
1881
2365
  class CreateEnvelope
@@ -1916,6 +2400,29 @@ class CreateAndSendEnvelopeResponse
1916
2400
  end
1917
2401
  end
1918
2402
 
2403
+ # {http://www.docusign.net/API/3.0}SendEnvelope
2404
+ # envelopeId - SOAP::SOAPString
2405
+ # accountId - SOAP::SOAPString
2406
+ class SendEnvelope
2407
+ attr_accessor :envelopeId
2408
+ attr_accessor :accountId
2409
+
2410
+ def initialize(envelopeId = nil, accountId = nil)
2411
+ @envelopeId = envelopeId
2412
+ @accountId = accountId
2413
+ end
2414
+ end
2415
+
2416
+ # {http://www.docusign.net/API/3.0}SendEnvelopeResponse
2417
+ # sendEnvelopeResult - Docusign::EnvelopeStatus
2418
+ class SendEnvelopeResponse
2419
+ attr_accessor :sendEnvelopeResult
2420
+
2421
+ def initialize(sendEnvelopeResult = nil)
2422
+ @sendEnvelopeResult = sendEnvelopeResult
2423
+ end
2424
+ end
2425
+
1919
2426
  # {http://www.docusign.net/API/3.0}CorrectAndResendEnvelope
1920
2427
  # correction - Docusign::Correction
1921
2428
  class CorrectAndResendEnvelope
@@ -1936,6 +2443,26 @@ class CorrectAndResendEnvelopeResponse
1936
2443
  end
1937
2444
  end
1938
2445
 
2446
+ # {http://www.docusign.net/API/3.0}RequestPDFNoWaterMark
2447
+ # envelopeID - SOAP::SOAPString
2448
+ class RequestPDFNoWaterMark
2449
+ attr_accessor :envelopeID
2450
+
2451
+ def initialize(envelopeID = nil)
2452
+ @envelopeID = envelopeID
2453
+ end
2454
+ end
2455
+
2456
+ # {http://www.docusign.net/API/3.0}RequestPDFNoWaterMarkResponse
2457
+ # requestPDFNoWaterMarkResult - Docusign::EnvelopePDF
2458
+ class RequestPDFNoWaterMarkResponse
2459
+ attr_accessor :requestPDFNoWaterMarkResult
2460
+
2461
+ def initialize(requestPDFNoWaterMarkResult = nil)
2462
+ @requestPDFNoWaterMarkResult = requestPDFNoWaterMarkResult
2463
+ end
2464
+ end
2465
+
1939
2466
  # {http://www.docusign.net/API/3.0}RequestPDF
1940
2467
  # envelopeID - SOAP::SOAPString
1941
2468
  class RequestPDF
@@ -1956,6 +2483,29 @@ class RequestPDFResponse
1956
2483
  end
1957
2484
  end
1958
2485
 
2486
+ # {http://www.docusign.net/API/3.0}RequestPDFWithCert
2487
+ # envelopeID - SOAP::SOAPString
2488
+ # addWaterMark - SOAP::SOAPBoolean
2489
+ class RequestPDFWithCert
2490
+ attr_accessor :envelopeID
2491
+ attr_accessor :addWaterMark
2492
+
2493
+ def initialize(envelopeID = nil, addWaterMark = nil)
2494
+ @envelopeID = envelopeID
2495
+ @addWaterMark = addWaterMark
2496
+ end
2497
+ end
2498
+
2499
+ # {http://www.docusign.net/API/3.0}RequestPDFWithCertResponse
2500
+ # requestPDFWithCertResult - Docusign::EnvelopePDF
2501
+ class RequestPDFWithCertResponse
2502
+ attr_accessor :requestPDFWithCertResult
2503
+
2504
+ def initialize(requestPDFWithCertResult = nil)
2505
+ @requestPDFWithCertResult = requestPDFWithCertResult
2506
+ end
2507
+ end
2508
+
1959
2509
  # {http://www.docusign.net/API/3.0}RequestDocumentPDFs
1960
2510
  # envelopeID - SOAP::SOAPString
1961
2511
  class RequestDocumentPDFs
@@ -2062,6 +2612,46 @@ class RequestStatusResponse
2062
2612
  end
2063
2613
  end
2064
2614
 
2615
+ # {http://www.docusign.net/API/3.0}RequestStatusCodes
2616
+ # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
2617
+ class RequestStatusCodes
2618
+ attr_accessor :envelopeStatusFilter
2619
+
2620
+ def initialize(envelopeStatusFilter = nil)
2621
+ @envelopeStatusFilter = envelopeStatusFilter
2622
+ end
2623
+ end
2624
+
2625
+ # {http://www.docusign.net/API/3.0}RequestStatusCodesResponse
2626
+ # requestStatusCodesResult - Docusign::FilteredEnvelopeStatusChanges
2627
+ class RequestStatusCodesResponse
2628
+ attr_accessor :requestStatusCodesResult
2629
+
2630
+ def initialize(requestStatusCodesResult = nil)
2631
+ @requestStatusCodesResult = requestStatusCodesResult
2632
+ end
2633
+ end
2634
+
2635
+ # {http://www.docusign.net/API/3.0}RequestStatusChanges
2636
+ # envelopeStatusChangeFilter - Docusign::EnvelopeStatusChangeFilter
2637
+ class RequestStatusChanges
2638
+ attr_accessor :envelopeStatusChangeFilter
2639
+
2640
+ def initialize(envelopeStatusChangeFilter = nil)
2641
+ @envelopeStatusChangeFilter = envelopeStatusChangeFilter
2642
+ end
2643
+ end
2644
+
2645
+ # {http://www.docusign.net/API/3.0}RequestStatusChangesResponse
2646
+ # requestStatusChangesResult - Docusign::FilteredEnvelopeStatusChanges
2647
+ class RequestStatusChangesResponse
2648
+ attr_accessor :requestStatusChangesResult
2649
+
2650
+ def initialize(requestStatusChangesResult = nil)
2651
+ @requestStatusChangesResult = requestStatusChangesResult
2652
+ end
2653
+ end
2654
+
2065
2655
  # {http://www.docusign.net/API/3.0}RequestStatusesEx
2066
2656
  # envelopeStatusFilter - Docusign::EnvelopeStatusFilter
2067
2657
  class RequestStatusesEx
@@ -2404,6 +2994,32 @@ class CreateEnvelopeFromTemplatesResponse
2404
2994
  end
2405
2995
  end
2406
2996
 
2997
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplatesAndForms
2998
+ # envelopeInformation - Docusign::EnvelopeInformation
2999
+ # compositeTemplates - Docusign::ArrayOfCompositeTemplate
3000
+ # activateEnvelope - SOAP::SOAPBoolean
3001
+ class CreateEnvelopeFromTemplatesAndForms
3002
+ attr_accessor :envelopeInformation
3003
+ attr_accessor :compositeTemplates
3004
+ attr_accessor :activateEnvelope
3005
+
3006
+ def initialize(envelopeInformation = nil, compositeTemplates = nil, activateEnvelope = nil)
3007
+ @envelopeInformation = envelopeInformation
3008
+ @compositeTemplates = compositeTemplates
3009
+ @activateEnvelope = activateEnvelope
3010
+ end
3011
+ end
3012
+
3013
+ # {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplatesAndFormsResponse
3014
+ # createEnvelopeFromTemplatesAndFormsResult - Docusign::EnvelopeStatus
3015
+ class CreateEnvelopeFromTemplatesAndFormsResponse
3016
+ attr_accessor :createEnvelopeFromTemplatesAndFormsResult
3017
+
3018
+ def initialize(createEnvelopeFromTemplatesAndFormsResult = nil)
3019
+ @createEnvelopeFromTemplatesAndFormsResult = createEnvelopeFromTemplatesAndFormsResult
3020
+ end
3021
+ end
3022
+
2407
3023
  # {http://www.docusign.net/API/3.0}GetStatusInDocuSignConnectFormat
2408
3024
  # envelopeID - SOAP::SOAPString
2409
3025
  class GetStatusInDocuSignConnectFormat
@@ -2492,11 +3108,14 @@ end
2492
3108
 
2493
3109
  # {http://www.docusign.net/API/3.0}RequestTemplates
2494
3110
  # accountID - SOAP::SOAPString
3111
+ # includeAdvancedTemplates - SOAP::SOAPBoolean
2495
3112
  class RequestTemplates
2496
3113
  attr_accessor :accountID
3114
+ attr_accessor :includeAdvancedTemplates
2497
3115
 
2498
- def initialize(accountID = nil)
3116
+ def initialize(accountID = nil, includeAdvancedTemplates = nil)
2499
3117
  @accountID = accountID
3118
+ @includeAdvancedTemplates = includeAdvancedTemplates
2500
3119
  end
2501
3120
  end
2502
3121
 
@@ -2619,6 +3238,146 @@ class RemoveAddressBookItemsResponse
2619
3238
  end
2620
3239
  end
2621
3240
 
3241
+ # {http://www.docusign.net/API/3.0}SynchEnvelope
3242
+ # transactionID - SOAP::SOAPString
3243
+ # accountID - SOAP::SOAPString
3244
+ # block - SOAP::SOAPBoolean
3245
+ class SynchEnvelope
3246
+ attr_accessor :transactionID
3247
+ attr_accessor :accountID
3248
+ attr_accessor :block
2622
3249
 
3250
+ def initialize(transactionID = nil, accountID = nil, block = nil)
3251
+ @transactionID = transactionID
3252
+ @accountID = accountID
3253
+ @block = block
3254
+ end
3255
+ end
3256
+
3257
+ # {http://www.docusign.net/API/3.0}SynchEnvelopeResponse
3258
+ # synchEnvelopeResult - Docusign::SynchEnvelopeStatus
3259
+ class SynchEnvelopeResponse
3260
+ attr_accessor :synchEnvelopeResult
3261
+
3262
+ def initialize(synchEnvelopeResult = nil)
3263
+ @synchEnvelopeResult = synchEnvelopeResult
3264
+ end
2623
3265
  end
2624
3266
 
3267
+ # {http://www.docusign.net/API/3.0}RequestSenderToken
3268
+ # envelopeID - SOAP::SOAPString
3269
+ # accountID - SOAP::SOAPString
3270
+ # returnURL - SOAP::SOAPString
3271
+ class RequestSenderToken
3272
+ attr_accessor :envelopeID
3273
+ attr_accessor :accountID
3274
+ attr_accessor :returnURL
3275
+
3276
+ def initialize(envelopeID = nil, accountID = nil, returnURL = nil)
3277
+ @envelopeID = envelopeID
3278
+ @accountID = accountID
3279
+ @returnURL = returnURL
3280
+ end
3281
+ end
3282
+
3283
+ # {http://www.docusign.net/API/3.0}RequestSenderTokenResponse
3284
+ # requestSenderTokenResult - SOAP::SOAPString
3285
+ class RequestSenderTokenResponse
3286
+ attr_accessor :requestSenderTokenResult
3287
+
3288
+ def initialize(requestSenderTokenResult = nil)
3289
+ @requestSenderTokenResult = requestSenderTokenResult
3290
+ end
3291
+ end
3292
+
3293
+ # {http://www.docusign.net/API/3.0}RequestCorrectToken
3294
+ # envelopeID - SOAP::SOAPString
3295
+ # suppressNavigation - SOAP::SOAPBoolean
3296
+ # returnURL - SOAP::SOAPString
3297
+ class RequestCorrectToken
3298
+ attr_accessor :envelopeID
3299
+ attr_accessor :suppressNavigation
3300
+ attr_accessor :returnURL
3301
+
3302
+ def initialize(envelopeID = nil, suppressNavigation = nil, returnURL = nil)
3303
+ @envelopeID = envelopeID
3304
+ @suppressNavigation = suppressNavigation
3305
+ @returnURL = returnURL
3306
+ end
3307
+ end
3308
+
3309
+ # {http://www.docusign.net/API/3.0}RequestCorrectTokenResponse
3310
+ # requestCorrectTokenResult - SOAP::SOAPString
3311
+ class RequestCorrectTokenResponse
3312
+ attr_accessor :requestCorrectTokenResult
3313
+
3314
+ def initialize(requestCorrectTokenResult = nil)
3315
+ @requestCorrectTokenResult = requestCorrectTokenResult
3316
+ end
3317
+ end
3318
+
3319
+ # {http://www.docusign.net/API/3.0}GetFolderItems
3320
+ # folderFilter - Docusign::FolderFilter
3321
+ class GetFolderItems
3322
+ attr_accessor :folderFilter
3323
+
3324
+ def initialize(folderFilter = nil)
3325
+ @folderFilter = folderFilter
3326
+ end
3327
+ end
3328
+
3329
+ # {http://www.docusign.net/API/3.0}GetFolderItemsResponse
3330
+ # getFolderItemsResult - Docusign::FolderResults
3331
+ class GetFolderItemsResponse
3332
+ attr_accessor :getFolderItemsResult
3333
+
3334
+ def initialize(getFolderItemsResult = nil)
3335
+ @getFolderItemsResult = getFolderItemsResult
3336
+ end
3337
+ end
3338
+
3339
+ # {http://www.docusign.net/API/3.0}GetFolderList
3340
+ # foldersFilter - Docusign::FoldersFilter
3341
+ class GetFolderList
3342
+ attr_accessor :foldersFilter
3343
+
3344
+ def initialize(foldersFilter = nil)
3345
+ @foldersFilter = foldersFilter
3346
+ end
3347
+ end
3348
+
3349
+ # {http://www.docusign.net/API/3.0}GetFolderListResponse
3350
+ # getFolderListResult - Docusign::AvailableFolders
3351
+ class GetFolderListResponse
3352
+ attr_accessor :getFolderListResult
3353
+
3354
+ def initialize(getFolderListResult = nil)
3355
+ @getFolderListResult = getFolderListResult
3356
+ end
3357
+ end
3358
+
3359
+ # {http://www.docusign.net/API/3.0}RequestEnvelope
3360
+ # envelopeID - SOAP::SOAPString
3361
+ # includeDocumentBytes - SOAP::SOAPBoolean
3362
+ class RequestEnvelope
3363
+ attr_accessor :envelopeID
3364
+ attr_accessor :includeDocumentBytes
3365
+
3366
+ def initialize(envelopeID = nil, includeDocumentBytes = nil)
3367
+ @envelopeID = envelopeID
3368
+ @includeDocumentBytes = includeDocumentBytes
3369
+ end
3370
+ end
3371
+
3372
+ # {http://www.docusign.net/API/3.0}RequestEnvelopeResponse
3373
+ # requestEnvelopeResult - Docusign::Envelope
3374
+ class RequestEnvelopeResponse
3375
+ attr_accessor :requestEnvelopeResult
3376
+
3377
+ def initialize(requestEnvelopeResult = nil)
3378
+ @requestEnvelopeResult = requestEnvelopeResult
3379
+ end
3380
+ end
3381
+
3382
+
3383
+ end