docusignsdk 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +20 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/docusignsdk.gemspec +84 -0
- data/lib/Credential.wsdl +229 -0
- data/lib/docusign.rb +42 -0
- data/lib/docusign/anchor_tab.rb +5 -0
- data/lib/docusign/auth_header_handler.rb +36 -0
- data/lib/docusign/base.rb +55 -0
- data/lib/docusign/builder/anchor_builder.rb +7 -0
- data/lib/docusign/builder/base.rb +27 -0
- data/lib/docusign/builder/tab_builder.rb +32 -0
- data/lib/docusign/credential.rb +196 -0
- data/lib/docusign/credentialDriver.rb +83 -0
- data/lib/docusign/credentialMappingRegistry.rb +169 -0
- data/lib/docusign/document.rb +30 -0
- data/lib/docusign/docusign.rb +3383 -0
- data/lib/docusign/docusignDriver.rb +401 -0
- data/lib/docusign/docusignMappingRegistry.rb +3734 -0
- data/lib/docusign/extensions.rb +96 -0
- data/lib/docusign/integrators_key_auth_header_handler.rb +41 -0
- data/lib/docusign/request_recipient_token_client_urls.rb +7 -0
- data/lib/docusign/tab.rb +30 -0
- data/lib/docusign/utilities.rb +8 -0
- data/lib/docusignsdk.rb +0 -0
- data/lib/wsdl/DocuSign3.0.10API.wsdl +2376 -0
- data/lib/wsdl/DocuSign3.0.11API.wsdl +2668 -0
- data/lib/wsdl/DocuSign3.0.2API.wsdl +3150 -0
- data/lib/wsdl/DocuSign3.0.2CredentialAPI.wsdl +275 -0
- data/test/helper.rb +18 -0
- data/test/test_docusignsdk.rb +7 -0
- metadata +155 -0
@@ -0,0 +1,169 @@
|
|
1
|
+
require 'docusign/credential.rb'
|
2
|
+
require 'soap/mapping'
|
3
|
+
|
4
|
+
module Docusign; module Credential
|
5
|
+
|
6
|
+
module DefaultMappingRegistry
|
7
|
+
EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
|
8
|
+
LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
|
9
|
+
NsCredential = "http://www.docusign.net/API/Credential"
|
10
|
+
|
11
|
+
EncodedRegistry.register(
|
12
|
+
:class => Docusign::Credential::ArrayOfAccount,
|
13
|
+
:schema_type => XSD::QName.new(NsCredential, "ArrayOfAccount"),
|
14
|
+
:schema_element => [
|
15
|
+
["account", ["Docusign::Credential::ArrayOfAccount::Account[]", XSD::QName.new(NsCredential, "Account")], [0, nil]]
|
16
|
+
]
|
17
|
+
)
|
18
|
+
|
19
|
+
EncodedRegistry.register(
|
20
|
+
:class => Docusign::Credential::ArrayOfAccount::Account,
|
21
|
+
:schema_name => XSD::QName.new(NsCredential, "Account"),
|
22
|
+
:is_anonymous => true,
|
23
|
+
:schema_qualified => true,
|
24
|
+
:schema_element => [
|
25
|
+
["accountID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountID")], [0, 1]],
|
26
|
+
["accountName", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountName")], [0, 1]],
|
27
|
+
["userID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "UserID")], [0, 1]],
|
28
|
+
["userName", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "UserName")], [0, 1]],
|
29
|
+
["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]]
|
30
|
+
]
|
31
|
+
)
|
32
|
+
|
33
|
+
EncodedRegistry.register(
|
34
|
+
:class => Docusign::Credential::ErrorCode,
|
35
|
+
:schema_type => XSD::QName.new(NsCredential, "ErrorCode")
|
36
|
+
)
|
37
|
+
|
38
|
+
LiteralRegistry.register(
|
39
|
+
:class => Docusign::Credential::ArrayOfAccount,
|
40
|
+
:schema_type => XSD::QName.new(NsCredential, "ArrayOfAccount"),
|
41
|
+
:schema_element => [
|
42
|
+
["account", ["Docusign::Credential::ArrayOfAccount::Account[]", XSD::QName.new(NsCredential, "Account")], [0, nil]]
|
43
|
+
]
|
44
|
+
)
|
45
|
+
|
46
|
+
LiteralRegistry.register(
|
47
|
+
:class => Docusign::Credential::ArrayOfAccount::Account,
|
48
|
+
:schema_name => XSD::QName.new(NsCredential, "Account"),
|
49
|
+
:is_anonymous => true,
|
50
|
+
:schema_qualified => true,
|
51
|
+
:schema_element => [
|
52
|
+
["accountID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountID")], [0, 1]],
|
53
|
+
["accountName", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountName")], [0, 1]],
|
54
|
+
["userID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "UserID")], [0, 1]],
|
55
|
+
["userName", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "UserName")], [0, 1]],
|
56
|
+
["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]]
|
57
|
+
]
|
58
|
+
)
|
59
|
+
|
60
|
+
LiteralRegistry.register(
|
61
|
+
:class => Docusign::Credential::ErrorCode,
|
62
|
+
:schema_type => XSD::QName.new(NsCredential, "ErrorCode")
|
63
|
+
)
|
64
|
+
|
65
|
+
LiteralRegistry.register(
|
66
|
+
:class => Docusign::Credential::Ping,
|
67
|
+
:schema_name => XSD::QName.new(NsCredential, "Ping"),
|
68
|
+
:schema_element => []
|
69
|
+
)
|
70
|
+
|
71
|
+
LiteralRegistry.register(
|
72
|
+
:class => Docusign::Credential::PingResponse,
|
73
|
+
:schema_name => XSD::QName.new(NsCredential, "PingResponse"),
|
74
|
+
:schema_element => [
|
75
|
+
["pingResult", ["SOAP::SOAPBoolean", XSD::QName.new(NsCredential, "PingResult")]]
|
76
|
+
]
|
77
|
+
)
|
78
|
+
|
79
|
+
LiteralRegistry.register(
|
80
|
+
:class => Docusign::Credential::Login,
|
81
|
+
:schema_name => XSD::QName.new(NsCredential, "Login"),
|
82
|
+
:schema_element => [
|
83
|
+
["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]],
|
84
|
+
["password", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Password")], [0, 1]]
|
85
|
+
]
|
86
|
+
)
|
87
|
+
|
88
|
+
LiteralRegistry.register(
|
89
|
+
:class => Docusign::Credential::LoginResponse,
|
90
|
+
:schema_name => XSD::QName.new(NsCredential, "LoginResponse"),
|
91
|
+
:schema_element => [
|
92
|
+
["loginResult", ["Docusign::Credential::LoginResponse::LoginResult", XSD::QName.new(NsCredential, "LoginResult")], [0, 1]]
|
93
|
+
]
|
94
|
+
)
|
95
|
+
|
96
|
+
LiteralRegistry.register(
|
97
|
+
:class => Docusign::Credential::LoginResponse::LoginResult,
|
98
|
+
:schema_name => XSD::QName.new(NsCredential, "LoginResult"),
|
99
|
+
:is_anonymous => true,
|
100
|
+
:schema_qualified => true,
|
101
|
+
:schema_element => [
|
102
|
+
["success", ["SOAP::SOAPBoolean", XSD::QName.new(NsCredential, "Success")]],
|
103
|
+
["errorCode", ["Docusign::Credential::ErrorCode", XSD::QName.new(NsCredential, "ErrorCode")], [0, 1]],
|
104
|
+
["authenticationMessage", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AuthenticationMessage")], [0, 1]],
|
105
|
+
["accounts", ["Docusign::Credential::ArrayOfAccount", XSD::QName.new(NsCredential, "Accounts")], [0, 1]]
|
106
|
+
]
|
107
|
+
)
|
108
|
+
|
109
|
+
LiteralRegistry.register(
|
110
|
+
:class => Docusign::Credential::GetAuthenticationToken,
|
111
|
+
:schema_name => XSD::QName.new(NsCredential, "GetAuthenticationToken"),
|
112
|
+
:schema_element => [
|
113
|
+
["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]],
|
114
|
+
["password", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Password")], [0, 1]],
|
115
|
+
["accountID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountID")], [0, 1]],
|
116
|
+
["goToEnvelopeID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "GoToEnvelopeID")], [0, 1]]
|
117
|
+
]
|
118
|
+
)
|
119
|
+
|
120
|
+
LiteralRegistry.register(
|
121
|
+
:class => Docusign::Credential::GetAuthenticationTokenResponse,
|
122
|
+
:schema_name => XSD::QName.new(NsCredential, "GetAuthenticationTokenResponse"),
|
123
|
+
:schema_element => [
|
124
|
+
["getAuthenticationTokenResult", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "GetAuthenticationTokenResult")], [0, 1]]
|
125
|
+
]
|
126
|
+
)
|
127
|
+
|
128
|
+
LiteralRegistry.register(
|
129
|
+
:class => Docusign::Credential::RequestSenderToken,
|
130
|
+
:schema_name => XSD::QName.new(NsCredential, "RequestSenderToken"),
|
131
|
+
:schema_element => [
|
132
|
+
["email", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Email")], [0, 1]],
|
133
|
+
["password", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "Password")], [0, 1]],
|
134
|
+
["accountID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "AccountID")], [0, 1]],
|
135
|
+
["envelopeID", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "EnvelopeID")], [0, 1]],
|
136
|
+
["returnURL", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "ReturnURL")], [0, 1]]
|
137
|
+
]
|
138
|
+
)
|
139
|
+
|
140
|
+
LiteralRegistry.register(
|
141
|
+
:class => Docusign::Credential::RequestSenderTokenResponse,
|
142
|
+
:schema_name => XSD::QName.new(NsCredential, "RequestSenderTokenResponse"),
|
143
|
+
:schema_element => [
|
144
|
+
["requestSenderTokenResult", ["SOAP::SOAPString", XSD::QName.new(NsCredential, "RequestSenderTokenResult")], [0, 1]]
|
145
|
+
]
|
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
|
+
)
|
167
|
+
end
|
168
|
+
|
169
|
+
end; end
|
@@ -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 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,3383 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module Docusign
|
4
|
+
|
5
|
+
|
6
|
+
# {http://www.docusign.net/API/3.0}Envelope
|
7
|
+
# transactionID - SOAP::SOAPString
|
8
|
+
# asynchronous - SOAP::SOAPBoolean
|
9
|
+
# accountId - SOAP::SOAPString
|
10
|
+
# documents - Docusign::ArrayOfDocument
|
11
|
+
# recipients - Docusign::ArrayOfRecipient
|
12
|
+
# tabs - Docusign::ArrayOfTab
|
13
|
+
# subject - SOAP::SOAPString
|
14
|
+
# emailBlurb - SOAP::SOAPString
|
15
|
+
# signingLocation - Docusign::SigningLocationCode
|
16
|
+
# customFields - Docusign::ArrayOfCustomField
|
17
|
+
# vaultingOptions - Docusign::VaultingOptions
|
18
|
+
# autoNavigation - SOAP::SOAPBoolean
|
19
|
+
# envelopeIdStamping - SOAP::SOAPBoolean
|
20
|
+
# authoritativeCopy - SOAP::SOAPBoolean
|
21
|
+
# notification - Docusign::Notification
|
22
|
+
# envelopeAttachment - Docusign::ArrayOfAttachment
|
23
|
+
# enforceSignerVisibility - SOAP::SOAPBoolean
|
24
|
+
# enableWetSign - SOAP::SOAPBoolean
|
25
|
+
# allowMarkup - SOAP::SOAPBoolean
|
26
|
+
# eventNotification - Docusign::EventNotification
|
27
|
+
class Envelope
|
28
|
+
attr_accessor :transactionID
|
29
|
+
attr_accessor :asynchronous
|
30
|
+
attr_accessor :accountId
|
31
|
+
attr_accessor :documents
|
32
|
+
attr_accessor :recipients
|
33
|
+
attr_accessor :tabs
|
34
|
+
attr_accessor :subject
|
35
|
+
attr_accessor :emailBlurb
|
36
|
+
attr_accessor :signingLocation
|
37
|
+
attr_accessor :customFields
|
38
|
+
attr_accessor :vaultingOptions
|
39
|
+
attr_accessor :autoNavigation
|
40
|
+
attr_accessor :envelopeIdStamping
|
41
|
+
attr_accessor :authoritativeCopy
|
42
|
+
attr_accessor :notification
|
43
|
+
attr_accessor :envelopeAttachment
|
44
|
+
attr_accessor :enforceSignerVisibility
|
45
|
+
attr_accessor :enableWetSign
|
46
|
+
attr_accessor :allowMarkup
|
47
|
+
attr_accessor :eventNotification
|
48
|
+
|
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
|
52
|
+
@accountId = accountId
|
53
|
+
@documents = documents
|
54
|
+
@recipients = recipients
|
55
|
+
@tabs = tabs
|
56
|
+
@subject = subject
|
57
|
+
@emailBlurb = emailBlurb
|
58
|
+
@signingLocation = signingLocation
|
59
|
+
@customFields = customFields
|
60
|
+
@vaultingOptions = vaultingOptions
|
61
|
+
@autoNavigation = autoNavigation
|
62
|
+
@envelopeIdStamping = envelopeIdStamping
|
63
|
+
@authoritativeCopy = authoritativeCopy
|
64
|
+
@notification = notification
|
65
|
+
@envelopeAttachment = envelopeAttachment
|
66
|
+
@enforceSignerVisibility = enforceSignerVisibility
|
67
|
+
@enableWetSign = enableWetSign
|
68
|
+
@allowMarkup = allowMarkup
|
69
|
+
@eventNotification = eventNotification
|
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
|
+
# attachmentDescription - SOAP::SOAPString
|
86
|
+
class Document
|
87
|
+
attr_accessor :iD
|
88
|
+
attr_accessor :name
|
89
|
+
attr_accessor :pDFBytes
|
90
|
+
attr_accessor :password
|
91
|
+
attr_accessor :transformPdfFields
|
92
|
+
attr_accessor :fileExtension
|
93
|
+
attr_accessor :matchBoxes
|
94
|
+
attr_accessor :attachmentDescription
|
95
|
+
|
96
|
+
def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil, attachmentDescription = nil)
|
97
|
+
@iD = iD
|
98
|
+
@name = name
|
99
|
+
@pDFBytes = pDFBytes
|
100
|
+
@password = password
|
101
|
+
@transformPdfFields = transformPdfFields
|
102
|
+
@fileExtension = fileExtension
|
103
|
+
@matchBoxes = matchBoxes
|
104
|
+
@attachmentDescription = attachmentDescription
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# {http://www.docusign.net/API/3.0}ArrayOfMatchBox
|
109
|
+
class ArrayOfMatchBox < ::Array
|
110
|
+
end
|
111
|
+
|
112
|
+
# {http://www.docusign.net/API/3.0}MatchBox
|
113
|
+
# pageNumber - SOAP::SOAPPositiveInteger
|
114
|
+
# xPosition - SOAP::SOAPInt
|
115
|
+
# yPosition - SOAP::SOAPInt
|
116
|
+
# width - SOAP::SOAPInt
|
117
|
+
# height - SOAP::SOAPInt
|
118
|
+
class MatchBox
|
119
|
+
attr_accessor :pageNumber
|
120
|
+
attr_accessor :xPosition
|
121
|
+
attr_accessor :yPosition
|
122
|
+
attr_accessor :width
|
123
|
+
attr_accessor :height
|
124
|
+
|
125
|
+
def initialize(pageNumber = nil, xPosition = nil, yPosition = nil, width = nil, height = nil)
|
126
|
+
@pageNumber = pageNumber
|
127
|
+
@xPosition = xPosition
|
128
|
+
@yPosition = yPosition
|
129
|
+
@width = width
|
130
|
+
@height = height
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipient
|
135
|
+
class ArrayOfRecipient < ::Array
|
136
|
+
end
|
137
|
+
|
138
|
+
# {http://www.docusign.net/API/3.0}Recipient
|
139
|
+
# iD - SOAP::SOAPPositiveInteger
|
140
|
+
# userName - SOAP::SOAPString
|
141
|
+
# signerName - SOAP::SOAPString
|
142
|
+
# email - SOAP::SOAPString
|
143
|
+
# type - Docusign::RecipientTypeCode
|
144
|
+
# accessCode - SOAP::SOAPString
|
145
|
+
# addAccessCodeToEmail - SOAP::SOAPBoolean
|
146
|
+
# requireIDLookup - SOAP::SOAPBoolean
|
147
|
+
# iDCheckConfigurationName - SOAP::SOAPString
|
148
|
+
# phoneAuthentication - Docusign::RecipientPhoneAuthentication
|
149
|
+
# signatureInfo - Docusign::RecipientSignatureInfo
|
150
|
+
# captiveInfo - Docusign::RecipientCaptiveInfo
|
151
|
+
# customFields - Docusign::ArrayOfString1
|
152
|
+
# routingOrder - SOAP::SOAPUnsignedShort
|
153
|
+
# iDCheckInformationInput - Docusign::IDCheckInformationInput
|
154
|
+
# autoNavigation - SOAP::SOAPBoolean
|
155
|
+
# recipientAttachment - Docusign::ArrayOfAttachment
|
156
|
+
# note - SOAP::SOAPString
|
157
|
+
# roleName - SOAP::SOAPString
|
158
|
+
# templateLocked - SOAP::SOAPBoolean
|
159
|
+
# templateRequired - SOAP::SOAPBoolean
|
160
|
+
# templateAccessCodeRequired - SOAP::SOAPBoolean
|
161
|
+
# defaultRecipient - SOAP::SOAPBoolean
|
162
|
+
class Recipient
|
163
|
+
attr_accessor :iD
|
164
|
+
attr_accessor :userName
|
165
|
+
attr_accessor :signerName
|
166
|
+
attr_accessor :email
|
167
|
+
attr_accessor :type
|
168
|
+
attr_accessor :accessCode
|
169
|
+
attr_accessor :addAccessCodeToEmail
|
170
|
+
attr_accessor :requireIDLookup
|
171
|
+
attr_accessor :iDCheckConfigurationName
|
172
|
+
attr_accessor :phoneAuthentication
|
173
|
+
attr_accessor :signatureInfo
|
174
|
+
attr_accessor :captiveInfo
|
175
|
+
attr_accessor :customFields
|
176
|
+
attr_accessor :routingOrder
|
177
|
+
attr_accessor :iDCheckInformationInput
|
178
|
+
attr_accessor :autoNavigation
|
179
|
+
attr_accessor :recipientAttachment
|
180
|
+
attr_accessor :note
|
181
|
+
attr_accessor :roleName
|
182
|
+
attr_accessor :templateLocked
|
183
|
+
attr_accessor :templateRequired
|
184
|
+
attr_accessor :templateAccessCodeRequired
|
185
|
+
attr_accessor :defaultRecipient
|
186
|
+
|
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)
|
188
|
+
@iD = iD
|
189
|
+
@userName = userName
|
190
|
+
@signerName = signerName
|
191
|
+
@email = email
|
192
|
+
@type = type
|
193
|
+
@accessCode = accessCode
|
194
|
+
@addAccessCodeToEmail = addAccessCodeToEmail
|
195
|
+
@requireIDLookup = requireIDLookup
|
196
|
+
@iDCheckConfigurationName = iDCheckConfigurationName
|
197
|
+
@phoneAuthentication = phoneAuthentication
|
198
|
+
@signatureInfo = signatureInfo
|
199
|
+
@captiveInfo = captiveInfo
|
200
|
+
@customFields = customFields
|
201
|
+
@routingOrder = routingOrder
|
202
|
+
@iDCheckInformationInput = iDCheckInformationInput
|
203
|
+
@autoNavigation = autoNavigation
|
204
|
+
@recipientAttachment = recipientAttachment
|
205
|
+
@note = note
|
206
|
+
@roleName = roleName
|
207
|
+
@templateLocked = templateLocked
|
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
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
# {http://www.docusign.net/API/3.0}ArrayOfString
|
234
|
+
class ArrayOfString < ::Array
|
235
|
+
end
|
236
|
+
|
237
|
+
# {http://www.docusign.net/API/3.0}RecipientSignatureInfo
|
238
|
+
# signatureName - SOAP::SOAPString
|
239
|
+
# signatureInitials - SOAP::SOAPString
|
240
|
+
# fontStyle - Docusign::FontStyleCode
|
241
|
+
class RecipientSignatureInfo
|
242
|
+
attr_accessor :signatureName
|
243
|
+
attr_accessor :signatureInitials
|
244
|
+
attr_accessor :fontStyle
|
245
|
+
|
246
|
+
def initialize(signatureName = nil, signatureInitials = nil, fontStyle = nil)
|
247
|
+
@signatureName = signatureName
|
248
|
+
@signatureInitials = signatureInitials
|
249
|
+
@fontStyle = fontStyle
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
# {http://www.docusign.net/API/3.0}RecipientCaptiveInfo
|
254
|
+
# clientUserId - SOAP::SOAPString
|
255
|
+
class RecipientCaptiveInfo
|
256
|
+
attr_accessor :clientUserId
|
257
|
+
|
258
|
+
def initialize(clientUserId = nil)
|
259
|
+
@clientUserId = clientUserId
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
# {http://www.docusign.net/API/3.0}ArrayOfString1
|
264
|
+
class ArrayOfString1 < ::Array
|
265
|
+
end
|
266
|
+
|
267
|
+
# {http://www.docusign.net/API/3.0}IDCheckInformationInput
|
268
|
+
# addressInformationInput - Docusign::AddressInformationInput
|
269
|
+
# dOBInformationInput - Docusign::DOBInformationInput
|
270
|
+
# sSN4InformationInput - Docusign::SSN4InformationInput
|
271
|
+
# sSN9InformationInput - Docusign::SSN9InformationInput
|
272
|
+
class IDCheckInformationInput
|
273
|
+
attr_accessor :addressInformationInput
|
274
|
+
attr_accessor :dOBInformationInput
|
275
|
+
attr_accessor :sSN4InformationInput
|
276
|
+
attr_accessor :sSN9InformationInput
|
277
|
+
|
278
|
+
def initialize(addressInformationInput = nil, dOBInformationInput = nil, sSN4InformationInput = nil, sSN9InformationInput = nil)
|
279
|
+
@addressInformationInput = addressInformationInput
|
280
|
+
@dOBInformationInput = dOBInformationInput
|
281
|
+
@sSN4InformationInput = sSN4InformationInput
|
282
|
+
@sSN9InformationInput = sSN9InformationInput
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
# {http://www.docusign.net/API/3.0}AddressInformationInput
|
287
|
+
# addressInformation - Docusign::AddressInformation
|
288
|
+
# displayLevel - Docusign::DisplayLevelCode
|
289
|
+
# receiveInResponse - SOAP::SOAPBoolean
|
290
|
+
class AddressInformationInput
|
291
|
+
attr_accessor :addressInformation
|
292
|
+
attr_accessor :displayLevel
|
293
|
+
attr_accessor :receiveInResponse
|
294
|
+
|
295
|
+
def initialize(addressInformation = nil, displayLevel = nil, receiveInResponse = nil)
|
296
|
+
@addressInformation = addressInformation
|
297
|
+
@displayLevel = displayLevel
|
298
|
+
@receiveInResponse = receiveInResponse
|
299
|
+
end
|
300
|
+
end
|
301
|
+
|
302
|
+
# {http://www.docusign.net/API/3.0}AddressInformation
|
303
|
+
# street1 - SOAP::SOAPString
|
304
|
+
# street2 - SOAP::SOAPString
|
305
|
+
# city - SOAP::SOAPString
|
306
|
+
# state - SOAP::SOAPString
|
307
|
+
# zip - SOAP::SOAPString
|
308
|
+
# zipPlus4 - SOAP::SOAPString
|
309
|
+
class AddressInformation
|
310
|
+
attr_accessor :street1
|
311
|
+
attr_accessor :street2
|
312
|
+
attr_accessor :city
|
313
|
+
attr_accessor :state
|
314
|
+
attr_accessor :zip
|
315
|
+
attr_accessor :zipPlus4
|
316
|
+
|
317
|
+
def initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil)
|
318
|
+
@street1 = street1
|
319
|
+
@street2 = street2
|
320
|
+
@city = city
|
321
|
+
@state = state
|
322
|
+
@zip = zip
|
323
|
+
@zipPlus4 = zipPlus4
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
# {http://www.docusign.net/API/3.0}DOBInformationInput
|
328
|
+
# dOBInformation - Docusign::DOBInformation
|
329
|
+
# displayLevel - Docusign::DisplayLevelCode
|
330
|
+
# receiveInResponse - SOAP::SOAPBoolean
|
331
|
+
class DOBInformationInput
|
332
|
+
attr_accessor :dOBInformation
|
333
|
+
attr_accessor :displayLevel
|
334
|
+
attr_accessor :receiveInResponse
|
335
|
+
|
336
|
+
def initialize(dOBInformation = nil, displayLevel = nil, receiveInResponse = nil)
|
337
|
+
@dOBInformation = dOBInformation
|
338
|
+
@displayLevel = displayLevel
|
339
|
+
@receiveInResponse = receiveInResponse
|
340
|
+
end
|
341
|
+
end
|
342
|
+
|
343
|
+
# {http://www.docusign.net/API/3.0}DOBInformation
|
344
|
+
# dOB - SOAP::SOAPDateTime
|
345
|
+
class DOBInformation
|
346
|
+
attr_accessor :dOB
|
347
|
+
|
348
|
+
def initialize(dOB = nil)
|
349
|
+
@dOB = dOB
|
350
|
+
end
|
351
|
+
end
|
352
|
+
|
353
|
+
# {http://www.docusign.net/API/3.0}SSN4InformationInput
|
354
|
+
# sSN4Information - Docusign::SSN4Information
|
355
|
+
# displayLevel - Docusign::DisplayLevelCode
|
356
|
+
# receiveInResponse - SOAP::SOAPBoolean
|
357
|
+
class SSN4InformationInput
|
358
|
+
attr_accessor :sSN4Information
|
359
|
+
attr_accessor :displayLevel
|
360
|
+
attr_accessor :receiveInResponse
|
361
|
+
|
362
|
+
def initialize(sSN4Information = nil, displayLevel = nil, receiveInResponse = nil)
|
363
|
+
@sSN4Information = sSN4Information
|
364
|
+
@displayLevel = displayLevel
|
365
|
+
@receiveInResponse = receiveInResponse
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
# {http://www.docusign.net/API/3.0}SSN4Information
|
370
|
+
# sSN4 - SOAP::SOAPString
|
371
|
+
class SSN4Information
|
372
|
+
attr_accessor :sSN4
|
373
|
+
|
374
|
+
def initialize(sSN4 = nil)
|
375
|
+
@sSN4 = sSN4
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
# {http://www.docusign.net/API/3.0}SSN9InformationInput
|
380
|
+
# sSN9Information - Docusign::SSN9Information
|
381
|
+
# displayLevel - Docusign::DisplayLevelCode
|
382
|
+
class SSN9InformationInput
|
383
|
+
attr_accessor :sSN9Information
|
384
|
+
attr_accessor :displayLevel
|
385
|
+
|
386
|
+
def initialize(sSN9Information = nil, displayLevel = nil)
|
387
|
+
@sSN9Information = sSN9Information
|
388
|
+
@displayLevel = displayLevel
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
392
|
+
# {http://www.docusign.net/API/3.0}SSN9Information
|
393
|
+
# sSN9 - SOAP::SOAPString
|
394
|
+
class SSN9Information
|
395
|
+
attr_accessor :sSN9
|
396
|
+
|
397
|
+
def initialize(sSN9 = nil)
|
398
|
+
@sSN9 = sSN9
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
402
|
+
# {http://www.docusign.net/API/3.0}ArrayOfAttachment
|
403
|
+
class ArrayOfAttachment < ::Array
|
404
|
+
end
|
405
|
+
|
406
|
+
# {http://www.docusign.net/API/3.0}Attachment
|
407
|
+
# data - SOAP::SOAPBase64
|
408
|
+
# label - SOAP::SOAPString
|
409
|
+
# type - SOAP::SOAPString
|
410
|
+
class Attachment
|
411
|
+
attr_accessor :data
|
412
|
+
attr_accessor :label
|
413
|
+
attr_accessor :type
|
414
|
+
|
415
|
+
def initialize(data = nil, label = nil, type = nil)
|
416
|
+
@data = data
|
417
|
+
@label = label
|
418
|
+
@type = type
|
419
|
+
end
|
420
|
+
end
|
421
|
+
|
422
|
+
# {http://www.docusign.net/API/3.0}ArrayOfTab
|
423
|
+
class ArrayOfTab < ::Array
|
424
|
+
end
|
425
|
+
|
426
|
+
# {http://www.docusign.net/API/3.0}Tab
|
427
|
+
# documentID - SOAP::SOAPPositiveInteger
|
428
|
+
# recipientID - SOAP::SOAPPositiveInteger
|
429
|
+
# pageNumber - SOAP::SOAPNonNegativeInteger
|
430
|
+
# xPosition - SOAP::SOAPNonNegativeInteger
|
431
|
+
# yPosition - SOAP::SOAPNonNegativeInteger
|
432
|
+
# scaleValue - SOAP::SOAPDecimal
|
433
|
+
# anchorTabItem - Docusign::AnchorTab
|
434
|
+
# type - Docusign::TabTypeCode
|
435
|
+
# name - SOAP::SOAPString
|
436
|
+
# tabLabel - SOAP::SOAPString
|
437
|
+
# value - SOAP::SOAPString
|
438
|
+
# customTabType - Docusign::CustomTabType
|
439
|
+
# customTabWidth - SOAP::SOAPInt
|
440
|
+
# customTabHeight - SOAP::SOAPInt
|
441
|
+
# customTabRequired - SOAP::SOAPBoolean
|
442
|
+
# customTabLocked - SOAP::SOAPBoolean
|
443
|
+
# customTabDisableAutoSize - SOAP::SOAPBoolean
|
444
|
+
# customTabListItems - SOAP::SOAPString
|
445
|
+
# customTabListValues - SOAP::SOAPString
|
446
|
+
# customTabListSelectedValue - SOAP::SOAPString
|
447
|
+
# customTabRadioGroupName - SOAP::SOAPString
|
448
|
+
# customTabValidationPattern - SOAP::SOAPString
|
449
|
+
# customTabValidationMessage - SOAP::SOAPString
|
450
|
+
# templateLocked - SOAP::SOAPBoolean
|
451
|
+
# templateRequired - SOAP::SOAPBoolean
|
452
|
+
# conditionalParentLabel - SOAP::SOAPString
|
453
|
+
# conditionalParentValue - SOAP::SOAPString
|
454
|
+
# sharedTab - SOAP::SOAPBoolean
|
455
|
+
# requireInitialOnSharedTabChange - SOAP::SOAPBoolean
|
456
|
+
# concealValueOnDocument - SOAP::SOAPBoolean
|
457
|
+
class Tab
|
458
|
+
attr_accessor :documentID
|
459
|
+
attr_accessor :recipientID
|
460
|
+
attr_accessor :pageNumber
|
461
|
+
attr_accessor :xPosition
|
462
|
+
attr_accessor :yPosition
|
463
|
+
attr_accessor :scaleValue
|
464
|
+
attr_accessor :anchorTabItem
|
465
|
+
attr_accessor :type
|
466
|
+
attr_accessor :name
|
467
|
+
attr_accessor :tabLabel
|
468
|
+
attr_accessor :value
|
469
|
+
attr_accessor :customTabType
|
470
|
+
attr_accessor :customTabWidth
|
471
|
+
attr_accessor :customTabHeight
|
472
|
+
attr_accessor :customTabRequired
|
473
|
+
attr_accessor :customTabLocked
|
474
|
+
attr_accessor :customTabDisableAutoSize
|
475
|
+
attr_accessor :customTabListItems
|
476
|
+
attr_accessor :customTabListValues
|
477
|
+
attr_accessor :customTabListSelectedValue
|
478
|
+
attr_accessor :customTabRadioGroupName
|
479
|
+
attr_accessor :customTabValidationPattern
|
480
|
+
attr_accessor :customTabValidationMessage
|
481
|
+
attr_accessor :templateLocked
|
482
|
+
attr_accessor :templateRequired
|
483
|
+
attr_accessor :conditionalParentLabel
|
484
|
+
attr_accessor :conditionalParentValue
|
485
|
+
attr_accessor :sharedTab
|
486
|
+
attr_accessor :requireInitialOnSharedTabChange
|
487
|
+
attr_accessor :concealValueOnDocument
|
488
|
+
|
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)
|
490
|
+
@documentID = documentID
|
491
|
+
@recipientID = recipientID
|
492
|
+
@pageNumber = pageNumber
|
493
|
+
@xPosition = xPosition
|
494
|
+
@yPosition = yPosition
|
495
|
+
@scaleValue = scaleValue
|
496
|
+
@anchorTabItem = anchorTabItem
|
497
|
+
@type = type
|
498
|
+
@name = name
|
499
|
+
@tabLabel = tabLabel
|
500
|
+
@value = value
|
501
|
+
@customTabType = customTabType
|
502
|
+
@customTabWidth = customTabWidth
|
503
|
+
@customTabHeight = customTabHeight
|
504
|
+
@customTabRequired = customTabRequired
|
505
|
+
@customTabLocked = customTabLocked
|
506
|
+
@customTabDisableAutoSize = customTabDisableAutoSize
|
507
|
+
@customTabListItems = customTabListItems
|
508
|
+
@customTabListValues = customTabListValues
|
509
|
+
@customTabListSelectedValue = customTabListSelectedValue
|
510
|
+
@customTabRadioGroupName = customTabRadioGroupName
|
511
|
+
@customTabValidationPattern = customTabValidationPattern
|
512
|
+
@customTabValidationMessage = customTabValidationMessage
|
513
|
+
@templateLocked = templateLocked
|
514
|
+
@templateRequired = templateRequired
|
515
|
+
@conditionalParentLabel = conditionalParentLabel
|
516
|
+
@conditionalParentValue = conditionalParentValue
|
517
|
+
@sharedTab = sharedTab
|
518
|
+
@requireInitialOnSharedTabChange = requireInitialOnSharedTabChange
|
519
|
+
@concealValueOnDocument = concealValueOnDocument
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
523
|
+
# {http://www.docusign.net/API/3.0}AnchorTab
|
524
|
+
# anchorTabString - SOAP::SOAPString
|
525
|
+
# xOffset - SOAP::SOAPDouble
|
526
|
+
# yOffset - SOAP::SOAPDouble
|
527
|
+
# unit - Docusign::UnitTypeCode
|
528
|
+
# ignoreIfNotPresent - SOAP::SOAPBoolean
|
529
|
+
class AnchorTab
|
530
|
+
attr_accessor :anchorTabString
|
531
|
+
attr_accessor :xOffset
|
532
|
+
attr_accessor :yOffset
|
533
|
+
attr_accessor :unit
|
534
|
+
attr_accessor :ignoreIfNotPresent
|
535
|
+
|
536
|
+
def initialize(anchorTabString = nil, xOffset = nil, yOffset = nil, unit = nil, ignoreIfNotPresent = nil)
|
537
|
+
@anchorTabString = anchorTabString
|
538
|
+
@xOffset = xOffset
|
539
|
+
@yOffset = yOffset
|
540
|
+
@unit = unit
|
541
|
+
@ignoreIfNotPresent = ignoreIfNotPresent
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
# {http://www.docusign.net/API/3.0}ArrayOfCustomField
|
546
|
+
class ArrayOfCustomField < ::Array
|
547
|
+
end
|
548
|
+
|
549
|
+
# {http://www.docusign.net/API/3.0}CustomField
|
550
|
+
# name - SOAP::SOAPString
|
551
|
+
# show - SOAP::SOAPString
|
552
|
+
# required - SOAP::SOAPString
|
553
|
+
# value - SOAP::SOAPString
|
554
|
+
# customFieldType - Docusign::CustomFieldType
|
555
|
+
# listItems - SOAP::SOAPString
|
556
|
+
class CustomField
|
557
|
+
attr_accessor :name
|
558
|
+
attr_accessor :show
|
559
|
+
attr_accessor :required
|
560
|
+
attr_accessor :value
|
561
|
+
attr_accessor :customFieldType
|
562
|
+
attr_accessor :listItems
|
563
|
+
|
564
|
+
def initialize(name = nil, show = nil, required = nil, value = nil, customFieldType = nil, listItems = nil)
|
565
|
+
@name = name
|
566
|
+
@show = show
|
567
|
+
@required = required
|
568
|
+
@value = value
|
569
|
+
@customFieldType = customFieldType
|
570
|
+
@listItems = listItems
|
571
|
+
end
|
572
|
+
end
|
573
|
+
|
574
|
+
# {http://www.docusign.net/API/3.0}VaultingOptions
|
575
|
+
# vaultingMode - Docusign::VaultingModeCode
|
576
|
+
# eODTransactionName - SOAP::SOAPString
|
577
|
+
# eODDocumentName - SOAP::SOAPString
|
578
|
+
# eODDocumentDescription - SOAP::SOAPString
|
579
|
+
class VaultingOptions
|
580
|
+
attr_accessor :vaultingMode
|
581
|
+
attr_accessor :eODTransactionName
|
582
|
+
attr_accessor :eODDocumentName
|
583
|
+
attr_accessor :eODDocumentDescription
|
584
|
+
|
585
|
+
def initialize(vaultingMode = nil, eODTransactionName = nil, eODDocumentName = nil, eODDocumentDescription = nil)
|
586
|
+
@vaultingMode = vaultingMode
|
587
|
+
@eODTransactionName = eODTransactionName
|
588
|
+
@eODDocumentName = eODDocumentName
|
589
|
+
@eODDocumentDescription = eODDocumentDescription
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
593
|
+
# {http://www.docusign.net/API/3.0}Notification
|
594
|
+
# useAccountDefaults - SOAP::SOAPBoolean
|
595
|
+
# reminders - Docusign::Reminders
|
596
|
+
# expirations - Docusign::Expirations
|
597
|
+
class Notification
|
598
|
+
attr_accessor :useAccountDefaults
|
599
|
+
attr_accessor :reminders
|
600
|
+
attr_accessor :expirations
|
601
|
+
|
602
|
+
def initialize(useAccountDefaults = nil, reminders = nil, expirations = nil)
|
603
|
+
@useAccountDefaults = useAccountDefaults
|
604
|
+
@reminders = reminders
|
605
|
+
@expirations = expirations
|
606
|
+
end
|
607
|
+
end
|
608
|
+
|
609
|
+
# {http://www.docusign.net/API/3.0}Reminders
|
610
|
+
# reminderEnabled - SOAP::SOAPBoolean
|
611
|
+
# reminderDelay - SOAP::SOAPNonNegativeInteger
|
612
|
+
# reminderFrequency - SOAP::SOAPNonNegativeInteger
|
613
|
+
class Reminders
|
614
|
+
attr_accessor :reminderEnabled
|
615
|
+
attr_accessor :reminderDelay
|
616
|
+
attr_accessor :reminderFrequency
|
617
|
+
|
618
|
+
def initialize(reminderEnabled = nil, reminderDelay = nil, reminderFrequency = nil)
|
619
|
+
@reminderEnabled = reminderEnabled
|
620
|
+
@reminderDelay = reminderDelay
|
621
|
+
@reminderFrequency = reminderFrequency
|
622
|
+
end
|
623
|
+
end
|
624
|
+
|
625
|
+
# {http://www.docusign.net/API/3.0}Expirations
|
626
|
+
# expireEnabled - SOAP::SOAPBoolean
|
627
|
+
# expireAfter - SOAP::SOAPNonNegativeInteger
|
628
|
+
# expireWarn - SOAP::SOAPNonNegativeInteger
|
629
|
+
class Expirations
|
630
|
+
attr_accessor :expireEnabled
|
631
|
+
attr_accessor :expireAfter
|
632
|
+
attr_accessor :expireWarn
|
633
|
+
|
634
|
+
def initialize(expireEnabled = nil, expireAfter = nil, expireWarn = nil)
|
635
|
+
@expireEnabled = expireEnabled
|
636
|
+
@expireAfter = expireAfter
|
637
|
+
@expireWarn = expireWarn
|
638
|
+
end
|
639
|
+
end
|
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
|
+
|
674
|
+
# {http://www.docusign.net/API/3.0}EnvelopeStatus
|
675
|
+
# recipientStatuses - Docusign::ArrayOfRecipientStatus
|
676
|
+
# timeGenerated - SOAP::SOAPDateTime
|
677
|
+
# envelopeID - SOAP::SOAPString
|
678
|
+
# subject - SOAP::SOAPString
|
679
|
+
# userName - SOAP::SOAPString
|
680
|
+
# email - SOAP::SOAPString
|
681
|
+
# status - Docusign::EnvelopeStatusCode
|
682
|
+
# created - SOAP::SOAPDateTime
|
683
|
+
# deleted - SOAP::SOAPDateTime
|
684
|
+
# sent - SOAP::SOAPDateTime
|
685
|
+
# delivered - SOAP::SOAPDateTime
|
686
|
+
# signed - SOAP::SOAPDateTime
|
687
|
+
# completed - SOAP::SOAPDateTime
|
688
|
+
# declined - SOAP::SOAPDateTime
|
689
|
+
# timedOut - SOAP::SOAPDateTime
|
690
|
+
# aCStatus - SOAP::SOAPString
|
691
|
+
# aCStatusDate - SOAP::SOAPDateTime
|
692
|
+
# aCHolder - SOAP::SOAPString
|
693
|
+
# aCHolderEmail - SOAP::SOAPString
|
694
|
+
# aCHolderLocation - SOAP::SOAPString
|
695
|
+
# signingLocation - Docusign::SigningLocationCode
|
696
|
+
# senderIPAddress - SOAP::SOAPString
|
697
|
+
# envelopePDFHash - SOAP::SOAPString
|
698
|
+
# customFields - Docusign::ArrayOfCustomField
|
699
|
+
# vaultingDetails - Docusign::VaultingDetails
|
700
|
+
# autoNavigation - SOAP::SOAPBoolean
|
701
|
+
# envelopeIdStamping - SOAP::SOAPBoolean
|
702
|
+
# authoritativeCopy - SOAP::SOAPBoolean
|
703
|
+
# envelopeAttachment - Docusign::ArrayOfAttachment
|
704
|
+
# documentStatuses - Docusign::ArrayOfDocumentStatus
|
705
|
+
# formData - Docusign::FormData
|
706
|
+
class EnvelopeStatus
|
707
|
+
attr_accessor :recipientStatuses
|
708
|
+
attr_accessor :timeGenerated
|
709
|
+
attr_accessor :envelopeID
|
710
|
+
attr_accessor :subject
|
711
|
+
attr_accessor :userName
|
712
|
+
attr_accessor :email
|
713
|
+
attr_accessor :status
|
714
|
+
attr_accessor :created
|
715
|
+
attr_accessor :deleted
|
716
|
+
attr_accessor :sent
|
717
|
+
attr_accessor :delivered
|
718
|
+
attr_accessor :signed
|
719
|
+
attr_accessor :completed
|
720
|
+
attr_accessor :declined
|
721
|
+
attr_accessor :timedOut
|
722
|
+
attr_accessor :aCStatus
|
723
|
+
attr_accessor :aCStatusDate
|
724
|
+
attr_accessor :aCHolder
|
725
|
+
attr_accessor :aCHolderEmail
|
726
|
+
attr_accessor :aCHolderLocation
|
727
|
+
attr_accessor :signingLocation
|
728
|
+
attr_accessor :senderIPAddress
|
729
|
+
attr_accessor :envelopePDFHash
|
730
|
+
attr_accessor :customFields
|
731
|
+
attr_accessor :vaultingDetails
|
732
|
+
attr_accessor :autoNavigation
|
733
|
+
attr_accessor :envelopeIdStamping
|
734
|
+
attr_accessor :authoritativeCopy
|
735
|
+
attr_accessor :envelopeAttachment
|
736
|
+
attr_accessor :documentStatuses
|
737
|
+
attr_accessor :formData
|
738
|
+
|
739
|
+
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)
|
740
|
+
@recipientStatuses = recipientStatuses
|
741
|
+
@timeGenerated = timeGenerated
|
742
|
+
@envelopeID = envelopeID
|
743
|
+
@subject = subject
|
744
|
+
@userName = userName
|
745
|
+
@email = email
|
746
|
+
@status = status
|
747
|
+
@created = created
|
748
|
+
@deleted = deleted
|
749
|
+
@sent = sent
|
750
|
+
@delivered = delivered
|
751
|
+
@signed = signed
|
752
|
+
@completed = completed
|
753
|
+
@declined = declined
|
754
|
+
@timedOut = timedOut
|
755
|
+
@aCStatus = aCStatus
|
756
|
+
@aCStatusDate = aCStatusDate
|
757
|
+
@aCHolder = aCHolder
|
758
|
+
@aCHolderEmail = aCHolderEmail
|
759
|
+
@aCHolderLocation = aCHolderLocation
|
760
|
+
@signingLocation = signingLocation
|
761
|
+
@senderIPAddress = senderIPAddress
|
762
|
+
@envelopePDFHash = envelopePDFHash
|
763
|
+
@customFields = customFields
|
764
|
+
@vaultingDetails = vaultingDetails
|
765
|
+
@autoNavigation = autoNavigation
|
766
|
+
@envelopeIdStamping = envelopeIdStamping
|
767
|
+
@authoritativeCopy = authoritativeCopy
|
768
|
+
@envelopeAttachment = envelopeAttachment
|
769
|
+
@documentStatuses = documentStatuses
|
770
|
+
@formData = formData
|
771
|
+
end
|
772
|
+
end
|
773
|
+
|
774
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipientStatus
|
775
|
+
class ArrayOfRecipientStatus < ::Array
|
776
|
+
end
|
777
|
+
|
778
|
+
# {http://www.docusign.net/API/3.0}RecipientStatus
|
779
|
+
# type - Docusign::RecipientTypeCode
|
780
|
+
# email - SOAP::SOAPString
|
781
|
+
# userName - SOAP::SOAPString
|
782
|
+
# routingOrder - SOAP::SOAPUnsignedShort
|
783
|
+
# sent - SOAP::SOAPDateTime
|
784
|
+
# delivered - SOAP::SOAPDateTime
|
785
|
+
# signed - SOAP::SOAPDateTime
|
786
|
+
# declined - SOAP::SOAPDateTime
|
787
|
+
# declineReason - SOAP::SOAPString
|
788
|
+
# status - Docusign::RecipientStatusCode
|
789
|
+
# recipientIPAddress - SOAP::SOAPString
|
790
|
+
# clientUserId - SOAP::SOAPString
|
791
|
+
# autoNavigation - SOAP::SOAPBoolean
|
792
|
+
# iDCheckInformation - Docusign::IDCheckInformation
|
793
|
+
# recipientAuthenticationStatus - Docusign::AuthenticationStatus
|
794
|
+
# customFields - Docusign::ArrayOfString1
|
795
|
+
# tabStatuses - Docusign::ArrayOfTabStatus
|
796
|
+
# recipientAttachment - Docusign::ArrayOfAttachment
|
797
|
+
# accountStatus - SOAP::SOAPString
|
798
|
+
# esignAgreementInformation - Docusign::RecipientStatusEsignAgreementInformation
|
799
|
+
# formData - Docusign::FormData
|
800
|
+
# recipientId - SOAP::SOAPString
|
801
|
+
class RecipientStatus
|
802
|
+
attr_accessor :type
|
803
|
+
attr_accessor :email
|
804
|
+
attr_accessor :userName
|
805
|
+
attr_accessor :routingOrder
|
806
|
+
attr_accessor :sent
|
807
|
+
attr_accessor :delivered
|
808
|
+
attr_accessor :signed
|
809
|
+
attr_accessor :declined
|
810
|
+
attr_accessor :declineReason
|
811
|
+
attr_accessor :status
|
812
|
+
attr_accessor :recipientIPAddress
|
813
|
+
attr_accessor :clientUserId
|
814
|
+
attr_accessor :autoNavigation
|
815
|
+
attr_accessor :iDCheckInformation
|
816
|
+
attr_accessor :recipientAuthenticationStatus
|
817
|
+
attr_accessor :customFields
|
818
|
+
attr_accessor :tabStatuses
|
819
|
+
attr_accessor :recipientAttachment
|
820
|
+
attr_accessor :accountStatus
|
821
|
+
attr_accessor :esignAgreementInformation
|
822
|
+
attr_accessor :formData
|
823
|
+
attr_accessor :recipientId
|
824
|
+
|
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)
|
826
|
+
@type = type
|
827
|
+
@email = email
|
828
|
+
@userName = userName
|
829
|
+
@routingOrder = routingOrder
|
830
|
+
@sent = sent
|
831
|
+
@delivered = delivered
|
832
|
+
@signed = signed
|
833
|
+
@declined = declined
|
834
|
+
@declineReason = declineReason
|
835
|
+
@status = status
|
836
|
+
@recipientIPAddress = recipientIPAddress
|
837
|
+
@clientUserId = clientUserId
|
838
|
+
@autoNavigation = autoNavigation
|
839
|
+
@iDCheckInformation = iDCheckInformation
|
840
|
+
@recipientAuthenticationStatus = recipientAuthenticationStatus
|
841
|
+
@customFields = customFields
|
842
|
+
@tabStatuses = tabStatuses
|
843
|
+
@recipientAttachment = recipientAttachment
|
844
|
+
@accountStatus = accountStatus
|
845
|
+
@esignAgreementInformation = esignAgreementInformation
|
846
|
+
@formData = formData
|
847
|
+
@recipientId = recipientId
|
848
|
+
end
|
849
|
+
end
|
850
|
+
|
851
|
+
# {http://www.docusign.net/API/3.0}IDCheckInformation
|
852
|
+
# addressInformation - Docusign::AddressInformation
|
853
|
+
# dOBInformation - Docusign::DOBInformation
|
854
|
+
# sSN4Information - Docusign::SSN4Information
|
855
|
+
class IDCheckInformation
|
856
|
+
attr_accessor :addressInformation
|
857
|
+
attr_accessor :dOBInformation
|
858
|
+
attr_accessor :sSN4Information
|
859
|
+
|
860
|
+
def initialize(addressInformation = nil, dOBInformation = nil, sSN4Information = nil)
|
861
|
+
@addressInformation = addressInformation
|
862
|
+
@dOBInformation = dOBInformation
|
863
|
+
@sSN4Information = sSN4Information
|
864
|
+
end
|
865
|
+
end
|
866
|
+
|
867
|
+
# {http://www.docusign.net/API/3.0}AuthenticationStatus
|
868
|
+
# accessCodeResult - Docusign::EventResult
|
869
|
+
# iDQuestionsResult - Docusign::EventResult
|
870
|
+
# iDLookupResult - Docusign::EventResult
|
871
|
+
# ageVerifyResult - Docusign::EventResult
|
872
|
+
# sTANPinResult - Docusign::EventResult
|
873
|
+
# oFACResult - Docusign::EventResult
|
874
|
+
# phoneAuthResult - Docusign::EventResult
|
875
|
+
class AuthenticationStatus
|
876
|
+
attr_accessor :accessCodeResult
|
877
|
+
attr_accessor :iDQuestionsResult
|
878
|
+
attr_accessor :iDLookupResult
|
879
|
+
attr_accessor :ageVerifyResult
|
880
|
+
attr_accessor :sTANPinResult
|
881
|
+
attr_accessor :oFACResult
|
882
|
+
attr_accessor :phoneAuthResult
|
883
|
+
|
884
|
+
def initialize(accessCodeResult = nil, iDQuestionsResult = nil, iDLookupResult = nil, ageVerifyResult = nil, sTANPinResult = nil, oFACResult = nil, phoneAuthResult = nil)
|
885
|
+
@accessCodeResult = accessCodeResult
|
886
|
+
@iDQuestionsResult = iDQuestionsResult
|
887
|
+
@iDLookupResult = iDLookupResult
|
888
|
+
@ageVerifyResult = ageVerifyResult
|
889
|
+
@sTANPinResult = sTANPinResult
|
890
|
+
@oFACResult = oFACResult
|
891
|
+
@phoneAuthResult = phoneAuthResult
|
892
|
+
end
|
893
|
+
end
|
894
|
+
|
895
|
+
# {http://www.docusign.net/API/3.0}EventResult
|
896
|
+
# status - Docusign::EventStatusCode
|
897
|
+
# eventTimestamp - SOAP::SOAPDateTime
|
898
|
+
class EventResult
|
899
|
+
attr_accessor :status
|
900
|
+
attr_accessor :eventTimestamp
|
901
|
+
|
902
|
+
def initialize(status = nil, eventTimestamp = nil)
|
903
|
+
@status = status
|
904
|
+
@eventTimestamp = eventTimestamp
|
905
|
+
end
|
906
|
+
end
|
907
|
+
|
908
|
+
# {http://www.docusign.net/API/3.0}ArrayOfTabStatus
|
909
|
+
class ArrayOfTabStatus < ::Array
|
910
|
+
end
|
911
|
+
|
912
|
+
# {http://www.docusign.net/API/3.0}TabStatus
|
913
|
+
# tabType - Docusign::TabTypeCode
|
914
|
+
# status - SOAP::SOAPString
|
915
|
+
# xPosition - SOAP::SOAPDouble
|
916
|
+
# yPosition - SOAP::SOAPDouble
|
917
|
+
# signed - SOAP::SOAPDateTime
|
918
|
+
# tabLabel - SOAP::SOAPString
|
919
|
+
# tabName - SOAP::SOAPString
|
920
|
+
# tabValue - SOAP::SOAPString
|
921
|
+
# documentID - SOAP::SOAPPositiveInteger
|
922
|
+
# pageNumber - SOAP::SOAPNonNegativeInteger
|
923
|
+
# originalValue - SOAP::SOAPString
|
924
|
+
# validationPattern - SOAP::SOAPString
|
925
|
+
# roleName - SOAP::SOAPString
|
926
|
+
# listValues - SOAP::SOAPString
|
927
|
+
# listSelectedValue - SOAP::SOAPString
|
928
|
+
# scaleValue - SOAP::SOAPDecimal
|
929
|
+
# customTabType - Docusign::CustomTabType
|
930
|
+
class TabStatus
|
931
|
+
attr_accessor :tabType
|
932
|
+
attr_accessor :status
|
933
|
+
attr_accessor :xPosition
|
934
|
+
attr_accessor :yPosition
|
935
|
+
attr_accessor :signed
|
936
|
+
attr_accessor :tabLabel
|
937
|
+
attr_accessor :tabName
|
938
|
+
attr_accessor :tabValue
|
939
|
+
attr_accessor :documentID
|
940
|
+
attr_accessor :pageNumber
|
941
|
+
attr_accessor :originalValue
|
942
|
+
attr_accessor :validationPattern
|
943
|
+
attr_accessor :roleName
|
944
|
+
attr_accessor :listValues
|
945
|
+
attr_accessor :listSelectedValue
|
946
|
+
attr_accessor :scaleValue
|
947
|
+
attr_accessor :customTabType
|
948
|
+
|
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)
|
950
|
+
@tabType = tabType
|
951
|
+
@status = status
|
952
|
+
@xPosition = xPosition
|
953
|
+
@yPosition = yPosition
|
954
|
+
@signed = signed
|
955
|
+
@tabLabel = tabLabel
|
956
|
+
@tabName = tabName
|
957
|
+
@tabValue = tabValue
|
958
|
+
@documentID = documentID
|
959
|
+
@pageNumber = pageNumber
|
960
|
+
@originalValue = originalValue
|
961
|
+
@validationPattern = validationPattern
|
962
|
+
@roleName = roleName
|
963
|
+
@listValues = listValues
|
964
|
+
@listSelectedValue = listSelectedValue
|
965
|
+
@scaleValue = scaleValue
|
966
|
+
@customTabType = customTabType
|
967
|
+
end
|
968
|
+
end
|
969
|
+
|
970
|
+
# {http://www.docusign.net/API/3.0}RecipientStatusEsignAgreementInformation
|
971
|
+
# accountEsignId - SOAP::SOAPString
|
972
|
+
# userEsignId - SOAP::SOAPString
|
973
|
+
# agreementDate - SOAP::SOAPDateTime
|
974
|
+
class RecipientStatusEsignAgreementInformation
|
975
|
+
attr_accessor :accountEsignId
|
976
|
+
attr_accessor :userEsignId
|
977
|
+
attr_accessor :agreementDate
|
978
|
+
|
979
|
+
def initialize(accountEsignId = nil, userEsignId = nil, agreementDate = nil)
|
980
|
+
@accountEsignId = accountEsignId
|
981
|
+
@userEsignId = userEsignId
|
982
|
+
@agreementDate = agreementDate
|
983
|
+
end
|
984
|
+
end
|
985
|
+
|
986
|
+
# {http://www.docusign.net/API/3.0}FormData
|
987
|
+
# xfdf - Docusign::FormDataXfdf
|
988
|
+
class FormData
|
989
|
+
attr_accessor :xfdf
|
990
|
+
|
991
|
+
def initialize(xfdf = nil)
|
992
|
+
@xfdf = xfdf
|
993
|
+
end
|
994
|
+
end
|
995
|
+
|
996
|
+
# {http://www.docusign.net/API/3.0}FormDataXfdf
|
997
|
+
# fields - Docusign::ArrayOfFormDataXfdfField
|
998
|
+
class FormDataXfdf
|
999
|
+
attr_accessor :fields
|
1000
|
+
|
1001
|
+
def initialize(fields = nil)
|
1002
|
+
@fields = fields
|
1003
|
+
end
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
# {http://www.docusign.net/API/3.0}ArrayOfFormDataXfdfField
|
1007
|
+
class ArrayOfFormDataXfdfField < ::Array
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
# {http://www.docusign.net/API/3.0}FormDataXfdfField
|
1011
|
+
# value - SOAP::SOAPString
|
1012
|
+
# xmlattr_name - SOAP::SOAPString
|
1013
|
+
class FormDataXfdfField
|
1014
|
+
AttrName = XSD::QName.new(nil, "name")
|
1015
|
+
|
1016
|
+
attr_accessor :value
|
1017
|
+
|
1018
|
+
def __xmlattr
|
1019
|
+
@__xmlattr ||= {}
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
def xmlattr_name
|
1023
|
+
__xmlattr[AttrName]
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
def xmlattr_name=(value)
|
1027
|
+
__xmlattr[AttrName] = value
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
def initialize(value = nil)
|
1031
|
+
@value = value
|
1032
|
+
@__xmlattr = {}
|
1033
|
+
end
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
# {http://www.docusign.net/API/3.0}VaultingDetails
|
1037
|
+
# eODTransactionName - SOAP::SOAPString
|
1038
|
+
# eODTransactionID - SOAP::SOAPString
|
1039
|
+
# eODDocumentProfileID - SOAP::SOAPString
|
1040
|
+
class VaultingDetails
|
1041
|
+
attr_accessor :eODTransactionName
|
1042
|
+
attr_accessor :eODTransactionID
|
1043
|
+
attr_accessor :eODDocumentProfileID
|
1044
|
+
|
1045
|
+
def initialize(eODTransactionName = nil, eODTransactionID = nil, eODDocumentProfileID = nil)
|
1046
|
+
@eODTransactionName = eODTransactionName
|
1047
|
+
@eODTransactionID = eODTransactionID
|
1048
|
+
@eODDocumentProfileID = eODDocumentProfileID
|
1049
|
+
end
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
# {http://www.docusign.net/API/3.0}ArrayOfDocumentStatus
|
1053
|
+
class ArrayOfDocumentStatus < ::Array
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
# {http://www.docusign.net/API/3.0}DocumentStatus
|
1057
|
+
# iD - SOAP::SOAPPositiveInteger
|
1058
|
+
# name - SOAP::SOAPString
|
1059
|
+
# templateName - SOAP::SOAPString
|
1060
|
+
# sequence - SOAP::SOAPPositiveInteger
|
1061
|
+
class DocumentStatus
|
1062
|
+
attr_accessor :iD
|
1063
|
+
attr_accessor :name
|
1064
|
+
attr_accessor :templateName
|
1065
|
+
attr_accessor :sequence
|
1066
|
+
|
1067
|
+
def initialize(iD = nil, name = nil, templateName = nil, sequence = nil)
|
1068
|
+
@iD = iD
|
1069
|
+
@name = name
|
1070
|
+
@templateName = templateName
|
1071
|
+
@sequence = sequence
|
1072
|
+
end
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
# {http://www.docusign.net/API/3.0}Correction
|
1076
|
+
# envelopeID - SOAP::SOAPString
|
1077
|
+
# envelopeSettingsCorrection - Docusign::EnvelopeSettings
|
1078
|
+
# recipientCorrections - Docusign::ArrayOfRecipientCorrection
|
1079
|
+
class Correction
|
1080
|
+
attr_accessor :envelopeID
|
1081
|
+
attr_accessor :envelopeSettingsCorrection
|
1082
|
+
attr_accessor :recipientCorrections
|
1083
|
+
|
1084
|
+
def initialize(envelopeID = nil, envelopeSettingsCorrection = nil, recipientCorrections = nil)
|
1085
|
+
@envelopeID = envelopeID
|
1086
|
+
@envelopeSettingsCorrection = envelopeSettingsCorrection
|
1087
|
+
@recipientCorrections = recipientCorrections
|
1088
|
+
end
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
# {http://www.docusign.net/API/3.0}EnvelopeSettings
|
1092
|
+
# autoNavigation - SOAP::SOAPBoolean
|
1093
|
+
# envelopeIdStamping - SOAP::SOAPBoolean
|
1094
|
+
class EnvelopeSettings
|
1095
|
+
attr_accessor :autoNavigation
|
1096
|
+
attr_accessor :envelopeIdStamping
|
1097
|
+
|
1098
|
+
def initialize(autoNavigation = nil, envelopeIdStamping = nil)
|
1099
|
+
@autoNavigation = autoNavigation
|
1100
|
+
@envelopeIdStamping = envelopeIdStamping
|
1101
|
+
end
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrection
|
1105
|
+
class ArrayOfRecipientCorrection < ::Array
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
# {http://www.docusign.net/API/3.0}RecipientCorrection
|
1109
|
+
# previousUserName - SOAP::SOAPString
|
1110
|
+
# previousEmail - SOAP::SOAPString
|
1111
|
+
# previousRoutingOrder - SOAP::SOAPUnsignedShort
|
1112
|
+
# previousSignerName - SOAP::SOAPString
|
1113
|
+
# correctedUserName - SOAP::SOAPString
|
1114
|
+
# correctedSignerName - SOAP::SOAPString
|
1115
|
+
# correctedEmail - SOAP::SOAPString
|
1116
|
+
# correctedCaptiveInfo - Docusign::RecipientCorrectionCorrectedCaptiveInfo
|
1117
|
+
# correctedAccessCode - SOAP::SOAPString
|
1118
|
+
# correctedAccessCodeRequired - SOAP::SOAPBoolean
|
1119
|
+
# correctedRequireIDLookup - SOAP::SOAPBoolean
|
1120
|
+
# correctedIDCheckConfigurationName - SOAP::SOAPString
|
1121
|
+
# correctedRoutingOrder - SOAP::SOAPUnsignedShort
|
1122
|
+
# correctedAutoNavigation - SOAP::SOAPBoolean
|
1123
|
+
# correctedIDCheckInformationInput - Docusign::IDCheckInformationInput
|
1124
|
+
# resend - SOAP::SOAPBoolean
|
1125
|
+
class RecipientCorrection
|
1126
|
+
attr_accessor :previousUserName
|
1127
|
+
attr_accessor :previousEmail
|
1128
|
+
attr_accessor :previousRoutingOrder
|
1129
|
+
attr_accessor :previousSignerName
|
1130
|
+
attr_accessor :correctedUserName
|
1131
|
+
attr_accessor :correctedSignerName
|
1132
|
+
attr_accessor :correctedEmail
|
1133
|
+
attr_accessor :correctedCaptiveInfo
|
1134
|
+
attr_accessor :correctedAccessCode
|
1135
|
+
attr_accessor :correctedAccessCodeRequired
|
1136
|
+
attr_accessor :correctedRequireIDLookup
|
1137
|
+
attr_accessor :correctedIDCheckConfigurationName
|
1138
|
+
attr_accessor :correctedRoutingOrder
|
1139
|
+
attr_accessor :correctedAutoNavigation
|
1140
|
+
attr_accessor :correctedIDCheckInformationInput
|
1141
|
+
attr_accessor :resend
|
1142
|
+
|
1143
|
+
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)
|
1144
|
+
@previousUserName = previousUserName
|
1145
|
+
@previousEmail = previousEmail
|
1146
|
+
@previousRoutingOrder = previousRoutingOrder
|
1147
|
+
@previousSignerName = previousSignerName
|
1148
|
+
@correctedUserName = correctedUserName
|
1149
|
+
@correctedSignerName = correctedSignerName
|
1150
|
+
@correctedEmail = correctedEmail
|
1151
|
+
@correctedCaptiveInfo = correctedCaptiveInfo
|
1152
|
+
@correctedAccessCode = correctedAccessCode
|
1153
|
+
@correctedAccessCodeRequired = correctedAccessCodeRequired
|
1154
|
+
@correctedRequireIDLookup = correctedRequireIDLookup
|
1155
|
+
@correctedIDCheckConfigurationName = correctedIDCheckConfigurationName
|
1156
|
+
@correctedRoutingOrder = correctedRoutingOrder
|
1157
|
+
@correctedAutoNavigation = correctedAutoNavigation
|
1158
|
+
@correctedIDCheckInformationInput = correctedIDCheckInformationInput
|
1159
|
+
@resend = resend
|
1160
|
+
end
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
# {http://www.docusign.net/API/3.0}RecipientCorrectionCorrectedCaptiveInfo
|
1164
|
+
# clientUserId - SOAP::SOAPString
|
1165
|
+
class RecipientCorrectionCorrectedCaptiveInfo
|
1166
|
+
attr_accessor :clientUserId
|
1167
|
+
|
1168
|
+
def initialize(clientUserId = nil)
|
1169
|
+
@clientUserId = clientUserId
|
1170
|
+
end
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
# {http://www.docusign.net/API/3.0}CorrectionStatus
|
1174
|
+
# envelopeSettingsCorrectionStatus - Docusign::EnvelopeSettings
|
1175
|
+
# recipientCorrectionStatuses - Docusign::ArrayOfRecipientCorrectionStatus
|
1176
|
+
class CorrectionStatus
|
1177
|
+
attr_accessor :envelopeSettingsCorrectionStatus
|
1178
|
+
attr_accessor :recipientCorrectionStatuses
|
1179
|
+
|
1180
|
+
def initialize(envelopeSettingsCorrectionStatus = nil, recipientCorrectionStatuses = nil)
|
1181
|
+
@envelopeSettingsCorrectionStatus = envelopeSettingsCorrectionStatus
|
1182
|
+
@recipientCorrectionStatuses = recipientCorrectionStatuses
|
1183
|
+
end
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipientCorrectionStatus
|
1187
|
+
class ArrayOfRecipientCorrectionStatus < ::Array
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
# {http://www.docusign.net/API/3.0}RecipientCorrectionStatus
|
1191
|
+
# correctionSucceeded - SOAP::SOAPBoolean
|
1192
|
+
# recipientCorrection - Docusign::RecipientCorrection
|
1193
|
+
# recipientStatus - Docusign::RecipientStatus
|
1194
|
+
class RecipientCorrectionStatus
|
1195
|
+
attr_accessor :correctionSucceeded
|
1196
|
+
attr_accessor :recipientCorrection
|
1197
|
+
attr_accessor :recipientStatus
|
1198
|
+
|
1199
|
+
def initialize(correctionSucceeded = nil, recipientCorrection = nil, recipientStatus = nil)
|
1200
|
+
@correctionSucceeded = correctionSucceeded
|
1201
|
+
@recipientCorrection = recipientCorrection
|
1202
|
+
@recipientStatus = recipientStatus
|
1203
|
+
end
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
# {http://www.docusign.net/API/3.0}EnvelopePDF
|
1207
|
+
# envelopeID - SOAP::SOAPString
|
1208
|
+
# pDFBytes - SOAP::SOAPBase64
|
1209
|
+
class EnvelopePDF
|
1210
|
+
attr_accessor :envelopeID
|
1211
|
+
attr_accessor :pDFBytes
|
1212
|
+
|
1213
|
+
def initialize(envelopeID = nil, pDFBytes = nil)
|
1214
|
+
@envelopeID = envelopeID
|
1215
|
+
@pDFBytes = pDFBytes
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# {http://www.docusign.net/API/3.0}DocumentPDFs
|
1220
|
+
# envelopeId - SOAP::SOAPString
|
1221
|
+
# documentPDF - Docusign::DocumentPDF
|
1222
|
+
class DocumentPDFs
|
1223
|
+
attr_accessor :envelopeId
|
1224
|
+
attr_accessor :documentPDF
|
1225
|
+
|
1226
|
+
def initialize(envelopeId = nil, documentPDF = [])
|
1227
|
+
@envelopeId = envelopeId
|
1228
|
+
@documentPDF = documentPDF
|
1229
|
+
end
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
# {http://www.docusign.net/API/3.0}DocumentPDF
|
1233
|
+
# name - SOAP::SOAPString
|
1234
|
+
# pDFBytes - SOAP::SOAPBase64
|
1235
|
+
# documentID - SOAP::SOAPPositiveInteger
|
1236
|
+
# documentType - Docusign::DocumentType
|
1237
|
+
class DocumentPDF
|
1238
|
+
attr_accessor :name
|
1239
|
+
attr_accessor :pDFBytes
|
1240
|
+
attr_accessor :documentID
|
1241
|
+
attr_accessor :documentType
|
1242
|
+
|
1243
|
+
def initialize(name = nil, pDFBytes = nil, documentID = nil, documentType = nil)
|
1244
|
+
@name = name
|
1245
|
+
@pDFBytes = pDFBytes
|
1246
|
+
@documentID = documentID
|
1247
|
+
@documentType = documentType
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
# {http://www.docusign.net/API/3.0}EnvelopeStatusFilter
|
1252
|
+
# userInfo - Docusign::UserInfo
|
1253
|
+
# accountId - SOAP::SOAPString
|
1254
|
+
# beginDateTime - Docusign::EnvelopeStatusFilterBeginDateTime
|
1255
|
+
# endDateTime - SOAP::SOAPDateTime
|
1256
|
+
# statuses - Docusign::ArrayOfEnvelopeStatusCode
|
1257
|
+
# envelopeIds - Docusign::ArrayOfString2
|
1258
|
+
# startAtIndex - SOAP::SOAPNonNegativeInteger
|
1259
|
+
# aCStatus - Docusign::EnvelopeACStatusCode
|
1260
|
+
class EnvelopeStatusFilter
|
1261
|
+
attr_accessor :userInfo
|
1262
|
+
attr_accessor :accountId
|
1263
|
+
attr_accessor :beginDateTime
|
1264
|
+
attr_accessor :endDateTime
|
1265
|
+
attr_accessor :statuses
|
1266
|
+
attr_accessor :envelopeIds
|
1267
|
+
attr_accessor :startAtIndex
|
1268
|
+
attr_accessor :aCStatus
|
1269
|
+
|
1270
|
+
def initialize(userInfo = nil, accountId = nil, beginDateTime = nil, endDateTime = nil, statuses = nil, envelopeIds = nil, startAtIndex = nil, aCStatus = nil)
|
1271
|
+
@userInfo = userInfo
|
1272
|
+
@accountId = accountId
|
1273
|
+
@beginDateTime = beginDateTime
|
1274
|
+
@endDateTime = endDateTime
|
1275
|
+
@statuses = statuses
|
1276
|
+
@envelopeIds = envelopeIds
|
1277
|
+
@startAtIndex = startAtIndex
|
1278
|
+
@aCStatus = aCStatus
|
1279
|
+
end
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
# {http://www.docusign.net/API/3.0}UserInfo
|
1283
|
+
# userName - SOAP::SOAPString
|
1284
|
+
# email - SOAP::SOAPString
|
1285
|
+
class UserInfo
|
1286
|
+
attr_accessor :userName
|
1287
|
+
attr_accessor :email
|
1288
|
+
|
1289
|
+
def initialize(userName = nil, email = nil)
|
1290
|
+
@userName = userName
|
1291
|
+
@email = email
|
1292
|
+
end
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
# {http://www.docusign.net/API/3.0}EnvelopeStatusFilterBeginDateTime
|
1296
|
+
# xmlattr_statusQualifier - SOAP::SOAPString
|
1297
|
+
class EnvelopeStatusFilterBeginDateTime < ::String
|
1298
|
+
AttrStatusQualifier = XSD::QName.new(nil, "statusQualifier")
|
1299
|
+
|
1300
|
+
def __xmlattr
|
1301
|
+
@__xmlattr ||= {}
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
def xmlattr_statusQualifier
|
1305
|
+
__xmlattr[AttrStatusQualifier]
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
def xmlattr_statusQualifier=(value)
|
1309
|
+
__xmlattr[AttrStatusQualifier] = value
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
def initialize(*arg)
|
1313
|
+
super
|
1314
|
+
@__xmlattr = {}
|
1315
|
+
end
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
# {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatusCode
|
1319
|
+
class ArrayOfEnvelopeStatusCode < ::Array
|
1320
|
+
end
|
1321
|
+
|
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
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
# {http://www.docusign.net/API/3.0}FilteredEnvelopeStatuses
|
1379
|
+
# resultSetSize - SOAP::SOAPInt
|
1380
|
+
# envelopeStatusFilter - Docusign::EnvelopeStatusFilter
|
1381
|
+
# envelopeStatuses - Docusign::ArrayOfEnvelopeStatus
|
1382
|
+
class FilteredEnvelopeStatuses
|
1383
|
+
attr_accessor :resultSetSize
|
1384
|
+
attr_accessor :envelopeStatusFilter
|
1385
|
+
attr_accessor :envelopeStatuses
|
1386
|
+
|
1387
|
+
def initialize(resultSetSize = nil, envelopeStatusFilter = nil, envelopeStatuses = nil)
|
1388
|
+
@resultSetSize = resultSetSize
|
1389
|
+
@envelopeStatusFilter = envelopeStatusFilter
|
1390
|
+
@envelopeStatuses = envelopeStatuses
|
1391
|
+
end
|
1392
|
+
end
|
1393
|
+
|
1394
|
+
# {http://www.docusign.net/API/3.0}ArrayOfEnvelopeStatus
|
1395
|
+
class ArrayOfEnvelopeStatus < ::Array
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
# {http://www.docusign.net/API/3.0}RecipientEsignList
|
1399
|
+
# accountId - SOAP::SOAPString
|
1400
|
+
# recipientEsign - Docusign::ArrayOfRecipientEsign
|
1401
|
+
class RecipientEsignList
|
1402
|
+
attr_accessor :accountId
|
1403
|
+
attr_accessor :recipientEsign
|
1404
|
+
|
1405
|
+
def initialize(accountId = nil, recipientEsign = nil)
|
1406
|
+
@accountId = accountId
|
1407
|
+
@recipientEsign = recipientEsign
|
1408
|
+
end
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipientEsign
|
1412
|
+
class ArrayOfRecipientEsign < ::Array
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
# {http://www.docusign.net/API/3.0}RecipientEsign
|
1416
|
+
# userName - SOAP::SOAPString
|
1417
|
+
# email - SOAP::SOAPString
|
1418
|
+
# esign - SOAP::SOAPBoolean
|
1419
|
+
# reservedRecipientEmail - SOAP::SOAPBoolean
|
1420
|
+
# reservedRecipientNames - SOAP::SOAPString
|
1421
|
+
class RecipientEsign
|
1422
|
+
attr_accessor :userName
|
1423
|
+
attr_accessor :email
|
1424
|
+
attr_accessor :esign
|
1425
|
+
attr_accessor :reservedRecipientEmail
|
1426
|
+
attr_accessor :reservedRecipientNames
|
1427
|
+
|
1428
|
+
def initialize(userName = nil, email = nil, esign = nil, reservedRecipientEmail = nil, reservedRecipientNames = nil)
|
1429
|
+
@userName = userName
|
1430
|
+
@email = email
|
1431
|
+
@esign = esign
|
1432
|
+
@reservedRecipientEmail = reservedRecipientEmail
|
1433
|
+
@reservedRecipientNames = reservedRecipientNames
|
1434
|
+
end
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
# {http://www.docusign.net/API/3.0}RecipientList
|
1438
|
+
# reservedRecipientEmail - SOAP::SOAPBoolean
|
1439
|
+
# multipleUsers - SOAP::SOAPBoolean
|
1440
|
+
# recipientName - Docusign::ArrayOfString3
|
1441
|
+
class RecipientList
|
1442
|
+
attr_accessor :reservedRecipientEmail
|
1443
|
+
attr_accessor :multipleUsers
|
1444
|
+
attr_accessor :recipientName
|
1445
|
+
|
1446
|
+
def initialize(reservedRecipientEmail = nil, multipleUsers = nil, recipientName = nil)
|
1447
|
+
@reservedRecipientEmail = reservedRecipientEmail
|
1448
|
+
@multipleUsers = multipleUsers
|
1449
|
+
@recipientName = recipientName
|
1450
|
+
end
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
# {http://www.docusign.net/API/3.0}ArrayOfString3
|
1454
|
+
class ArrayOfString3 < ::Array
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
# {http://www.docusign.net/API/3.0}VoidEnvelopeStatus
|
1458
|
+
# voidSuccess - SOAP::SOAPBoolean
|
1459
|
+
class VoidEnvelopeStatus
|
1460
|
+
attr_accessor :voidSuccess
|
1461
|
+
|
1462
|
+
def initialize(voidSuccess = nil)
|
1463
|
+
@voidSuccess = voidSuccess
|
1464
|
+
end
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
# {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertion
|
1468
|
+
# assertionID - SOAP::SOAPString
|
1469
|
+
# authenticationInstant - SOAP::SOAPDateTime
|
1470
|
+
# authenticationMethod - Docusign::RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
|
1471
|
+
# securityDomain - SOAP::SOAPString
|
1472
|
+
class RequestRecipientTokenAuthenticationAssertion
|
1473
|
+
attr_accessor :assertionID
|
1474
|
+
attr_accessor :authenticationInstant
|
1475
|
+
attr_accessor :authenticationMethod
|
1476
|
+
attr_accessor :securityDomain
|
1477
|
+
|
1478
|
+
def initialize(assertionID = nil, authenticationInstant = nil, authenticationMethod = nil, securityDomain = nil)
|
1479
|
+
@assertionID = assertionID
|
1480
|
+
@authenticationInstant = authenticationInstant
|
1481
|
+
@authenticationMethod = authenticationMethod
|
1482
|
+
@securityDomain = securityDomain
|
1483
|
+
end
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
# {http://www.docusign.net/API/3.0}RequestRecipientTokenClientURLs
|
1487
|
+
# onSigningComplete - SOAP::SOAPString
|
1488
|
+
# onViewingComplete - SOAP::SOAPString
|
1489
|
+
# onCancel - SOAP::SOAPString
|
1490
|
+
# onDecline - SOAP::SOAPString
|
1491
|
+
# onSessionTimeout - SOAP::SOAPString
|
1492
|
+
# onTTLExpired - SOAP::SOAPString
|
1493
|
+
# onException - SOAP::SOAPString
|
1494
|
+
# onAccessCodeFailed - SOAP::SOAPString
|
1495
|
+
# onIdCheckFailed - SOAP::SOAPString
|
1496
|
+
# onFaxPending - SOAP::SOAPString
|
1497
|
+
# generateSignedDocumentAsynch - SOAP::SOAPBoolean
|
1498
|
+
class RequestRecipientTokenClientURLs
|
1499
|
+
attr_accessor :onSigningComplete
|
1500
|
+
attr_accessor :onViewingComplete
|
1501
|
+
attr_accessor :onCancel
|
1502
|
+
attr_accessor :onDecline
|
1503
|
+
attr_accessor :onSessionTimeout
|
1504
|
+
attr_accessor :onTTLExpired
|
1505
|
+
attr_accessor :onException
|
1506
|
+
attr_accessor :onAccessCodeFailed
|
1507
|
+
attr_accessor :onIdCheckFailed
|
1508
|
+
attr_accessor :onFaxPending
|
1509
|
+
attr_accessor :generateSignedDocumentAsynch
|
1510
|
+
|
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)
|
1512
|
+
@onSigningComplete = onSigningComplete
|
1513
|
+
@onViewingComplete = onViewingComplete
|
1514
|
+
@onCancel = onCancel
|
1515
|
+
@onDecline = onDecline
|
1516
|
+
@onSessionTimeout = onSessionTimeout
|
1517
|
+
@onTTLExpired = onTTLExpired
|
1518
|
+
@onException = onException
|
1519
|
+
@onAccessCodeFailed = onAccessCodeFailed
|
1520
|
+
@onIdCheckFailed = onIdCheckFailed
|
1521
|
+
@onFaxPending = onFaxPending
|
1522
|
+
@generateSignedDocumentAsynch = generateSignedDocumentAsynch
|
1523
|
+
end
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
# {http://www.docusign.net/API/3.0}TransferEnvelopeStatus
|
1527
|
+
# transferEnvelopeSuccess - SOAP::SOAPBoolean
|
1528
|
+
class TransferEnvelopeStatus
|
1529
|
+
attr_accessor :transferEnvelopeSuccess
|
1530
|
+
|
1531
|
+
def initialize(transferEnvelopeSuccess = nil)
|
1532
|
+
@transferEnvelopeSuccess = transferEnvelopeSuccess
|
1533
|
+
end
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
# {http://www.docusign.net/API/3.0}AccountMembershipFeaturesList
|
1537
|
+
# email - SOAP::SOAPString
|
1538
|
+
# userName - SOAP::SOAPString
|
1539
|
+
# enabledFeaturesSet - Docusign::ArrayOfString4
|
1540
|
+
class AccountMembershipFeaturesList
|
1541
|
+
attr_accessor :email
|
1542
|
+
attr_accessor :userName
|
1543
|
+
attr_accessor :enabledFeaturesSet
|
1544
|
+
|
1545
|
+
def initialize(email = nil, userName = nil, enabledFeaturesSet = nil)
|
1546
|
+
@email = email
|
1547
|
+
@userName = userName
|
1548
|
+
@enabledFeaturesSet = enabledFeaturesSet
|
1549
|
+
end
|
1550
|
+
end
|
1551
|
+
|
1552
|
+
# {http://www.docusign.net/API/3.0}ArrayOfString4
|
1553
|
+
class ArrayOfString4 < ::Array
|
1554
|
+
end
|
1555
|
+
|
1556
|
+
# {http://www.docusign.net/API/3.0}AccountSettingsList
|
1557
|
+
class AccountSettingsList < ::Array
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
# {http://www.docusign.net/API/3.0}AccountSetting
|
1561
|
+
# name - SOAP::SOAPString
|
1562
|
+
# value - SOAP::SOAPString
|
1563
|
+
# type - SOAP::SOAPString
|
1564
|
+
# testSetting - SOAP::SOAPString
|
1565
|
+
class AccountSetting
|
1566
|
+
attr_accessor :name
|
1567
|
+
attr_accessor :value
|
1568
|
+
attr_accessor :type
|
1569
|
+
attr_accessor :testSetting
|
1570
|
+
|
1571
|
+
def initialize(name = nil, value = nil, type = nil, testSetting = nil)
|
1572
|
+
@name = name
|
1573
|
+
@value = value
|
1574
|
+
@type = type
|
1575
|
+
@testSetting = testSetting
|
1576
|
+
end
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
# {http://www.docusign.net/API/3.0}AuthoritativeCopyExportStatus
|
1580
|
+
# authoritativeCopyExportSuccess - SOAP::SOAPBoolean
|
1581
|
+
# envelopeId - SOAP::SOAPString
|
1582
|
+
# exportKey - SOAP::SOAPString
|
1583
|
+
class AuthoritativeCopyExportStatus
|
1584
|
+
attr_accessor :authoritativeCopyExportSuccess
|
1585
|
+
attr_accessor :envelopeId
|
1586
|
+
attr_accessor :exportKey
|
1587
|
+
|
1588
|
+
def initialize(authoritativeCopyExportSuccess = nil, envelopeId = nil, exportKey = nil)
|
1589
|
+
@authoritativeCopyExportSuccess = authoritativeCopyExportSuccess
|
1590
|
+
@envelopeId = envelopeId
|
1591
|
+
@exportKey = exportKey
|
1592
|
+
end
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
# {http://www.docusign.net/API/3.0}AuthoritativeCopyExportDocuments
|
1596
|
+
# envelopeId - SOAP::SOAPString
|
1597
|
+
# transactionId - SOAP::SOAPString
|
1598
|
+
# count - SOAP::SOAPInt
|
1599
|
+
# documentPDF - Docusign::DocumentPDF
|
1600
|
+
class AuthoritativeCopyExportDocuments
|
1601
|
+
attr_accessor :envelopeId
|
1602
|
+
attr_accessor :transactionId
|
1603
|
+
attr_accessor :count
|
1604
|
+
attr_accessor :documentPDF
|
1605
|
+
|
1606
|
+
def initialize(envelopeId = nil, transactionId = nil, count = nil, documentPDF = [])
|
1607
|
+
@envelopeId = envelopeId
|
1608
|
+
@transactionId = transactionId
|
1609
|
+
@count = count
|
1610
|
+
@documentPDF = documentPDF
|
1611
|
+
end
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
# {http://www.docusign.net/API/3.0}ArrayOfTemplateReference
|
1615
|
+
class ArrayOfTemplateReference < ::Array
|
1616
|
+
end
|
1617
|
+
|
1618
|
+
# {http://www.docusign.net/API/3.0}TemplateReference
|
1619
|
+
# templateLocation - Docusign::TemplateLocationCode
|
1620
|
+
# template - SOAP::SOAPString
|
1621
|
+
# document - Docusign::Document
|
1622
|
+
# roleAssignments - Docusign::ArrayOfTemplateReferenceRoleAssignment
|
1623
|
+
# fieldData - Docusign::TemplateReferenceFieldData
|
1624
|
+
# additionalTabs - Docusign::ArrayOfTab
|
1625
|
+
# sequence - SOAP::SOAPPositiveInteger
|
1626
|
+
# templateAttachments - Docusign::ArrayOfAttachment
|
1627
|
+
class TemplateReference
|
1628
|
+
attr_accessor :templateLocation
|
1629
|
+
attr_accessor :template
|
1630
|
+
attr_accessor :document
|
1631
|
+
attr_accessor :roleAssignments
|
1632
|
+
attr_accessor :fieldData
|
1633
|
+
attr_accessor :additionalTabs
|
1634
|
+
attr_accessor :sequence
|
1635
|
+
attr_accessor :templateAttachments
|
1636
|
+
|
1637
|
+
def initialize(templateLocation = nil, template = nil, document = nil, roleAssignments = nil, fieldData = nil, additionalTabs = nil, sequence = nil, templateAttachments = nil)
|
1638
|
+
@templateLocation = templateLocation
|
1639
|
+
@template = template
|
1640
|
+
@document = document
|
1641
|
+
@roleAssignments = roleAssignments
|
1642
|
+
@fieldData = fieldData
|
1643
|
+
@additionalTabs = additionalTabs
|
1644
|
+
@sequence = sequence
|
1645
|
+
@templateAttachments = templateAttachments
|
1646
|
+
end
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# {http://www.docusign.net/API/3.0}ArrayOfTemplateReferenceRoleAssignment
|
1650
|
+
class ArrayOfTemplateReferenceRoleAssignment < ::Array
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
# {http://www.docusign.net/API/3.0}TemplateReferenceRoleAssignment
|
1654
|
+
# roleName - SOAP::SOAPString
|
1655
|
+
# recipientID - SOAP::SOAPPositiveInteger
|
1656
|
+
class TemplateReferenceRoleAssignment
|
1657
|
+
attr_accessor :roleName
|
1658
|
+
attr_accessor :recipientID
|
1659
|
+
|
1660
|
+
def initialize(roleName = nil, recipientID = nil)
|
1661
|
+
@roleName = roleName
|
1662
|
+
@recipientID = recipientID
|
1663
|
+
end
|
1664
|
+
end
|
1665
|
+
|
1666
|
+
# {http://www.docusign.net/API/3.0}TemplateReferenceFieldData
|
1667
|
+
# dataValues - Docusign::ArrayOfTemplateReferenceFieldDataDataValue
|
1668
|
+
class TemplateReferenceFieldData
|
1669
|
+
attr_accessor :dataValues
|
1670
|
+
|
1671
|
+
def initialize(dataValues = nil)
|
1672
|
+
@dataValues = dataValues
|
1673
|
+
end
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# {http://www.docusign.net/API/3.0}ArrayOfTemplateReferenceFieldDataDataValue
|
1677
|
+
class ArrayOfTemplateReferenceFieldDataDataValue < ::Array
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
# {http://www.docusign.net/API/3.0}TemplateReferenceFieldDataDataValue
|
1681
|
+
# tabLabel - SOAP::SOAPString
|
1682
|
+
# value - SOAP::SOAPString
|
1683
|
+
class TemplateReferenceFieldDataDataValue
|
1684
|
+
attr_accessor :tabLabel
|
1685
|
+
attr_accessor :value
|
1686
|
+
|
1687
|
+
def initialize(tabLabel = nil, value = nil)
|
1688
|
+
@tabLabel = tabLabel
|
1689
|
+
@value = value
|
1690
|
+
end
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
# {http://www.docusign.net/API/3.0}ArrayOfRecipient1
|
1694
|
+
class ArrayOfRecipient1 < ::Array
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# {http://www.docusign.net/API/3.0}EnvelopeInformation
|
1698
|
+
# transactionID - SOAP::SOAPString
|
1699
|
+
# asynchronous - SOAP::SOAPBoolean
|
1700
|
+
# accountId - SOAP::SOAPString
|
1701
|
+
# emailBlurb - SOAP::SOAPString
|
1702
|
+
# subject - SOAP::SOAPString
|
1703
|
+
# signingLocation - Docusign::SigningLocationCode
|
1704
|
+
# customFields - Docusign::ArrayOfCustomField
|
1705
|
+
# vaultingOptions - Docusign::VaultingOptions
|
1706
|
+
# autoNavigation - SOAP::SOAPBoolean
|
1707
|
+
# envelopeIdStamping - SOAP::SOAPBoolean
|
1708
|
+
# authoritativeCopy - SOAP::SOAPBoolean
|
1709
|
+
# notification - Docusign::Notification
|
1710
|
+
# enforceSignerVisibility - SOAP::SOAPBoolean
|
1711
|
+
# enableWetSign - SOAP::SOAPBoolean
|
1712
|
+
# allowRecipientRecursion - SOAP::SOAPBoolean
|
1713
|
+
# allowMarkup - SOAP::SOAPBoolean
|
1714
|
+
# eventNotification - Docusign::EventNotification
|
1715
|
+
class EnvelopeInformation
|
1716
|
+
attr_accessor :transactionID
|
1717
|
+
attr_accessor :asynchronous
|
1718
|
+
attr_accessor :accountId
|
1719
|
+
attr_accessor :emailBlurb
|
1720
|
+
attr_accessor :subject
|
1721
|
+
attr_accessor :signingLocation
|
1722
|
+
attr_accessor :customFields
|
1723
|
+
attr_accessor :vaultingOptions
|
1724
|
+
attr_accessor :autoNavigation
|
1725
|
+
attr_accessor :envelopeIdStamping
|
1726
|
+
attr_accessor :authoritativeCopy
|
1727
|
+
attr_accessor :notification
|
1728
|
+
attr_accessor :enforceSignerVisibility
|
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
|
1737
|
+
@accountId = accountId
|
1738
|
+
@emailBlurb = emailBlurb
|
1739
|
+
@subject = subject
|
1740
|
+
@signingLocation = signingLocation
|
1741
|
+
@customFields = customFields
|
1742
|
+
@vaultingOptions = vaultingOptions
|
1743
|
+
@autoNavigation = autoNavigation
|
1744
|
+
@envelopeIdStamping = envelopeIdStamping
|
1745
|
+
@authoritativeCopy = authoritativeCopy
|
1746
|
+
@notification = notification
|
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
|
1819
|
+
end
|
1820
|
+
end
|
1821
|
+
|
1822
|
+
# {http://www.docusign.net/API/3.0}DocuSignEnvelopeInformation
|
1823
|
+
# envelopeStatus - Docusign::EnvelopeStatus
|
1824
|
+
# documentPDFs - Docusign::ArrayOfDocumentPDF
|
1825
|
+
class DocuSignEnvelopeInformation
|
1826
|
+
attr_accessor :envelopeStatus
|
1827
|
+
attr_accessor :documentPDFs
|
1828
|
+
|
1829
|
+
def initialize(envelopeStatus = nil, documentPDFs = nil)
|
1830
|
+
@envelopeStatus = envelopeStatus
|
1831
|
+
@documentPDFs = documentPDFs
|
1832
|
+
end
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
# {http://www.docusign.net/API/3.0}ArrayOfDocumentPDF
|
1836
|
+
class ArrayOfDocumentPDF < ::Array
|
1837
|
+
end
|
1838
|
+
|
1839
|
+
# {http://www.docusign.net/API/3.0}PurgeDocumentStatus
|
1840
|
+
# purgeDocumentSuccess - SOAP::SOAPBoolean
|
1841
|
+
# purgeDocumentError - SOAP::SOAPString
|
1842
|
+
class PurgeDocumentStatus
|
1843
|
+
attr_accessor :purgeDocumentSuccess
|
1844
|
+
attr_accessor :purgeDocumentError
|
1845
|
+
|
1846
|
+
def initialize(purgeDocumentSuccess = nil, purgeDocumentError = nil)
|
1847
|
+
@purgeDocumentSuccess = purgeDocumentSuccess
|
1848
|
+
@purgeDocumentError = purgeDocumentError
|
1849
|
+
end
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
# {http://www.docusign.net/API/3.0}EnvelopeTemplate
|
1853
|
+
# envelopeTemplateDefinition - Docusign::EnvelopeTemplateDefinition
|
1854
|
+
# envelope - Docusign::Envelope
|
1855
|
+
class EnvelopeTemplate
|
1856
|
+
attr_accessor :envelopeTemplateDefinition
|
1857
|
+
attr_accessor :envelope
|
1858
|
+
|
1859
|
+
def initialize(envelopeTemplateDefinition = nil, envelope = nil)
|
1860
|
+
@envelopeTemplateDefinition = envelopeTemplateDefinition
|
1861
|
+
@envelope = envelope
|
1862
|
+
end
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# {http://www.docusign.net/API/3.0}EnvelopeTemplateDefinition
|
1866
|
+
# templateID - SOAP::SOAPString
|
1867
|
+
# name - SOAP::SOAPString
|
1868
|
+
# shared - SOAP::SOAPBoolean
|
1869
|
+
# templatePassword - SOAP::SOAPString
|
1870
|
+
# templateDescription - SOAP::SOAPString
|
1871
|
+
# lastModified - SOAP::SOAPDateTime
|
1872
|
+
# pageCount - SOAP::SOAPInt
|
1873
|
+
class EnvelopeTemplateDefinition
|
1874
|
+
attr_accessor :templateID
|
1875
|
+
attr_accessor :name
|
1876
|
+
attr_accessor :shared
|
1877
|
+
attr_accessor :templatePassword
|
1878
|
+
attr_accessor :templateDescription
|
1879
|
+
attr_accessor :lastModified
|
1880
|
+
attr_accessor :pageCount
|
1881
|
+
|
1882
|
+
def initialize(templateID = nil, name = nil, shared = nil, templatePassword = nil, templateDescription = nil, lastModified = nil, pageCount = nil)
|
1883
|
+
@templateID = templateID
|
1884
|
+
@name = name
|
1885
|
+
@shared = shared
|
1886
|
+
@templatePassword = templatePassword
|
1887
|
+
@templateDescription = templateDescription
|
1888
|
+
@lastModified = lastModified
|
1889
|
+
@pageCount = pageCount
|
1890
|
+
end
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
# {http://www.docusign.net/API/3.0}SaveTemplateResult
|
1894
|
+
# success - SOAP::SOAPBoolean
|
1895
|
+
# templateID - SOAP::SOAPString
|
1896
|
+
# name - SOAP::SOAPString
|
1897
|
+
class SaveTemplateResult
|
1898
|
+
attr_accessor :success
|
1899
|
+
attr_accessor :templateID
|
1900
|
+
attr_accessor :name
|
1901
|
+
|
1902
|
+
def initialize(success = nil, templateID = nil, name = nil)
|
1903
|
+
@success = success
|
1904
|
+
@templateID = templateID
|
1905
|
+
@name = name
|
1906
|
+
end
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
# {http://www.docusign.net/API/3.0}EnvelopeTemplates
|
1910
|
+
class EnvelopeTemplates < ::Array
|
1911
|
+
end
|
1912
|
+
|
1913
|
+
# {http://www.docusign.net/API/3.0}ArrayOfAddressBookItem
|
1914
|
+
class ArrayOfAddressBookItem < ::Array
|
1915
|
+
end
|
1916
|
+
|
1917
|
+
# {http://www.docusign.net/API/3.0}AddressBookItem
|
1918
|
+
# addressBookID - SOAP::SOAPString
|
1919
|
+
# email - SOAP::SOAPString
|
1920
|
+
# userName - SOAP::SOAPString
|
1921
|
+
# accountName - SOAP::SOAPString
|
1922
|
+
# shared - SOAP::SOAPBoolean
|
1923
|
+
# created - SOAP::SOAPDateTime
|
1924
|
+
# owner - SOAP::SOAPBoolean
|
1925
|
+
# phone1 - Docusign::AddressBookPhoneNumber
|
1926
|
+
# phone2 - Docusign::AddressBookPhoneNumber
|
1927
|
+
# phone3 - Docusign::AddressBookPhoneNumber
|
1928
|
+
# phone4 - Docusign::AddressBookPhoneNumber
|
1929
|
+
class AddressBookItem
|
1930
|
+
attr_accessor :addressBookID
|
1931
|
+
attr_accessor :email
|
1932
|
+
attr_accessor :userName
|
1933
|
+
attr_accessor :accountName
|
1934
|
+
attr_accessor :shared
|
1935
|
+
attr_accessor :created
|
1936
|
+
attr_accessor :owner
|
1937
|
+
attr_accessor :phone1
|
1938
|
+
attr_accessor :phone2
|
1939
|
+
attr_accessor :phone3
|
1940
|
+
attr_accessor :phone4
|
1941
|
+
|
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)
|
1943
|
+
@addressBookID = addressBookID
|
1944
|
+
@email = email
|
1945
|
+
@userName = userName
|
1946
|
+
@accountName = accountName
|
1947
|
+
@shared = shared
|
1948
|
+
@created = created
|
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
|
1967
|
+
end
|
1968
|
+
end
|
1969
|
+
|
1970
|
+
# {http://www.docusign.net/API/3.0}UpdateAddressBookResult
|
1971
|
+
# success - SOAP::SOAPBoolean
|
1972
|
+
# addressBookItems - Docusign::ArrayOfAddressBookItem1
|
1973
|
+
class UpdateAddressBookResult
|
1974
|
+
attr_accessor :success
|
1975
|
+
attr_accessor :addressBookItems
|
1976
|
+
|
1977
|
+
def initialize(success = nil, addressBookItems = nil)
|
1978
|
+
@success = success
|
1979
|
+
@addressBookItems = addressBookItems
|
1980
|
+
end
|
1981
|
+
end
|
1982
|
+
|
1983
|
+
# {http://www.docusign.net/API/3.0}ArrayOfAddressBookItem1
|
1984
|
+
class ArrayOfAddressBookItem1 < ::Array
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
# {http://www.docusign.net/API/3.0}ArrayOfAddressBookRemoveItem
|
1988
|
+
class ArrayOfAddressBookRemoveItem < ::Array
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# {http://www.docusign.net/API/3.0}AddressBookRemoveItem
|
1992
|
+
# addressBookID - SOAP::SOAPString
|
1993
|
+
class AddressBookRemoveItem
|
1994
|
+
attr_accessor :addressBookID
|
1995
|
+
|
1996
|
+
def initialize(addressBookID = nil)
|
1997
|
+
@addressBookID = addressBookID
|
1998
|
+
end
|
1999
|
+
end
|
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
|
+
|
2164
|
+
# {http://www.docusign.net/API/3.0}RecipientTypeCode
|
2165
|
+
class RecipientTypeCode < ::String
|
2166
|
+
Agent = RecipientTypeCode.new("Agent")
|
2167
|
+
CarbonCopy = RecipientTypeCode.new("CarbonCopy")
|
2168
|
+
CertifiedDelivery = RecipientTypeCode.new("CertifiedDelivery")
|
2169
|
+
Editor = RecipientTypeCode.new("Editor")
|
2170
|
+
InPersonSigner = RecipientTypeCode.new("InPersonSigner")
|
2171
|
+
Signer = RecipientTypeCode.new("Signer")
|
2172
|
+
end
|
2173
|
+
|
2174
|
+
# {http://www.docusign.net/API/3.0}FontStyleCode
|
2175
|
+
class FontStyleCode < ::String
|
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")
|
2185
|
+
Freehand575 = FontStyleCode.new("Freehand575")
|
2186
|
+
KaufmannBT = FontStyleCode.new("KaufmannBT")
|
2187
|
+
LuciaBT = FontStyleCode.new("LuciaBT")
|
2188
|
+
Mistral = FontStyleCode.new("Mistral")
|
2189
|
+
RageItalic = FontStyleCode.new("RageItalic")
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
# {http://www.docusign.net/API/3.0}DisplayLevelCode
|
2193
|
+
class DisplayLevelCode < ::String
|
2194
|
+
DoNotDisplay = DisplayLevelCode.new("DoNotDisplay")
|
2195
|
+
Editable = DisplayLevelCode.new("Editable")
|
2196
|
+
ReadOnly = DisplayLevelCode.new("ReadOnly")
|
2197
|
+
end
|
2198
|
+
|
2199
|
+
# {http://www.docusign.net/API/3.0}UnitTypeCode
|
2200
|
+
class UnitTypeCode < ::String
|
2201
|
+
Cms = UnitTypeCode.new("Cms")
|
2202
|
+
Inches = UnitTypeCode.new("Inches")
|
2203
|
+
Mms = UnitTypeCode.new("Mms")
|
2204
|
+
Pixels = UnitTypeCode.new("Pixels")
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
# {http://www.docusign.net/API/3.0}TabTypeCode
|
2208
|
+
class TabTypeCode < ::String
|
2209
|
+
Company = TabTypeCode.new("Company")
|
2210
|
+
Custom = TabTypeCode.new("Custom")
|
2211
|
+
DateSigned = TabTypeCode.new("DateSigned")
|
2212
|
+
EnvelopeID = TabTypeCode.new("EnvelopeID")
|
2213
|
+
FullName = TabTypeCode.new("FullName")
|
2214
|
+
InitialHere = TabTypeCode.new("InitialHere")
|
2215
|
+
InitialHereOptional = TabTypeCode.new("InitialHereOptional")
|
2216
|
+
SignHere = TabTypeCode.new("SignHere")
|
2217
|
+
SignHereOptional = TabTypeCode.new("SignHereOptional")
|
2218
|
+
SignerAttachment = TabTypeCode.new("SignerAttachment")
|
2219
|
+
Title = TabTypeCode.new("Title")
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
# {http://www.docusign.net/API/3.0}CustomTabType
|
2223
|
+
class CustomTabType < ::String
|
2224
|
+
Checkbox = CustomTabType.new("Checkbox")
|
2225
|
+
Date = CustomTabType.new("Date")
|
2226
|
+
Email = CustomTabType.new("Email")
|
2227
|
+
List = CustomTabType.new("List")
|
2228
|
+
Number = CustomTabType.new("Number")
|
2229
|
+
Radio = CustomTabType.new("Radio")
|
2230
|
+
SSN = CustomTabType.new("SSN")
|
2231
|
+
Text = CustomTabType.new("Text")
|
2232
|
+
ZIP5 = CustomTabType.new("ZIP5")
|
2233
|
+
ZIP5DASH4 = CustomTabType.new("ZIP5DASH4")
|
2234
|
+
end
|
2235
|
+
|
2236
|
+
# {http://www.docusign.net/API/3.0}SigningLocationCode
|
2237
|
+
class SigningLocationCode < ::String
|
2238
|
+
InPerson = SigningLocationCode.new("InPerson")
|
2239
|
+
Online = SigningLocationCode.new("Online")
|
2240
|
+
end
|
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
|
+
|
2248
|
+
# {http://www.docusign.net/API/3.0}VaultingModeCode
|
2249
|
+
class VaultingModeCode < ::String
|
2250
|
+
EODAuthoritativeCopy = VaultingModeCode.new("EODAuthoritativeCopy")
|
2251
|
+
EODeStore = VaultingModeCode.new("EODeStore")
|
2252
|
+
None = VaultingModeCode.new("None")
|
2253
|
+
end
|
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
|
+
|
2264
|
+
# {http://www.docusign.net/API/3.0}RecipientStatusCode
|
2265
|
+
class RecipientStatusCode < ::String
|
2266
|
+
Completed = RecipientStatusCode.new("Completed")
|
2267
|
+
Created = RecipientStatusCode.new("Created")
|
2268
|
+
Declined = RecipientStatusCode.new("Declined")
|
2269
|
+
Delivered = RecipientStatusCode.new("Delivered")
|
2270
|
+
FaxPending = RecipientStatusCode.new("FaxPending")
|
2271
|
+
Sent = RecipientStatusCode.new("Sent")
|
2272
|
+
Signed = RecipientStatusCode.new("Signed")
|
2273
|
+
end
|
2274
|
+
|
2275
|
+
# {http://www.docusign.net/API/3.0}EventStatusCode
|
2276
|
+
class EventStatusCode < ::String
|
2277
|
+
Failed = EventStatusCode.new("Failed")
|
2278
|
+
Passed = EventStatusCode.new("Passed")
|
2279
|
+
end
|
2280
|
+
|
2281
|
+
# {http://www.docusign.net/API/3.0}EnvelopeStatusCode
|
2282
|
+
class EnvelopeStatusCode < ::String
|
2283
|
+
Any = EnvelopeStatusCode.new("Any")
|
2284
|
+
Completed = EnvelopeStatusCode.new("Completed")
|
2285
|
+
Created = EnvelopeStatusCode.new("Created")
|
2286
|
+
Declined = EnvelopeStatusCode.new("Declined")
|
2287
|
+
Deleted = EnvelopeStatusCode.new("Deleted")
|
2288
|
+
Delivered = EnvelopeStatusCode.new("Delivered")
|
2289
|
+
Processing = EnvelopeStatusCode.new("Processing")
|
2290
|
+
Sent = EnvelopeStatusCode.new("Sent")
|
2291
|
+
Signed = EnvelopeStatusCode.new("Signed")
|
2292
|
+
Template = EnvelopeStatusCode.new("Template")
|
2293
|
+
TimedOut = EnvelopeStatusCode.new("TimedOut")
|
2294
|
+
Voided = EnvelopeStatusCode.new("Voided")
|
2295
|
+
end
|
2296
|
+
|
2297
|
+
# {http://www.docusign.net/API/3.0}DocumentType
|
2298
|
+
class DocumentType < ::String
|
2299
|
+
CONTENT = DocumentType.new("CONTENT")
|
2300
|
+
SUMMARY = DocumentType.new("SUMMARY")
|
2301
|
+
end
|
2302
|
+
|
2303
|
+
# {http://www.docusign.net/API/3.0}EnvelopeACStatusCode
|
2304
|
+
class EnvelopeACStatusCode < ::String
|
2305
|
+
AuthoritativeCopy = EnvelopeACStatusCode.new("AuthoritativeCopy")
|
2306
|
+
AuthoritativeCopyExportPending = EnvelopeACStatusCode.new("AuthoritativeCopyExportPending")
|
2307
|
+
AuthoritativeCopyExported = EnvelopeACStatusCode.new("AuthoritativeCopyExported")
|
2308
|
+
DepositFailed = EnvelopeACStatusCode.new("DepositFailed")
|
2309
|
+
DepositPending = EnvelopeACStatusCode.new("DepositPending")
|
2310
|
+
Deposited = EnvelopeACStatusCode.new("Deposited")
|
2311
|
+
DepositedEO = EnvelopeACStatusCode.new("DepositedEO")
|
2312
|
+
Original = EnvelopeACStatusCode.new("Original")
|
2313
|
+
Transferred = EnvelopeACStatusCode.new("Transferred")
|
2314
|
+
Unknown = EnvelopeACStatusCode.new("Unknown")
|
2315
|
+
end
|
2316
|
+
|
2317
|
+
# {http://www.docusign.net/API/3.0}RequestRecipientTokenAuthenticationAssertionAuthenticationMethod
|
2318
|
+
class RequestRecipientTokenAuthenticationAssertionAuthenticationMethod < ::String
|
2319
|
+
Biometric = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Biometric")
|
2320
|
+
Email = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Email")
|
2321
|
+
HTTPBasicAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("HTTPBasicAuth")
|
2322
|
+
Kerberos = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Kerberos")
|
2323
|
+
KnowledgeBasedAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("KnowledgeBasedAuth")
|
2324
|
+
None = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("None")
|
2325
|
+
PaperDocuments = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("PaperDocuments")
|
2326
|
+
Password = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Password")
|
2327
|
+
RSASecureID = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("RSASecureID")
|
2328
|
+
SSLMutualAuth = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SSLMutualAuth")
|
2329
|
+
SingleSignOn_CASiteminder = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_CASiteminder")
|
2330
|
+
SingleSignOn_InfoCard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_InfoCard")
|
2331
|
+
SingleSignOn_MicrosoftActiveDirectory = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_MicrosoftActiveDirectory")
|
2332
|
+
SingleSignOn_Other = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Other")
|
2333
|
+
SingleSignOn_Passport = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_Passport")
|
2334
|
+
SingleSignOn_SAML = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("SingleSignOn_SAML")
|
2335
|
+
Smartcard = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("Smartcard")
|
2336
|
+
X509Certificate = RequestRecipientTokenAuthenticationAssertionAuthenticationMethod.new("X509Certificate")
|
2337
|
+
end
|
2338
|
+
|
2339
|
+
# {http://www.docusign.net/API/3.0}TemplateLocationCode
|
2340
|
+
class TemplateLocationCode < ::String
|
2341
|
+
PDFMetaData = TemplateLocationCode.new("PDFMetaData")
|
2342
|
+
SOAP = TemplateLocationCode.new("SOAP")
|
2343
|
+
Server = TemplateLocationCode.new("Server")
|
2344
|
+
end
|
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
|
+
|
2363
|
+
# {http://www.docusign.net/API/3.0}CreateEnvelope
|
2364
|
+
# envelope - Docusign::Envelope
|
2365
|
+
class CreateEnvelope
|
2366
|
+
attr_accessor :envelope
|
2367
|
+
|
2368
|
+
def initialize(envelope = nil)
|
2369
|
+
@envelope = envelope
|
2370
|
+
end
|
2371
|
+
end
|
2372
|
+
|
2373
|
+
# {http://www.docusign.net/API/3.0}CreateEnvelopeResponse
|
2374
|
+
# createEnvelopeResult - Docusign::EnvelopeStatus
|
2375
|
+
class CreateEnvelopeResponse
|
2376
|
+
attr_accessor :createEnvelopeResult
|
2377
|
+
|
2378
|
+
def initialize(createEnvelopeResult = nil)
|
2379
|
+
@createEnvelopeResult = createEnvelopeResult
|
2380
|
+
end
|
2381
|
+
end
|
2382
|
+
|
2383
|
+
# {http://www.docusign.net/API/3.0}CreateAndSendEnvelope
|
2384
|
+
# envelope - Docusign::Envelope
|
2385
|
+
class CreateAndSendEnvelope
|
2386
|
+
attr_accessor :envelope
|
2387
|
+
|
2388
|
+
def initialize(envelope = nil)
|
2389
|
+
@envelope = envelope
|
2390
|
+
end
|
2391
|
+
end
|
2392
|
+
|
2393
|
+
# {http://www.docusign.net/API/3.0}CreateAndSendEnvelopeResponse
|
2394
|
+
# createAndSendEnvelopeResult - Docusign::EnvelopeStatus
|
2395
|
+
class CreateAndSendEnvelopeResponse
|
2396
|
+
attr_accessor :createAndSendEnvelopeResult
|
2397
|
+
|
2398
|
+
def initialize(createAndSendEnvelopeResult = nil)
|
2399
|
+
@createAndSendEnvelopeResult = createAndSendEnvelopeResult
|
2400
|
+
end
|
2401
|
+
end
|
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
|
+
|
2426
|
+
# {http://www.docusign.net/API/3.0}CorrectAndResendEnvelope
|
2427
|
+
# correction - Docusign::Correction
|
2428
|
+
class CorrectAndResendEnvelope
|
2429
|
+
attr_accessor :correction
|
2430
|
+
|
2431
|
+
def initialize(correction = nil)
|
2432
|
+
@correction = correction
|
2433
|
+
end
|
2434
|
+
end
|
2435
|
+
|
2436
|
+
# {http://www.docusign.net/API/3.0}CorrectAndResendEnvelopeResponse
|
2437
|
+
# correctAndResendEnvelopeResult - Docusign::CorrectionStatus
|
2438
|
+
class CorrectAndResendEnvelopeResponse
|
2439
|
+
attr_accessor :correctAndResendEnvelopeResult
|
2440
|
+
|
2441
|
+
def initialize(correctAndResendEnvelopeResult = nil)
|
2442
|
+
@correctAndResendEnvelopeResult = correctAndResendEnvelopeResult
|
2443
|
+
end
|
2444
|
+
end
|
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
|
+
|
2466
|
+
# {http://www.docusign.net/API/3.0}RequestPDF
|
2467
|
+
# envelopeID - SOAP::SOAPString
|
2468
|
+
class RequestPDF
|
2469
|
+
attr_accessor :envelopeID
|
2470
|
+
|
2471
|
+
def initialize(envelopeID = nil)
|
2472
|
+
@envelopeID = envelopeID
|
2473
|
+
end
|
2474
|
+
end
|
2475
|
+
|
2476
|
+
# {http://www.docusign.net/API/3.0}RequestPDFResponse
|
2477
|
+
# requestPDFResult - Docusign::EnvelopePDF
|
2478
|
+
class RequestPDFResponse
|
2479
|
+
attr_accessor :requestPDFResult
|
2480
|
+
|
2481
|
+
def initialize(requestPDFResult = nil)
|
2482
|
+
@requestPDFResult = requestPDFResult
|
2483
|
+
end
|
2484
|
+
end
|
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
|
+
|
2509
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFs
|
2510
|
+
# envelopeID - SOAP::SOAPString
|
2511
|
+
class RequestDocumentPDFs
|
2512
|
+
attr_accessor :envelopeID
|
2513
|
+
|
2514
|
+
def initialize(envelopeID = nil)
|
2515
|
+
@envelopeID = envelopeID
|
2516
|
+
end
|
2517
|
+
end
|
2518
|
+
|
2519
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFsResponse
|
2520
|
+
# requestDocumentPDFsResult - Docusign::DocumentPDFs
|
2521
|
+
class RequestDocumentPDFsResponse
|
2522
|
+
attr_accessor :requestDocumentPDFsResult
|
2523
|
+
|
2524
|
+
def initialize(requestDocumentPDFsResult = nil)
|
2525
|
+
@requestDocumentPDFsResult = requestDocumentPDFsResult
|
2526
|
+
end
|
2527
|
+
end
|
2528
|
+
|
2529
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFsEx
|
2530
|
+
# envelopeID - SOAP::SOAPString
|
2531
|
+
class RequestDocumentPDFsEx
|
2532
|
+
attr_accessor :envelopeID
|
2533
|
+
|
2534
|
+
def initialize(envelopeID = nil)
|
2535
|
+
@envelopeID = envelopeID
|
2536
|
+
end
|
2537
|
+
end
|
2538
|
+
|
2539
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFsExResponse
|
2540
|
+
# requestDocumentPDFsExResult - Docusign::DocumentPDFs
|
2541
|
+
class RequestDocumentPDFsExResponse
|
2542
|
+
attr_accessor :requestDocumentPDFsExResult
|
2543
|
+
|
2544
|
+
def initialize(requestDocumentPDFsExResult = nil)
|
2545
|
+
@requestDocumentPDFsExResult = requestDocumentPDFsExResult
|
2546
|
+
end
|
2547
|
+
end
|
2548
|
+
|
2549
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFsRecipientsView
|
2550
|
+
# envelopeID - SOAP::SOAPString
|
2551
|
+
# recipientName - SOAP::SOAPString
|
2552
|
+
# recipientEmail - SOAP::SOAPString
|
2553
|
+
class RequestDocumentPDFsRecipientsView
|
2554
|
+
attr_accessor :envelopeID
|
2555
|
+
attr_accessor :recipientName
|
2556
|
+
attr_accessor :recipientEmail
|
2557
|
+
|
2558
|
+
def initialize(envelopeID = nil, recipientName = nil, recipientEmail = nil)
|
2559
|
+
@envelopeID = envelopeID
|
2560
|
+
@recipientName = recipientName
|
2561
|
+
@recipientEmail = recipientEmail
|
2562
|
+
end
|
2563
|
+
end
|
2564
|
+
|
2565
|
+
# {http://www.docusign.net/API/3.0}RequestDocumentPDFsRecipientsViewResponse
|
2566
|
+
# requestDocumentPDFsRecipientsViewResult - Docusign::DocumentPDFs
|
2567
|
+
class RequestDocumentPDFsRecipientsViewResponse
|
2568
|
+
attr_accessor :requestDocumentPDFsRecipientsViewResult
|
2569
|
+
|
2570
|
+
def initialize(requestDocumentPDFsRecipientsViewResult = nil)
|
2571
|
+
@requestDocumentPDFsRecipientsViewResult = requestDocumentPDFsRecipientsViewResult
|
2572
|
+
end
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
# {http://www.docusign.net/API/3.0}RequestStatusEx
|
2576
|
+
# envelopeID - SOAP::SOAPString
|
2577
|
+
class RequestStatusEx
|
2578
|
+
attr_accessor :envelopeID
|
2579
|
+
|
2580
|
+
def initialize(envelopeID = nil)
|
2581
|
+
@envelopeID = envelopeID
|
2582
|
+
end
|
2583
|
+
end
|
2584
|
+
|
2585
|
+
# {http://www.docusign.net/API/3.0}RequestStatusExResponse
|
2586
|
+
# requestStatusExResult - Docusign::EnvelopeStatus
|
2587
|
+
class RequestStatusExResponse
|
2588
|
+
attr_accessor :requestStatusExResult
|
2589
|
+
|
2590
|
+
def initialize(requestStatusExResult = nil)
|
2591
|
+
@requestStatusExResult = requestStatusExResult
|
2592
|
+
end
|
2593
|
+
end
|
2594
|
+
|
2595
|
+
# {http://www.docusign.net/API/3.0}RequestStatus
|
2596
|
+
# envelopeID - SOAP::SOAPString
|
2597
|
+
class RequestStatus
|
2598
|
+
attr_accessor :envelopeID
|
2599
|
+
|
2600
|
+
def initialize(envelopeID = nil)
|
2601
|
+
@envelopeID = envelopeID
|
2602
|
+
end
|
2603
|
+
end
|
2604
|
+
|
2605
|
+
# {http://www.docusign.net/API/3.0}RequestStatusResponse
|
2606
|
+
# requestStatusResult - Docusign::EnvelopeStatus
|
2607
|
+
class RequestStatusResponse
|
2608
|
+
attr_accessor :requestStatusResult
|
2609
|
+
|
2610
|
+
def initialize(requestStatusResult = nil)
|
2611
|
+
@requestStatusResult = requestStatusResult
|
2612
|
+
end
|
2613
|
+
end
|
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
|
+
|
2655
|
+
# {http://www.docusign.net/API/3.0}RequestStatusesEx
|
2656
|
+
# envelopeStatusFilter - Docusign::EnvelopeStatusFilter
|
2657
|
+
class RequestStatusesEx
|
2658
|
+
attr_accessor :envelopeStatusFilter
|
2659
|
+
|
2660
|
+
def initialize(envelopeStatusFilter = nil)
|
2661
|
+
@envelopeStatusFilter = envelopeStatusFilter
|
2662
|
+
end
|
2663
|
+
end
|
2664
|
+
|
2665
|
+
# {http://www.docusign.net/API/3.0}RequestStatusesExResponse
|
2666
|
+
# requestStatusesExResult - Docusign::FilteredEnvelopeStatuses
|
2667
|
+
class RequestStatusesExResponse
|
2668
|
+
attr_accessor :requestStatusesExResult
|
2669
|
+
|
2670
|
+
def initialize(requestStatusesExResult = nil)
|
2671
|
+
@requestStatusesExResult = requestStatusesExResult
|
2672
|
+
end
|
2673
|
+
end
|
2674
|
+
|
2675
|
+
# {http://www.docusign.net/API/3.0}RequestStatuses
|
2676
|
+
# envelopeStatusFilter - Docusign::EnvelopeStatusFilter
|
2677
|
+
class RequestStatuses
|
2678
|
+
attr_accessor :envelopeStatusFilter
|
2679
|
+
|
2680
|
+
def initialize(envelopeStatusFilter = nil)
|
2681
|
+
@envelopeStatusFilter = envelopeStatusFilter
|
2682
|
+
end
|
2683
|
+
end
|
2684
|
+
|
2685
|
+
# {http://www.docusign.net/API/3.0}RequestStatusesResponse
|
2686
|
+
# requestStatusesResult - Docusign::FilteredEnvelopeStatuses
|
2687
|
+
class RequestStatusesResponse
|
2688
|
+
attr_accessor :requestStatusesResult
|
2689
|
+
|
2690
|
+
def initialize(requestStatusesResult = nil)
|
2691
|
+
@requestStatusesResult = requestStatusesResult
|
2692
|
+
end
|
2693
|
+
end
|
2694
|
+
|
2695
|
+
# {http://www.docusign.net/API/3.0}GetRecipientEsignList
|
2696
|
+
# userName - SOAP::SOAPString
|
2697
|
+
# senderEmail - SOAP::SOAPString
|
2698
|
+
# senderAccountId - SOAP::SOAPString
|
2699
|
+
# recipientEmail - SOAP::SOAPString
|
2700
|
+
class GetRecipientEsignList
|
2701
|
+
attr_accessor :userName
|
2702
|
+
attr_accessor :senderEmail
|
2703
|
+
attr_accessor :senderAccountId
|
2704
|
+
attr_accessor :recipientEmail
|
2705
|
+
|
2706
|
+
def initialize(userName = nil, senderEmail = nil, senderAccountId = nil, recipientEmail = nil)
|
2707
|
+
@userName = userName
|
2708
|
+
@senderEmail = senderEmail
|
2709
|
+
@senderAccountId = senderAccountId
|
2710
|
+
@recipientEmail = recipientEmail
|
2711
|
+
end
|
2712
|
+
end
|
2713
|
+
|
2714
|
+
# {http://www.docusign.net/API/3.0}GetRecipientEsignListResponse
|
2715
|
+
# getRecipientEsignListResult - Docusign::RecipientEsignList
|
2716
|
+
class GetRecipientEsignListResponse
|
2717
|
+
attr_accessor :getRecipientEsignListResult
|
2718
|
+
|
2719
|
+
def initialize(getRecipientEsignListResult = nil)
|
2720
|
+
@getRecipientEsignListResult = getRecipientEsignListResult
|
2721
|
+
end
|
2722
|
+
end
|
2723
|
+
|
2724
|
+
# {http://www.docusign.net/API/3.0}GetRecipientList
|
2725
|
+
# senderAccountId - SOAP::SOAPString
|
2726
|
+
# recipientEmail - SOAP::SOAPString
|
2727
|
+
class GetRecipientList
|
2728
|
+
attr_accessor :senderAccountId
|
2729
|
+
attr_accessor :recipientEmail
|
2730
|
+
|
2731
|
+
def initialize(senderAccountId = nil, recipientEmail = nil)
|
2732
|
+
@senderAccountId = senderAccountId
|
2733
|
+
@recipientEmail = recipientEmail
|
2734
|
+
end
|
2735
|
+
end
|
2736
|
+
|
2737
|
+
# {http://www.docusign.net/API/3.0}GetRecipientListResponse
|
2738
|
+
# getRecipientListResult - Docusign::RecipientList
|
2739
|
+
class GetRecipientListResponse
|
2740
|
+
attr_accessor :getRecipientListResult
|
2741
|
+
|
2742
|
+
def initialize(getRecipientListResult = nil)
|
2743
|
+
@getRecipientListResult = getRecipientListResult
|
2744
|
+
end
|
2745
|
+
end
|
2746
|
+
|
2747
|
+
# {http://www.docusign.net/API/3.0}VoidEnvelope
|
2748
|
+
# envelopeID - SOAP::SOAPString
|
2749
|
+
# reason - SOAP::SOAPString
|
2750
|
+
class VoidEnvelope
|
2751
|
+
attr_accessor :envelopeID
|
2752
|
+
attr_accessor :reason
|
2753
|
+
|
2754
|
+
def initialize(envelopeID = nil, reason = nil)
|
2755
|
+
@envelopeID = envelopeID
|
2756
|
+
@reason = reason
|
2757
|
+
end
|
2758
|
+
end
|
2759
|
+
|
2760
|
+
# {http://www.docusign.net/API/3.0}VoidEnvelopeResponse
|
2761
|
+
# voidEnvelopeResult - Docusign::VoidEnvelopeStatus
|
2762
|
+
class VoidEnvelopeResponse
|
2763
|
+
attr_accessor :voidEnvelopeResult
|
2764
|
+
|
2765
|
+
def initialize(voidEnvelopeResult = nil)
|
2766
|
+
@voidEnvelopeResult = voidEnvelopeResult
|
2767
|
+
end
|
2768
|
+
end
|
2769
|
+
|
2770
|
+
# {http://www.docusign.net/API/3.0}RequestRecipientToken
|
2771
|
+
# envelopeID - SOAP::SOAPString
|
2772
|
+
# clientUserID - SOAP::SOAPString
|
2773
|
+
# username - SOAP::SOAPString
|
2774
|
+
# email - SOAP::SOAPString
|
2775
|
+
# authenticationAssertion - Docusign::RequestRecipientTokenAuthenticationAssertion
|
2776
|
+
# clientURLs - Docusign::RequestRecipientTokenClientURLs
|
2777
|
+
class RequestRecipientToken
|
2778
|
+
attr_accessor :envelopeID
|
2779
|
+
attr_accessor :clientUserID
|
2780
|
+
attr_accessor :username
|
2781
|
+
attr_accessor :email
|
2782
|
+
attr_accessor :authenticationAssertion
|
2783
|
+
attr_accessor :clientURLs
|
2784
|
+
|
2785
|
+
def initialize(envelopeID = nil, clientUserID = nil, username = nil, email = nil, authenticationAssertion = nil, clientURLs = nil)
|
2786
|
+
@envelopeID = envelopeID
|
2787
|
+
@clientUserID = clientUserID
|
2788
|
+
@username = username
|
2789
|
+
@email = email
|
2790
|
+
@authenticationAssertion = authenticationAssertion
|
2791
|
+
@clientURLs = clientURLs
|
2792
|
+
end
|
2793
|
+
end
|
2794
|
+
|
2795
|
+
# {http://www.docusign.net/API/3.0}RequestRecipientTokenResponse
|
2796
|
+
# requestRecipientTokenResult - SOAP::SOAPString
|
2797
|
+
class RequestRecipientTokenResponse
|
2798
|
+
attr_accessor :requestRecipientTokenResult
|
2799
|
+
|
2800
|
+
def initialize(requestRecipientTokenResult = nil)
|
2801
|
+
@requestRecipientTokenResult = requestRecipientTokenResult
|
2802
|
+
end
|
2803
|
+
end
|
2804
|
+
|
2805
|
+
# {http://www.docusign.net/API/3.0}TransferEnvelope
|
2806
|
+
# envelopeID - SOAP::SOAPString
|
2807
|
+
# accountID - SOAP::SOAPString
|
2808
|
+
# userID - SOAP::SOAPString
|
2809
|
+
class TransferEnvelope
|
2810
|
+
attr_accessor :envelopeID
|
2811
|
+
attr_accessor :accountID
|
2812
|
+
attr_accessor :userID
|
2813
|
+
|
2814
|
+
def initialize(envelopeID = nil, accountID = nil, userID = nil)
|
2815
|
+
@envelopeID = envelopeID
|
2816
|
+
@accountID = accountID
|
2817
|
+
@userID = userID
|
2818
|
+
end
|
2819
|
+
end
|
2820
|
+
|
2821
|
+
# {http://www.docusign.net/API/3.0}TransferEnvelopeResponse
|
2822
|
+
# transferEnvelopeResult - Docusign::TransferEnvelopeStatus
|
2823
|
+
class TransferEnvelopeResponse
|
2824
|
+
attr_accessor :transferEnvelopeResult
|
2825
|
+
|
2826
|
+
def initialize(transferEnvelopeResult = nil)
|
2827
|
+
@transferEnvelopeResult = transferEnvelopeResult
|
2828
|
+
end
|
2829
|
+
end
|
2830
|
+
|
2831
|
+
# {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesList
|
2832
|
+
# accountId - SOAP::SOAPString
|
2833
|
+
class GetAccountMembershipFeaturesList
|
2834
|
+
attr_accessor :accountId
|
2835
|
+
|
2836
|
+
def initialize(accountId = nil)
|
2837
|
+
@accountId = accountId
|
2838
|
+
end
|
2839
|
+
end
|
2840
|
+
|
2841
|
+
# {http://www.docusign.net/API/3.0}GetAccountMembershipFeaturesListResponse
|
2842
|
+
# getAccountMembershipFeaturesListResult - Docusign::AccountMembershipFeaturesList
|
2843
|
+
class GetAccountMembershipFeaturesListResponse
|
2844
|
+
attr_accessor :getAccountMembershipFeaturesListResult
|
2845
|
+
|
2846
|
+
def initialize(getAccountMembershipFeaturesListResult = nil)
|
2847
|
+
@getAccountMembershipFeaturesListResult = getAccountMembershipFeaturesListResult
|
2848
|
+
end
|
2849
|
+
end
|
2850
|
+
|
2851
|
+
# {http://www.docusign.net/API/3.0}GetAccountSettingsList
|
2852
|
+
# accountId - SOAP::SOAPString
|
2853
|
+
class GetAccountSettingsList
|
2854
|
+
attr_accessor :accountId
|
2855
|
+
|
2856
|
+
def initialize(accountId = nil)
|
2857
|
+
@accountId = accountId
|
2858
|
+
end
|
2859
|
+
end
|
2860
|
+
|
2861
|
+
# {http://www.docusign.net/API/3.0}GetAccountSettingsListResponse
|
2862
|
+
# getAccountSettingsListResult - Docusign::AccountSettingsList
|
2863
|
+
class GetAccountSettingsListResponse
|
2864
|
+
attr_accessor :getAccountSettingsListResult
|
2865
|
+
|
2866
|
+
def initialize(getAccountSettingsListResult = nil)
|
2867
|
+
@getAccountSettingsListResult = getAccountSettingsListResult
|
2868
|
+
end
|
2869
|
+
end
|
2870
|
+
|
2871
|
+
# {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExport
|
2872
|
+
# envelopeId - SOAP::SOAPString
|
2873
|
+
# transactionId - SOAP::SOAPString
|
2874
|
+
# checkSumHash - SOAP::SOAPBase64
|
2875
|
+
class AcknowledgeAuthoritativeCopyExport
|
2876
|
+
attr_accessor :envelopeId
|
2877
|
+
attr_accessor :transactionId
|
2878
|
+
attr_accessor :checkSumHash
|
2879
|
+
|
2880
|
+
def initialize(envelopeId = nil, transactionId = nil, checkSumHash = nil)
|
2881
|
+
@envelopeId = envelopeId
|
2882
|
+
@transactionId = transactionId
|
2883
|
+
@checkSumHash = checkSumHash
|
2884
|
+
end
|
2885
|
+
end
|
2886
|
+
|
2887
|
+
# {http://www.docusign.net/API/3.0}AcknowledgeAuthoritativeCopyExportResponse
|
2888
|
+
# acknowledgeAuthoritativeCopyExportResult - Docusign::AuthoritativeCopyExportStatus
|
2889
|
+
class AcknowledgeAuthoritativeCopyExportResponse
|
2890
|
+
attr_accessor :acknowledgeAuthoritativeCopyExportResult
|
2891
|
+
|
2892
|
+
def initialize(acknowledgeAuthoritativeCopyExportResult = nil)
|
2893
|
+
@acknowledgeAuthoritativeCopyExportResult = acknowledgeAuthoritativeCopyExportResult
|
2894
|
+
end
|
2895
|
+
end
|
2896
|
+
|
2897
|
+
# {http://www.docusign.net/API/3.0}ExportAuthoritativeCopy
|
2898
|
+
# envelopeId - SOAP::SOAPString
|
2899
|
+
class ExportAuthoritativeCopy
|
2900
|
+
attr_accessor :envelopeId
|
2901
|
+
|
2902
|
+
def initialize(envelopeId = nil)
|
2903
|
+
@envelopeId = envelopeId
|
2904
|
+
end
|
2905
|
+
end
|
2906
|
+
|
2907
|
+
# {http://www.docusign.net/API/3.0}ExportAuthoritativeCopyResponse
|
2908
|
+
# exportAuthoritativeCopyResult - Docusign::AuthoritativeCopyExportDocuments
|
2909
|
+
class ExportAuthoritativeCopyResponse
|
2910
|
+
attr_accessor :exportAuthoritativeCopyResult
|
2911
|
+
|
2912
|
+
def initialize(exportAuthoritativeCopyResult = nil)
|
2913
|
+
@exportAuthoritativeCopyResult = exportAuthoritativeCopyResult
|
2914
|
+
end
|
2915
|
+
end
|
2916
|
+
|
2917
|
+
# {http://www.docusign.net/API/3.0}EnvelopeAuditEvents
|
2918
|
+
# envelopeId - SOAP::SOAPString
|
2919
|
+
class EnvelopeAuditEvents
|
2920
|
+
attr_accessor :envelopeId
|
2921
|
+
|
2922
|
+
def initialize(envelopeId = nil)
|
2923
|
+
@envelopeId = envelopeId
|
2924
|
+
end
|
2925
|
+
end
|
2926
|
+
|
2927
|
+
# {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResponse
|
2928
|
+
# envelopeAuditEventsResult - Docusign::EnvelopeAuditEventsResponse::EnvelopeAuditEventsResult
|
2929
|
+
class EnvelopeAuditEventsResponse
|
2930
|
+
|
2931
|
+
# inner class for member: EnvelopeAuditEventsResult
|
2932
|
+
# {http://www.docusign.net/API/3.0}EnvelopeAuditEventsResult
|
2933
|
+
class EnvelopeAuditEventsResult
|
2934
|
+
attr_reader :__xmlele_any
|
2935
|
+
|
2936
|
+
def set_any(elements)
|
2937
|
+
@__xmlele_any = elements
|
2938
|
+
end
|
2939
|
+
|
2940
|
+
def initialize
|
2941
|
+
@__xmlele_any = nil
|
2942
|
+
end
|
2943
|
+
end
|
2944
|
+
|
2945
|
+
attr_accessor :envelopeAuditEventsResult
|
2946
|
+
|
2947
|
+
def initialize(envelopeAuditEventsResult = nil)
|
2948
|
+
@envelopeAuditEventsResult = envelopeAuditEventsResult
|
2949
|
+
end
|
2950
|
+
end
|
2951
|
+
|
2952
|
+
# {http://www.docusign.net/API/3.0}Ping
|
2953
|
+
class Ping
|
2954
|
+
def initialize
|
2955
|
+
end
|
2956
|
+
end
|
2957
|
+
|
2958
|
+
# {http://www.docusign.net/API/3.0}PingResponse
|
2959
|
+
# pingResult - SOAP::SOAPBoolean
|
2960
|
+
class PingResponse
|
2961
|
+
attr_accessor :pingResult
|
2962
|
+
|
2963
|
+
def initialize(pingResult = nil)
|
2964
|
+
@pingResult = pingResult
|
2965
|
+
end
|
2966
|
+
end
|
2967
|
+
|
2968
|
+
# {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplates
|
2969
|
+
# templateReferences - Docusign::ArrayOfTemplateReference
|
2970
|
+
# recipients - Docusign::ArrayOfRecipient1
|
2971
|
+
# envelopeInformation - Docusign::EnvelopeInformation
|
2972
|
+
# activateEnvelope - SOAP::SOAPBoolean
|
2973
|
+
class CreateEnvelopeFromTemplates
|
2974
|
+
attr_accessor :templateReferences
|
2975
|
+
attr_accessor :recipients
|
2976
|
+
attr_accessor :envelopeInformation
|
2977
|
+
attr_accessor :activateEnvelope
|
2978
|
+
|
2979
|
+
def initialize(templateReferences = nil, recipients = nil, envelopeInformation = nil, activateEnvelope = nil)
|
2980
|
+
@templateReferences = templateReferences
|
2981
|
+
@recipients = recipients
|
2982
|
+
@envelopeInformation = envelopeInformation
|
2983
|
+
@activateEnvelope = activateEnvelope
|
2984
|
+
end
|
2985
|
+
end
|
2986
|
+
|
2987
|
+
# {http://www.docusign.net/API/3.0}CreateEnvelopeFromTemplatesResponse
|
2988
|
+
# createEnvelopeFromTemplatesResult - Docusign::EnvelopeStatus
|
2989
|
+
class CreateEnvelopeFromTemplatesResponse
|
2990
|
+
attr_accessor :createEnvelopeFromTemplatesResult
|
2991
|
+
|
2992
|
+
def initialize(createEnvelopeFromTemplatesResult = nil)
|
2993
|
+
@createEnvelopeFromTemplatesResult = createEnvelopeFromTemplatesResult
|
2994
|
+
end
|
2995
|
+
end
|
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
|
+
|
3023
|
+
# {http://www.docusign.net/API/3.0}GetStatusInDocuSignConnectFormat
|
3024
|
+
# envelopeID - SOAP::SOAPString
|
3025
|
+
class GetStatusInDocuSignConnectFormat
|
3026
|
+
attr_accessor :envelopeID
|
3027
|
+
|
3028
|
+
def initialize(envelopeID = nil)
|
3029
|
+
@envelopeID = envelopeID
|
3030
|
+
end
|
3031
|
+
end
|
3032
|
+
|
3033
|
+
# {http://www.docusign.net/API/3.0}GetStatusInDocuSignConnectFormatResponse
|
3034
|
+
# getStatusInDocuSignConnectFormatResult - Docusign::DocuSignEnvelopeInformation
|
3035
|
+
class GetStatusInDocuSignConnectFormatResponse
|
3036
|
+
attr_accessor :getStatusInDocuSignConnectFormatResult
|
3037
|
+
|
3038
|
+
def initialize(getStatusInDocuSignConnectFormatResult = nil)
|
3039
|
+
@getStatusInDocuSignConnectFormatResult = getStatusInDocuSignConnectFormatResult
|
3040
|
+
end
|
3041
|
+
end
|
3042
|
+
|
3043
|
+
# {http://www.docusign.net/API/3.0}PurgeDocuments
|
3044
|
+
# envelopeID - SOAP::SOAPString
|
3045
|
+
class PurgeDocuments
|
3046
|
+
attr_accessor :envelopeID
|
3047
|
+
|
3048
|
+
def initialize(envelopeID = nil)
|
3049
|
+
@envelopeID = envelopeID
|
3050
|
+
end
|
3051
|
+
end
|
3052
|
+
|
3053
|
+
# {http://www.docusign.net/API/3.0}PurgeDocumentsResponse
|
3054
|
+
# purgeDocumentsResult - Docusign::PurgeDocumentStatus
|
3055
|
+
class PurgeDocumentsResponse
|
3056
|
+
attr_accessor :purgeDocumentsResult
|
3057
|
+
|
3058
|
+
def initialize(purgeDocumentsResult = nil)
|
3059
|
+
@purgeDocumentsResult = purgeDocumentsResult
|
3060
|
+
end
|
3061
|
+
end
|
3062
|
+
|
3063
|
+
# {http://www.docusign.net/API/3.0}SaveTemplate
|
3064
|
+
# envelopeTemplate - Docusign::EnvelopeTemplate
|
3065
|
+
class SaveTemplate
|
3066
|
+
attr_accessor :envelopeTemplate
|
3067
|
+
|
3068
|
+
def initialize(envelopeTemplate = nil)
|
3069
|
+
@envelopeTemplate = envelopeTemplate
|
3070
|
+
end
|
3071
|
+
end
|
3072
|
+
|
3073
|
+
# {http://www.docusign.net/API/3.0}SaveTemplateResponse
|
3074
|
+
# saveTemplateResult - Docusign::SaveTemplateResult
|
3075
|
+
class SaveTemplateResponse
|
3076
|
+
attr_accessor :saveTemplateResult
|
3077
|
+
|
3078
|
+
def initialize(saveTemplateResult = nil)
|
3079
|
+
@saveTemplateResult = saveTemplateResult
|
3080
|
+
end
|
3081
|
+
end
|
3082
|
+
|
3083
|
+
# {http://www.docusign.net/API/3.0}UploadTemplate
|
3084
|
+
# templateXML - SOAP::SOAPString
|
3085
|
+
# accountID - SOAP::SOAPString
|
3086
|
+
# shared - SOAP::SOAPBoolean
|
3087
|
+
class UploadTemplate
|
3088
|
+
attr_accessor :templateXML
|
3089
|
+
attr_accessor :accountID
|
3090
|
+
attr_accessor :shared
|
3091
|
+
|
3092
|
+
def initialize(templateXML = nil, accountID = nil, shared = nil)
|
3093
|
+
@templateXML = templateXML
|
3094
|
+
@accountID = accountID
|
3095
|
+
@shared = shared
|
3096
|
+
end
|
3097
|
+
end
|
3098
|
+
|
3099
|
+
# {http://www.docusign.net/API/3.0}UploadTemplateResponse
|
3100
|
+
# uploadTemplateResult - Docusign::SaveTemplateResult
|
3101
|
+
class UploadTemplateResponse
|
3102
|
+
attr_accessor :uploadTemplateResult
|
3103
|
+
|
3104
|
+
def initialize(uploadTemplateResult = nil)
|
3105
|
+
@uploadTemplateResult = uploadTemplateResult
|
3106
|
+
end
|
3107
|
+
end
|
3108
|
+
|
3109
|
+
# {http://www.docusign.net/API/3.0}RequestTemplates
|
3110
|
+
# accountID - SOAP::SOAPString
|
3111
|
+
# includeAdvancedTemplates - SOAP::SOAPBoolean
|
3112
|
+
class RequestTemplates
|
3113
|
+
attr_accessor :accountID
|
3114
|
+
attr_accessor :includeAdvancedTemplates
|
3115
|
+
|
3116
|
+
def initialize(accountID = nil, includeAdvancedTemplates = nil)
|
3117
|
+
@accountID = accountID
|
3118
|
+
@includeAdvancedTemplates = includeAdvancedTemplates
|
3119
|
+
end
|
3120
|
+
end
|
3121
|
+
|
3122
|
+
# {http://www.docusign.net/API/3.0}RequestTemplatesResponse
|
3123
|
+
# requestTemplatesResult - Docusign::EnvelopeTemplates
|
3124
|
+
class RequestTemplatesResponse
|
3125
|
+
attr_accessor :requestTemplatesResult
|
3126
|
+
|
3127
|
+
def initialize(requestTemplatesResult = nil)
|
3128
|
+
@requestTemplatesResult = requestTemplatesResult
|
3129
|
+
end
|
3130
|
+
end
|
3131
|
+
|
3132
|
+
# {http://www.docusign.net/API/3.0}RequestTemplate
|
3133
|
+
# templateID - SOAP::SOAPString
|
3134
|
+
# includeDocumentBytes - SOAP::SOAPBoolean
|
3135
|
+
class RequestTemplate
|
3136
|
+
attr_accessor :templateID
|
3137
|
+
attr_accessor :includeDocumentBytes
|
3138
|
+
|
3139
|
+
def initialize(templateID = nil, includeDocumentBytes = nil)
|
3140
|
+
@templateID = templateID
|
3141
|
+
@includeDocumentBytes = includeDocumentBytes
|
3142
|
+
end
|
3143
|
+
end
|
3144
|
+
|
3145
|
+
# {http://www.docusign.net/API/3.0}RequestTemplateResponse
|
3146
|
+
# requestTemplateResult - Docusign::EnvelopeTemplate
|
3147
|
+
class RequestTemplateResponse
|
3148
|
+
attr_accessor :requestTemplateResult
|
3149
|
+
|
3150
|
+
def initialize(requestTemplateResult = nil)
|
3151
|
+
@requestTemplateResult = requestTemplateResult
|
3152
|
+
end
|
3153
|
+
end
|
3154
|
+
|
3155
|
+
# {http://www.docusign.net/API/3.0}GetAuthenticationToken
|
3156
|
+
# goToEnvelopeID - SOAP::SOAPString
|
3157
|
+
class GetAuthenticationToken
|
3158
|
+
attr_accessor :goToEnvelopeID
|
3159
|
+
|
3160
|
+
def initialize(goToEnvelopeID = nil)
|
3161
|
+
@goToEnvelopeID = goToEnvelopeID
|
3162
|
+
end
|
3163
|
+
end
|
3164
|
+
|
3165
|
+
# {http://www.docusign.net/API/3.0}GetAuthenticationTokenResponse
|
3166
|
+
# getAuthenticationTokenResult - SOAP::SOAPString
|
3167
|
+
class GetAuthenticationTokenResponse
|
3168
|
+
attr_accessor :getAuthenticationTokenResult
|
3169
|
+
|
3170
|
+
def initialize(getAuthenticationTokenResult = nil)
|
3171
|
+
@getAuthenticationTokenResult = getAuthenticationTokenResult
|
3172
|
+
end
|
3173
|
+
end
|
3174
|
+
|
3175
|
+
# {http://www.docusign.net/API/3.0}GetAddressBookItems
|
3176
|
+
# accountID - SOAP::SOAPString
|
3177
|
+
class GetAddressBookItems
|
3178
|
+
attr_accessor :accountID
|
3179
|
+
|
3180
|
+
def initialize(accountID = nil)
|
3181
|
+
@accountID = accountID
|
3182
|
+
end
|
3183
|
+
end
|
3184
|
+
|
3185
|
+
# {http://www.docusign.net/API/3.0}GetAddressBookItemsResponse
|
3186
|
+
# getAddressBookItemsResult - Docusign::ArrayOfAddressBookItem
|
3187
|
+
class GetAddressBookItemsResponse
|
3188
|
+
attr_accessor :getAddressBookItemsResult
|
3189
|
+
|
3190
|
+
def initialize(getAddressBookItemsResult = nil)
|
3191
|
+
@getAddressBookItemsResult = getAddressBookItemsResult
|
3192
|
+
end
|
3193
|
+
end
|
3194
|
+
|
3195
|
+
# {http://www.docusign.net/API/3.0}UpdateAddressBookItems
|
3196
|
+
# addressBookItems - Docusign::ArrayOfAddressBookItem
|
3197
|
+
# returnAddressBook - SOAP::SOAPBoolean
|
3198
|
+
class UpdateAddressBookItems
|
3199
|
+
attr_accessor :addressBookItems
|
3200
|
+
attr_accessor :returnAddressBook
|
3201
|
+
|
3202
|
+
def initialize(addressBookItems = nil, returnAddressBook = nil)
|
3203
|
+
@addressBookItems = addressBookItems
|
3204
|
+
@returnAddressBook = returnAddressBook
|
3205
|
+
end
|
3206
|
+
end
|
3207
|
+
|
3208
|
+
# {http://www.docusign.net/API/3.0}UpdateAddressBookItemsResponse
|
3209
|
+
# updateAddressBookItemsResult - Docusign::UpdateAddressBookResult
|
3210
|
+
class UpdateAddressBookItemsResponse
|
3211
|
+
attr_accessor :updateAddressBookItemsResult
|
3212
|
+
|
3213
|
+
def initialize(updateAddressBookItemsResult = nil)
|
3214
|
+
@updateAddressBookItemsResult = updateAddressBookItemsResult
|
3215
|
+
end
|
3216
|
+
end
|
3217
|
+
|
3218
|
+
# {http://www.docusign.net/API/3.0}RemoveAddressBookItems
|
3219
|
+
# addressBookRemoveItems - Docusign::ArrayOfAddressBookRemoveItem
|
3220
|
+
# returnAddressBook - SOAP::SOAPBoolean
|
3221
|
+
class RemoveAddressBookItems
|
3222
|
+
attr_accessor :addressBookRemoveItems
|
3223
|
+
attr_accessor :returnAddressBook
|
3224
|
+
|
3225
|
+
def initialize(addressBookRemoveItems = nil, returnAddressBook = nil)
|
3226
|
+
@addressBookRemoveItems = addressBookRemoveItems
|
3227
|
+
@returnAddressBook = returnAddressBook
|
3228
|
+
end
|
3229
|
+
end
|
3230
|
+
|
3231
|
+
# {http://www.docusign.net/API/3.0}RemoveAddressBookItemsResponse
|
3232
|
+
# removeAddressBookItemsResult - Docusign::UpdateAddressBookResult
|
3233
|
+
class RemoveAddressBookItemsResponse
|
3234
|
+
attr_accessor :removeAddressBookItemsResult
|
3235
|
+
|
3236
|
+
def initialize(removeAddressBookItemsResult = nil)
|
3237
|
+
@removeAddressBookItemsResult = removeAddressBookItemsResult
|
3238
|
+
end
|
3239
|
+
end
|
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
|
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
|
3265
|
+
end
|
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
|