docusign_esign 3.20.0 → 3.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/lib/docusign_esign/api/connect_api.rb +51 -0
  4. data/lib/docusign_esign/api/envelopes_api.rb +11 -64
  5. data/lib/docusign_esign/api/folders_api.rb +8 -0
  6. data/lib/docusign_esign/api/templates_api.rb +0 -73
  7. data/lib/docusign_esign/client/api_client.rb +1 -1
  8. data/lib/docusign_esign/models/account_settings_information.rb +127 -13
  9. data/lib/docusign_esign/models/bulk_sending_copy.rb +13 -1
  10. data/lib/docusign_esign/models/bulk_sending_copy_recipient.rb +10 -1
  11. data/lib/docusign_esign/models/bulksending_copy_doc_gen_form_field.rb +194 -0
  12. data/lib/docusign_esign/models/connect_custom_configuration.rb +11 -1
  13. data/lib/docusign_esign/models/contact.rb +10 -1
  14. data/lib/docusign_esign/models/delegation_info.rb +12 -12
  15. data/lib/docusign_esign/models/envelope.rb +11 -1
  16. data/lib/docusign_esign/models/envelope_definition.rb +11 -1
  17. data/lib/docusign_esign/models/envelope_template.rb +11 -1
  18. data/lib/docusign_esign/models/event_notification.rb +11 -1
  19. data/lib/docusign_esign/models/id_evidence_view_link.rb +3 -3
  20. data/lib/docusign_esign/models/jurisdiction_summary.rb +214 -0
  21. data/lib/docusign_esign/models/locale_policy_tab.rb +14 -4
  22. data/lib/docusign_esign/models/notary_contact_details.rb +196 -0
  23. data/lib/docusign_esign/models/numerical.rb +1279 -0
  24. data/lib/docusign_esign/models/recipient_form_data.rb +12 -12
  25. data/lib/docusign_esign/models/recipient_identity_verification.rb +14 -4
  26. data/lib/docusign_esign/models/tab_metadata.rb +11 -1
  27. data/lib/docusign_esign/models/tabs.rb +13 -1
  28. data/lib/docusign_esign/models/template_role.rb +11 -1
  29. data/lib/docusign_esign/models/template_tabs.rb +13 -1
  30. data/lib/docusign_esign/models/user_account_management_granular_information.rb +20 -1
  31. data/lib/docusign_esign/version.rb +1 -1
  32. data/lib/docusign_esign.rb +4 -4
  33. metadata +6 -2
@@ -0,0 +1,194 @@
1
+ =begin
2
+ #DocuSign REST API
3
+
4
+ #The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
5
+
6
+ OpenAPI spec version: v2.1
7
+ Contact: devcenter@docusign.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ =end
11
+
12
+ require 'date'
13
+
14
+ module DocuSign_eSign
15
+ class BulksendingCopyDocGenFormField
16
+ #
17
+ attr_accessor :label
18
+
19
+ # Specifies the value of the tab.
20
+ attr_accessor :value
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'label' => :'label',
26
+ :'value' => :'value'
27
+ }
28
+ end
29
+
30
+ # Attribute type mapping.
31
+ def self.swagger_types
32
+ {
33
+ :'label' => :'String',
34
+ :'value' => :'String'
35
+ }
36
+ end
37
+
38
+ # Initializes the object
39
+ # @param [Hash] attributes Model attributes in the form of hash
40
+ def initialize(attributes = {})
41
+ return unless attributes.is_a?(Hash)
42
+
43
+ # convert string to symbol for hash key
44
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
45
+
46
+ if attributes.has_key?(:'label')
47
+ self.label = attributes[:'label']
48
+ end
49
+
50
+ if attributes.has_key?(:'value')
51
+ self.value = attributes[:'value']
52
+ end
53
+ end
54
+
55
+ # Show invalid properties with the reasons. Usually used together with valid?
56
+ # @return Array for valid properties with the reasons
57
+ def list_invalid_properties
58
+ invalid_properties = Array.new
59
+ invalid_properties
60
+ end
61
+
62
+ # Check to see if the all the properties in the model are valid
63
+ # @return true if the model is valid
64
+ def valid?
65
+ true
66
+ end
67
+
68
+ # Checks equality by comparing each attribute.
69
+ # @param [Object] Object to be compared
70
+ def ==(o)
71
+ return true if self.equal?(o)
72
+ self.class == o.class &&
73
+ label == o.label &&
74
+ value == o.value
75
+ end
76
+
77
+ # @see the `==` method
78
+ # @param [Object] Object to be compared
79
+ def eql?(o)
80
+ self == o
81
+ end
82
+
83
+ # Calculates hash code according to all attributes.
84
+ # @return [Fixnum] Hash code
85
+ def hash
86
+ [label, value].hash
87
+ end
88
+
89
+ # Builds the object from hash
90
+ # @param [Hash] attributes Model attributes in the form of hash
91
+ # @return [Object] Returns the model itself
92
+ def build_from_hash(attributes)
93
+ return nil unless attributes.is_a?(Hash)
94
+ self.class.swagger_types.each_pair do |key, type|
95
+ if type =~ /\AArray<(.*)>/i
96
+ # check to ensure the input is an array given that the attribute
97
+ # is documented as an array but the input is not
98
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
99
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
100
+ end
101
+ elsif !attributes[self.class.attribute_map[key]].nil?
102
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
103
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
104
+ end
105
+
106
+ self
107
+ end
108
+
109
+ # Deserializes the data based on type
110
+ # @param string type Data type
111
+ # @param string value Value to be deserialized
112
+ # @return [Object] Deserialized data
113
+ def _deserialize(type, value)
114
+ case type.to_sym
115
+ when :DateTime
116
+ DateTime.parse(value)
117
+ when :Date
118
+ Date.parse(value)
119
+ when :String
120
+ value.to_s
121
+ when :Integer
122
+ value.to_i
123
+ when :Float
124
+ value.to_f
125
+ when :BOOLEAN
126
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
127
+ true
128
+ else
129
+ false
130
+ end
131
+ when :Object
132
+ # generic object (usually a Hash), return directly
133
+ value
134
+ when /\AArray<(?<inner_type>.+)>\z/
135
+ inner_type = Regexp.last_match[:inner_type]
136
+ value.map { |v| _deserialize(inner_type, v) }
137
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
138
+ k_type = Regexp.last_match[:k_type]
139
+ v_type = Regexp.last_match[:v_type]
140
+ {}.tap do |hash|
141
+ value.each do |k, v|
142
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
143
+ end
144
+ end
145
+ else # model
146
+ temp_model = DocuSign_eSign.const_get(type).new
147
+ temp_model.build_from_hash(value)
148
+ end
149
+ end
150
+
151
+ # Returns the string representation of the object
152
+ # @return [String] String presentation of the object
153
+ def to_s
154
+ to_hash.to_s
155
+ end
156
+
157
+ # to_body is an alias to to_hash (backward compatibility)
158
+ # @return [Hash] Returns the object in the form of hash
159
+ def to_body
160
+ to_hash
161
+ end
162
+
163
+ # Returns the object in the form of hash
164
+ # @return [Hash] Returns the object in the form of hash
165
+ def to_hash
166
+ hash = {}
167
+ self.class.attribute_map.each_pair do |attr, param|
168
+ value = self.send(attr)
169
+ next if value.nil?
170
+ hash[param] = _to_hash(value)
171
+ end
172
+ hash
173
+ end
174
+
175
+ # Outputs non-array value in the form of hash
176
+ # For object, use to_hash. Otherwise, just return the value
177
+ # @param [Object] value Any valid value
178
+ # @return [Hash] Returns the value in the form of hash
179
+ def _to_hash(value)
180
+ if value.is_a?(Array)
181
+ value.compact.map { |v| _to_hash(v) }
182
+ elsif value.is_a?(Hash)
183
+ {}.tap do |hash|
184
+ value.each { |k, v| hash[k] = _to_hash(v) }
185
+ end
186
+ elsif value.respond_to? :to_hash
187
+ value.to_hash
188
+ else
189
+ value
190
+ end
191
+ end
192
+
193
+ end
194
+ end
@@ -86,6 +86,9 @@ module DocuSign_eSign
86
86
  # When set to **true**, Connect will include the envelope time zone information.
87
87
  attr_accessor :include_time_zone_information
88
88
 
89
+ #
90
+ attr_accessor :integrator_managed
91
+
89
92
  # The name of the Connect configuration. The name helps identify the configuration in the list.
90
93
  attr_accessor :name
91
94
 
@@ -167,6 +170,7 @@ module DocuSign_eSign
167
170
  :'include_o_auth' => :'includeOAuth',
168
171
  :'include_sender_accountas_custom_field' => :'includeSenderAccountasCustomField',
169
172
  :'include_time_zone_information' => :'includeTimeZoneInformation',
173
+ :'integrator_managed' => :'integratorManaged',
170
174
  :'name' => :'name',
171
175
  :'password' => :'password',
172
176
  :'recipient_events' => :'recipientEvents',
@@ -215,6 +219,7 @@ module DocuSign_eSign
215
219
  :'include_o_auth' => :'String',
216
220
  :'include_sender_accountas_custom_field' => :'String',
217
221
  :'include_time_zone_information' => :'String',
222
+ :'integrator_managed' => :'String',
218
223
  :'name' => :'String',
219
224
  :'password' => :'String',
220
225
  :'recipient_events' => :'Array<String>',
@@ -346,6 +351,10 @@ module DocuSign_eSign
346
351
  self.include_time_zone_information = attributes[:'includeTimeZoneInformation']
347
352
  end
348
353
 
354
+ if attributes.has_key?(:'integratorManaged')
355
+ self.integrator_managed = attributes[:'integratorManaged']
356
+ end
357
+
349
358
  if attributes.has_key?(:'name')
350
359
  self.name = attributes[:'name']
351
360
  end
@@ -469,6 +478,7 @@ module DocuSign_eSign
469
478
  include_o_auth == o.include_o_auth &&
470
479
  include_sender_accountas_custom_field == o.include_sender_accountas_custom_field &&
471
480
  include_time_zone_information == o.include_time_zone_information &&
481
+ integrator_managed == o.integrator_managed &&
472
482
  name == o.name &&
473
483
  password == o.password &&
474
484
  recipient_events == o.recipient_events &&
@@ -498,7 +508,7 @@ module DocuSign_eSign
498
508
  # Calculates hash code according to all attributes.
499
509
  # @return [Fixnum] Hash code
500
510
  def hash
501
- [allow_envelope_publish, allow_salesforce_publish, all_users, all_users_except, configuration_type, connect_id, delivery_mode, disabled_by, enable_log, envelope_events, event_data, events, external_folder_id, external_folder_label, group_ids, include_certificate_of_completion, include_cert_soap_header, include_document_fields, include_documents, include_envelope_void_reason, include_hmac, include_o_auth, include_sender_accountas_custom_field, include_time_zone_information, name, password, recipient_events, require_mutual_tls, requires_acknowledgement, salesforce_api_version, salesforce_authcode, salesforce_call_back_url, salesforce_documents_as_content_files, sender_override, sender_selectable_items, sf_objects, sign_message_with_x509_certificate, soap_namespace, url_to_publish_to, user_ids, user_name, use_soap_interface].hash
511
+ [allow_envelope_publish, allow_salesforce_publish, all_users, all_users_except, configuration_type, connect_id, delivery_mode, disabled_by, enable_log, envelope_events, event_data, events, external_folder_id, external_folder_label, group_ids, include_certificate_of_completion, include_cert_soap_header, include_document_fields, include_documents, include_envelope_void_reason, include_hmac, include_o_auth, include_sender_accountas_custom_field, include_time_zone_information, integrator_managed, name, password, recipient_events, require_mutual_tls, requires_acknowledgement, salesforce_api_version, salesforce_authcode, salesforce_call_back_url, salesforce_documents_as_content_files, sender_override, sender_selectable_items, sf_objects, sign_message_with_x509_certificate, soap_namespace, url_to_publish_to, user_ids, user_name, use_soap_interface].hash
502
512
  end
503
513
 
504
514
  # Builds the object from hash
@@ -40,6 +40,8 @@ module DocuSign_eSign
40
40
  #
41
41
  attr_accessor :name
42
42
 
43
+ attr_accessor :notary_contact_details
44
+
43
45
  #
44
46
  attr_accessor :organization
45
47
 
@@ -67,6 +69,7 @@ module DocuSign_eSign
67
69
  :'error_details' => :'errorDetails',
68
70
  :'is_owner' => :'isOwner',
69
71
  :'name' => :'name',
72
+ :'notary_contact_details' => :'notaryContactDetails',
70
73
  :'organization' => :'organization',
71
74
  :'room_contact_type' => :'roomContactType',
72
75
  :'shared' => :'shared',
@@ -87,6 +90,7 @@ module DocuSign_eSign
87
90
  :'error_details' => :'ErrorDetails',
88
91
  :'is_owner' => :'BOOLEAN',
89
92
  :'name' => :'String',
93
+ :'notary_contact_details' => :'NotaryContactDetails',
90
94
  :'organization' => :'String',
91
95
  :'room_contact_type' => :'String',
92
96
  :'shared' => :'String',
@@ -143,6 +147,10 @@ module DocuSign_eSign
143
147
  self.name = attributes[:'name']
144
148
  end
145
149
 
150
+ if attributes.has_key?(:'notaryContactDetails')
151
+ self.notary_contact_details = attributes[:'notaryContactDetails']
152
+ end
153
+
146
154
  if attributes.has_key?(:'organization')
147
155
  self.organization = attributes[:'organization']
148
156
  end
@@ -191,6 +199,7 @@ module DocuSign_eSign
191
199
  error_details == o.error_details &&
192
200
  is_owner == o.is_owner &&
193
201
  name == o.name &&
202
+ notary_contact_details == o.notary_contact_details &&
194
203
  organization == o.organization &&
195
204
  room_contact_type == o.room_contact_type &&
196
205
  shared == o.shared &&
@@ -207,7 +216,7 @@ module DocuSign_eSign
207
216
  # Calculates hash code according to all attributes.
208
217
  # @return [Fixnum] Hash code
209
218
  def hash
210
- [cloud_provider, cloud_provider_container_id, contact_id, contact_phone_numbers, contact_uri, emails, error_details, is_owner, name, organization, room_contact_type, shared, signing_group, signing_group_name].hash
219
+ [cloud_provider, cloud_provider_container_id, contact_id, contact_phone_numbers, contact_uri, emails, error_details, is_owner, name, notary_contact_details, organization, room_contact_type, shared, signing_group, signing_group_name].hash
211
220
  end
212
221
 
213
222
  # Builds the object from hash
@@ -28,10 +28,10 @@ module DocuSign_eSign
28
28
  # Attribute mapping from ruby-style variable name to JSON key.
29
29
  def self.attribute_map
30
30
  {
31
- :'email' => :'Email',
32
- :'name' => :'Name',
33
- :'user_authorization_id' => :'UserAuthorizationId',
34
- :'user_id' => :'UserId'
31
+ :'email' => :'email',
32
+ :'name' => :'name',
33
+ :'user_authorization_id' => :'userAuthorizationId',
34
+ :'user_id' => :'userId'
35
35
  }
36
36
  end
37
37
 
@@ -53,20 +53,20 @@ module DocuSign_eSign
53
53
  # convert string to symbol for hash key
54
54
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
55
55
 
56
- if attributes.has_key?(:'Email')
57
- self.email = attributes[:'Email']
56
+ if attributes.has_key?(:'email')
57
+ self.email = attributes[:'email']
58
58
  end
59
59
 
60
- if attributes.has_key?(:'Name')
61
- self.name = attributes[:'Name']
60
+ if attributes.has_key?(:'name')
61
+ self.name = attributes[:'name']
62
62
  end
63
63
 
64
- if attributes.has_key?(:'UserAuthorizationId')
65
- self.user_authorization_id = attributes[:'UserAuthorizationId']
64
+ if attributes.has_key?(:'userAuthorizationId')
65
+ self.user_authorization_id = attributes[:'userAuthorizationId']
66
66
  end
67
67
 
68
- if attributes.has_key?(:'UserId')
69
- self.user_id = attributes[:'UserId']
68
+ if attributes.has_key?(:'userId')
69
+ self.user_id = attributes[:'userId']
70
70
  end
71
71
  end
72
72
 
@@ -52,6 +52,9 @@ module DocuSign_eSign
52
52
  #
53
53
  attr_accessor :brand_lock
54
54
 
55
+ #
56
+ attr_accessor :burn_default_tab_data
57
+
55
58
  # Retrieves a URI for an endpoint that allows you to easily retrieve certificate information.
56
59
  attr_accessor :certificate_uri
57
60
 
@@ -263,6 +266,7 @@ module DocuSign_eSign
263
266
  :'auto_navigation' => :'autoNavigation',
264
267
  :'brand_id' => :'brandId',
265
268
  :'brand_lock' => :'brandLock',
269
+ :'burn_default_tab_data' => :'burnDefaultTabData',
266
270
  :'certificate_uri' => :'certificateUri',
267
271
  :'completed_date_time' => :'completedDateTime',
268
272
  :'copy_recipient_data' => :'copyRecipientData',
@@ -347,6 +351,7 @@ module DocuSign_eSign
347
351
  :'auto_navigation' => :'String',
348
352
  :'brand_id' => :'String',
349
353
  :'brand_lock' => :'String',
354
+ :'burn_default_tab_data' => :'String',
350
355
  :'certificate_uri' => :'String',
351
356
  :'completed_date_time' => :'String',
352
357
  :'copy_recipient_data' => :'String',
@@ -475,6 +480,10 @@ module DocuSign_eSign
475
480
  self.brand_lock = attributes[:'brandLock']
476
481
  end
477
482
 
483
+ if attributes.has_key?(:'burnDefaultTabData')
484
+ self.burn_default_tab_data = attributes[:'burnDefaultTabData']
485
+ end
486
+
478
487
  if attributes.has_key?(:'certificateUri')
479
488
  self.certificate_uri = attributes[:'certificateUri']
480
489
  end
@@ -773,6 +782,7 @@ module DocuSign_eSign
773
782
  auto_navigation == o.auto_navigation &&
774
783
  brand_id == o.brand_id &&
775
784
  brand_lock == o.brand_lock &&
785
+ burn_default_tab_data == o.burn_default_tab_data &&
776
786
  certificate_uri == o.certificate_uri &&
777
787
  completed_date_time == o.completed_date_time &&
778
788
  copy_recipient_data == o.copy_recipient_data &&
@@ -849,7 +859,7 @@ module DocuSign_eSign
849
859
  # Calculates hash code according to all attributes.
850
860
  # @return [Fixnum] Hash code
851
861
  def hash
852
- [access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_navigation, brand_id, brand_lock, certificate_uri, completed_date_time, copy_recipient_data, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, disable_responsive_document, document_base64, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_dynamic_envelope, is_signature_provider_envelope, last_modified_date_time, location, lock_information, message_lock, notification, notification_uri, power_form, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, templates_uri, transaction_id, use_disclosure, voided_date_time, voided_reason, workflow].hash
862
+ [access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_navigation, brand_id, brand_lock, burn_default_tab_data, certificate_uri, completed_date_time, copy_recipient_data, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, disable_responsive_document, document_base64, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_dynamic_envelope, is_signature_provider_envelope, last_modified_date_time, location, lock_information, message_lock, notification, notification_uri, power_form, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, templates_uri, transaction_id, use_disclosure, voided_date_time, voided_reason, workflow].hash
853
863
  end
854
864
 
855
865
  # Builds the object from hash
@@ -62,6 +62,9 @@ module DocuSign_eSign
62
62
  #
63
63
  attr_accessor :brand_lock
64
64
 
65
+ #
66
+ attr_accessor :burn_default_tab_data
67
+
65
68
  # Retrieves a URI for an endpoint that allows you to easily retrieve certificate information.
66
69
  attr_accessor :certificate_uri
67
70
 
@@ -300,6 +303,7 @@ module DocuSign_eSign
300
303
  :'auto_navigation' => :'autoNavigation',
301
304
  :'brand_id' => :'brandId',
302
305
  :'brand_lock' => :'brandLock',
306
+ :'burn_default_tab_data' => :'burnDefaultTabData',
303
307
  :'certificate_uri' => :'certificateUri',
304
308
  :'completed_date_time' => :'completedDateTime',
305
309
  :'composite_templates' => :'compositeTemplates',
@@ -395,6 +399,7 @@ module DocuSign_eSign
395
399
  :'auto_navigation' => :'String',
396
400
  :'brand_id' => :'String',
397
401
  :'brand_lock' => :'String',
402
+ :'burn_default_tab_data' => :'String',
398
403
  :'certificate_uri' => :'String',
399
404
  :'completed_date_time' => :'String',
400
405
  :'composite_templates' => :'Array<CompositeTemplate>',
@@ -545,6 +550,10 @@ module DocuSign_eSign
545
550
  self.brand_lock = attributes[:'brandLock']
546
551
  end
547
552
 
553
+ if attributes.has_key?(:'burnDefaultTabData')
554
+ self.burn_default_tab_data = attributes[:'burnDefaultTabData']
555
+ end
556
+
548
557
  if attributes.has_key?(:'certificateUri')
549
558
  self.certificate_uri = attributes[:'certificateUri']
550
559
  end
@@ -886,6 +895,7 @@ module DocuSign_eSign
886
895
  auto_navigation == o.auto_navigation &&
887
896
  brand_id == o.brand_id &&
888
897
  brand_lock == o.brand_lock &&
898
+ burn_default_tab_data == o.burn_default_tab_data &&
889
899
  certificate_uri == o.certificate_uri &&
890
900
  completed_date_time == o.completed_date_time &&
891
901
  composite_templates == o.composite_templates &&
@@ -970,7 +980,7 @@ module DocuSign_eSign
970
980
  # Calculates hash code according to all attributes.
971
981
  # @return [Fixnum] Hash code
972
982
  def hash
973
- [access_control_list_base64, accessibility, allow_comments, allow_markup, allow_reassign, allow_recipient_recursion, allow_view_history, any_signer, asynchronous, attachments, attachments_uri, authoritative_copy, authoritative_copy_default, auto_navigation, brand_id, brand_lock, certificate_uri, completed_date_time, composite_templates, copy_recipient_data, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, event_notification, event_notifications, expire_after, expire_date_time, expire_enabled, external_envelope_id, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_dynamic_envelope, is_signature_provider_envelope, last_modified_date_time, location, lock_information, message_lock, notification, notification_uri, password, power_form, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, recipient_view_request, sender, sent_date_time, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, template_roles, templates_uri, transaction_id, use_disclosure, voided_date_time, voided_reason, workflow].hash
983
+ [access_control_list_base64, accessibility, allow_comments, allow_markup, allow_reassign, allow_recipient_recursion, allow_view_history, any_signer, asynchronous, attachments, attachments_uri, authoritative_copy, authoritative_copy_default, auto_navigation, brand_id, brand_lock, burn_default_tab_data, certificate_uri, completed_date_time, composite_templates, copy_recipient_data, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, event_notification, event_notifications, expire_after, expire_date_time, expire_enabled, external_envelope_id, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_dynamic_envelope, is_signature_provider_envelope, last_modified_date_time, location, lock_information, message_lock, notification, notification_uri, password, power_form, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, recipient_view_request, sender, sent_date_time, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, template_roles, templates_uri, transaction_id, use_disclosure, voided_date_time, voided_reason, workflow].hash
974
984
  end
975
985
 
976
986
  # Builds the object from hash
@@ -58,6 +58,9 @@ module DocuSign_eSign
58
58
  #
59
59
  attr_accessor :brand_lock
60
60
 
61
+ #
62
+ attr_accessor :burn_default_tab_data
63
+
61
64
  # Retrieves a URI for an endpoint that allows you to easily retrieve certificate information.
62
65
  attr_accessor :certificate_uri
63
66
 
@@ -334,6 +337,7 @@ module DocuSign_eSign
334
337
  :'auto_navigation' => :'autoNavigation',
335
338
  :'brand_id' => :'brandId',
336
339
  :'brand_lock' => :'brandLock',
340
+ :'burn_default_tab_data' => :'burnDefaultTabData',
337
341
  :'certificate_uri' => :'certificateUri',
338
342
  :'completed_date_time' => :'completedDateTime',
339
343
  :'copy_recipient_data' => :'copyRecipientData',
@@ -441,6 +445,7 @@ module DocuSign_eSign
441
445
  :'auto_navigation' => :'String',
442
446
  :'brand_id' => :'String',
443
447
  :'brand_lock' => :'String',
448
+ :'burn_default_tab_data' => :'String',
444
449
  :'certificate_uri' => :'String',
445
450
  :'completed_date_time' => :'String',
446
451
  :'copy_recipient_data' => :'String',
@@ -598,6 +603,10 @@ module DocuSign_eSign
598
603
  self.brand_lock = attributes[:'brandLock']
599
604
  end
600
605
 
606
+ if attributes.has_key?(:'burnDefaultTabData')
607
+ self.burn_default_tab_data = attributes[:'burnDefaultTabData']
608
+ end
609
+
601
610
  if attributes.has_key?(:'certificateUri')
602
611
  self.certificate_uri = attributes[:'certificateUri']
603
612
  end
@@ -988,6 +997,7 @@ module DocuSign_eSign
988
997
  auto_navigation == o.auto_navigation &&
989
998
  brand_id == o.brand_id &&
990
999
  brand_lock == o.brand_lock &&
1000
+ burn_default_tab_data == o.burn_default_tab_data &&
991
1001
  certificate_uri == o.certificate_uri &&
992
1002
  completed_date_time == o.completed_date_time &&
993
1003
  copy_recipient_data == o.copy_recipient_data &&
@@ -1085,7 +1095,7 @@ module DocuSign_eSign
1085
1095
  # Calculates hash code according to all attributes.
1086
1096
  # @return [Fixnum] Hash code
1087
1097
  def hash
1088
- [access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_match, auto_match_specified_by_user, auto_navigation, brand_id, brand_lock, certificate_uri, completed_date_time, copy_recipient_data, created, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, description, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, favorited_by_me, folder_id, folder_ids, folder_name, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_doc_gen_template, is_dynamic_envelope, is_signature_provider_envelope, last_modified, last_modified_by, last_modified_date_time, last_used, location, lock_information, message_lock, name, new_password, notification, notification_uri, owner, page_count, password, password_protected, power_form, power_forms, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, shared, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, templates_uri, transaction_id, uri, use_disclosure, voided_date_time, voided_reason, workflow].hash
1098
+ [access_control_list_base64, allow_comments, allow_markup, allow_reassign, allow_view_history, any_signer, asynchronous, attachments_uri, authoritative_copy, authoritative_copy_default, auto_match, auto_match_specified_by_user, auto_navigation, brand_id, brand_lock, burn_default_tab_data, certificate_uri, completed_date_time, copy_recipient_data, created, created_date_time, custom_fields, custom_fields_uri, declined_date_time, deleted_date_time, delivered_date_time, description, disable_responsive_document, document_base64, documents, documents_combined_uri, documents_uri, email_blurb, email_settings, email_subject, enable_wet_sign, enforce_signer_visibility, envelope_attachments, envelope_custom_metadata, envelope_documents, envelope_id, envelope_id_stamping, envelope_location, envelope_metadata, envelope_uri, expire_after, expire_date_time, expire_enabled, external_envelope_id, favorited_by_me, folder_id, folder_ids, folder_name, folders, has_comments, has_form_data_changed, has_wav_file, holder, initial_sent_date_time, is21_cfr_part11, is_doc_gen_template, is_dynamic_envelope, is_signature_provider_envelope, last_modified, last_modified_by, last_modified_date_time, last_used, location, lock_information, message_lock, name, new_password, notification, notification_uri, owner, page_count, password, password_protected, power_form, power_forms, purge_completed_date, purge_request_date, purge_state, recipients, recipients_lock, recipients_uri, sender, sent_date_time, shared, signer_can_sign_on_mobile, signing_location, status, status_changed_date_time, status_date_time, template_id, templates_uri, transaction_id, uri, use_disclosure, voided_date_time, voided_reason, workflow].hash
1089
1099
  end
1090
1100
 
1091
1101
  # Builds the object from hash
@@ -53,6 +53,9 @@ module DocuSign_eSign
53
53
  # When set to **true**, the envelope time zone information is included in the message.
54
54
  attr_accessor :include_time_zone
55
55
 
56
+ #
57
+ attr_accessor :integrator_managed
58
+
56
59
  # When set to **true**, logging is turned on for envelope events on the Web Console Connect page.
57
60
  attr_accessor :logging_enabled
58
61
 
@@ -90,6 +93,7 @@ module DocuSign_eSign
90
93
  :'include_o_auth' => :'includeOAuth',
91
94
  :'include_sender_account_as_custom_field' => :'includeSenderAccountAsCustomField',
92
95
  :'include_time_zone' => :'includeTimeZone',
96
+ :'integrator_managed' => :'integratorManaged',
93
97
  :'logging_enabled' => :'loggingEnabled',
94
98
  :'recipient_events' => :'recipientEvents',
95
99
  :'require_acknowledgment' => :'requireAcknowledgment',
@@ -116,6 +120,7 @@ module DocuSign_eSign
116
120
  :'include_o_auth' => :'String',
117
121
  :'include_sender_account_as_custom_field' => :'String',
118
122
  :'include_time_zone' => :'String',
123
+ :'integrator_managed' => :'String',
119
124
  :'logging_enabled' => :'String',
120
125
  :'recipient_events' => :'Array<RecipientEvent>',
121
126
  :'require_acknowledgment' => :'String',
@@ -190,6 +195,10 @@ module DocuSign_eSign
190
195
  self.include_time_zone = attributes[:'includeTimeZone']
191
196
  end
192
197
 
198
+ if attributes.has_key?(:'integratorManaged')
199
+ self.integrator_managed = attributes[:'integratorManaged']
200
+ end
201
+
193
202
  if attributes.has_key?(:'loggingEnabled')
194
203
  self.logging_enabled = attributes[:'loggingEnabled']
195
204
  end
@@ -252,6 +261,7 @@ module DocuSign_eSign
252
261
  include_o_auth == o.include_o_auth &&
253
262
  include_sender_account_as_custom_field == o.include_sender_account_as_custom_field &&
254
263
  include_time_zone == o.include_time_zone &&
264
+ integrator_managed == o.integrator_managed &&
255
265
  logging_enabled == o.logging_enabled &&
256
266
  recipient_events == o.recipient_events &&
257
267
  require_acknowledgment == o.require_acknowledgment &&
@@ -270,7 +280,7 @@ module DocuSign_eSign
270
280
  # Calculates hash code according to all attributes.
271
281
  # @return [Fixnum] Hash code
272
282
  def hash
273
- [delivery_mode, envelope_events, event_data, events, include_certificate_of_completion, include_certificate_with_soap, include_document_fields, include_documents, include_envelope_void_reason, include_hmac, include_o_auth, include_sender_account_as_custom_field, include_time_zone, logging_enabled, recipient_events, require_acknowledgment, sign_message_with_x509_cert, soap_name_space, url, use_soap_interface].hash
283
+ [delivery_mode, envelope_events, event_data, events, include_certificate_of_completion, include_certificate_with_soap, include_document_fields, include_documents, include_envelope_void_reason, include_hmac, include_o_auth, include_sender_account_as_custom_field, include_time_zone, integrator_managed, logging_enabled, recipient_events, require_acknowledgment, sign_message_with_x509_cert, soap_name_space, url, use_soap_interface].hash
274
284
  end
275
285
 
276
286
  # Builds the object from hash
@@ -19,7 +19,7 @@ module DocuSign_eSign
19
19
  # Attribute mapping from ruby-style variable name to JSON key.
20
20
  def self.attribute_map
21
21
  {
22
- :'view_link' => :'ViewLink'
22
+ :'view_link' => :'viewLink'
23
23
  }
24
24
  end
25
25
 
@@ -38,8 +38,8 @@ module DocuSign_eSign
38
38
  # convert string to symbol for hash key
39
39
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
40
40
 
41
- if attributes.has_key?(:'ViewLink')
42
- self.view_link = attributes[:'ViewLink']
41
+ if attributes.has_key?(:'viewLink')
42
+ self.view_link = attributes[:'viewLink']
43
43
  end
44
44
  end
45
45