docusign 0.5.0

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