docusign_esign 3.27.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +110 -0
  3. data/lib/docusign_esign/api/envelopes_api.rb +29 -21
  4. data/lib/docusign_esign/api/templates_api.rb +6 -6
  5. data/lib/docusign_esign/client/api_client.rb +1 -1
  6. data/lib/docusign_esign/models/account_settings_information.rb +191 -61
  7. data/lib/docusign_esign/models/account_ui_settings.rb +21 -1
  8. data/lib/docusign_esign/models/envelope.rb +11 -1
  9. data/lib/docusign_esign/models/envelope_definition.rb +11 -1
  10. data/lib/docusign_esign/models/envelope_template.rb +11 -1
  11. data/lib/docusign_esign/models/envelope_view_document_settings.rb +214 -0
  12. data/lib/docusign_esign/models/envelope_view_envelope_custom_field_settings.rb +184 -0
  13. data/lib/docusign_esign/models/envelope_view_recipient_settings.rb +214 -0
  14. data/lib/docusign_esign/models/envelope_view_request.rb +204 -0
  15. data/lib/docusign_esign/models/envelope_view_settings.rb +304 -0
  16. data/lib/docusign_esign/models/envelope_view_tagger_settings.rb +204 -0
  17. data/lib/docusign_esign/models/envelope_view_template_settings.rb +184 -0
  18. data/lib/docusign_esign/models/group.rb +11 -1
  19. data/lib/docusign_esign/models/palette_item_settings.rb +184 -0
  20. data/lib/docusign_esign/models/palette_settings.rb +244 -0
  21. data/lib/docusign_esign/models/recipient_view_request.rb +11 -1
  22. data/lib/docusign_esign/models/template_view_request.rb +194 -0
  23. data/lib/docusign_esign/models/user_settings_information.rb +61 -1
  24. data/lib/docusign_esign/version.rb +1 -1
  25. data/lib/docusign_esign.rb +10 -1
  26. metadata +12 -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 TemplateViewRequest
16
+ #
17
+ attr_accessor :return_url
18
+
19
+ #
20
+ attr_accessor :view_access
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'return_url' => :'returnUrl',
26
+ :'view_access' => :'viewAccess'
27
+ }
28
+ end
29
+
30
+ # Attribute type mapping.
31
+ def self.swagger_types
32
+ {
33
+ :'return_url' => :'String',
34
+ :'view_access' => :'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?(:'returnUrl')
47
+ self.return_url = attributes[:'returnUrl']
48
+ end
49
+
50
+ if attributes.has_key?(:'viewAccess')
51
+ self.view_access = attributes[:'viewAccess']
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
+ return_url == o.return_url &&
74
+ view_access == o.view_access
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
+ [return_url, view_access].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
@@ -14,6 +14,12 @@ require 'date'
14
14
  module DocuSign_eSign
15
15
  # Properties that configure the settings for a user. Some elements of this object have a `metadata` property, which includes the following: - `rights`: The calling users permissions to edit this setting (can be `editable` or `read_only`) - `uiHint`: Internally used to build UIs (can be `available` or `hidden`) - `options`: The values supported for this setting (not all settings have this element)
16
16
  class UserSettingsInformation
17
+ #
18
+ attr_accessor :account_agreements_access_type
19
+
20
+ #
21
+ attr_accessor :account_agreements_access_type_metadata
22
+
17
23
  # Describes which account management capabilities a user has.
18
24
  attr_accessor :account_management_granular
19
25
 
@@ -101,6 +107,12 @@ module DocuSign_eSign
101
107
  # Metadata that indicates whether the `bulkSend` property is editable.
102
108
  attr_accessor :bulk_send_metadata
103
109
 
110
+ #
111
+ attr_accessor :can_bulk_upload_agreements
112
+
113
+ #
114
+ attr_accessor :can_bulk_upload_agreements_metadata
115
+
104
116
  #
105
117
  attr_accessor :can_charge_account
106
118
 
@@ -143,6 +155,12 @@ module DocuSign_eSign
143
155
  # Metadata about the `canManageAccountMetadata` property.
144
156
  attr_accessor :can_manage_account_metadata
145
157
 
158
+ #
159
+ attr_accessor :can_manage_agreement_parties
160
+
161
+ #
162
+ attr_accessor :can_manage_agreement_parties_metadata
163
+
146
164
  #
147
165
  attr_accessor :can_manage_distributor
148
166
 
@@ -428,6 +446,8 @@ module DocuSign_eSign
428
446
  # Attribute mapping from ruby-style variable name to JSON key.
429
447
  def self.attribute_map
430
448
  {
449
+ :'account_agreements_access_type' => :'accountAgreementsAccessType',
450
+ :'account_agreements_access_type_metadata' => :'accountAgreementsAccessTypeMetadata',
431
451
  :'account_management_granular' => :'accountManagementGranular',
432
452
  :'admin_only' => :'adminOnly',
433
453
  :'admin_only_metadata' => :'adminOnlyMetadata',
@@ -457,6 +477,8 @@ module DocuSign_eSign
457
477
  :'api_can_export_ac_metadata' => :'apiCanExportACMetadata',
458
478
  :'bulk_send' => :'bulkSend',
459
479
  :'bulk_send_metadata' => :'bulkSendMetadata',
480
+ :'can_bulk_upload_agreements' => :'canBulkUploadAgreements',
481
+ :'can_bulk_upload_agreements_metadata' => :'canBulkUploadAgreementsMetadata',
460
482
  :'can_charge_account' => :'canChargeAccount',
461
483
  :'can_charge_account_metadata' => :'canChargeAccountMetadata',
462
484
  :'can_create_transaction' => :'canCreateTransaction',
@@ -471,6 +493,8 @@ module DocuSign_eSign
471
493
  :'can_lock_envelopes_metadata' => :'canLockEnvelopesMetadata',
472
494
  :'can_manage_account' => :'canManageAccount',
473
495
  :'can_manage_account_metadata' => :'canManageAccountMetadata',
496
+ :'can_manage_agreement_parties' => :'canManageAgreementParties',
497
+ :'can_manage_agreement_parties_metadata' => :'canManageAgreementPartiesMetadata',
474
498
  :'can_manage_distributor' => :'canManageDistributor',
475
499
  :'can_manage_distributor_metadata' => :'canManageDistributorMetadata',
476
500
  :'can_manage_templates' => :'canManageTemplates',
@@ -571,6 +595,8 @@ module DocuSign_eSign
571
595
  # Attribute type mapping.
572
596
  def self.swagger_types
573
597
  {
598
+ :'account_agreements_access_type' => :'String',
599
+ :'account_agreements_access_type_metadata' => :'SettingsMetadata',
574
600
  :'account_management_granular' => :'UserAccountManagementGranularInformation',
575
601
  :'admin_only' => :'String',
576
602
  :'admin_only_metadata' => :'SettingsMetadata',
@@ -600,6 +626,8 @@ module DocuSign_eSign
600
626
  :'api_can_export_ac_metadata' => :'SettingsMetadata',
601
627
  :'bulk_send' => :'String',
602
628
  :'bulk_send_metadata' => :'SettingsMetadata',
629
+ :'can_bulk_upload_agreements' => :'String',
630
+ :'can_bulk_upload_agreements_metadata' => :'SettingsMetadata',
603
631
  :'can_charge_account' => :'String',
604
632
  :'can_charge_account_metadata' => :'SettingsMetadata',
605
633
  :'can_create_transaction' => :'String',
@@ -614,6 +642,8 @@ module DocuSign_eSign
614
642
  :'can_lock_envelopes_metadata' => :'SettingsMetadata',
615
643
  :'can_manage_account' => :'String',
616
644
  :'can_manage_account_metadata' => :'SettingsMetadata',
645
+ :'can_manage_agreement_parties' => :'String',
646
+ :'can_manage_agreement_parties_metadata' => :'SettingsMetadata',
617
647
  :'can_manage_distributor' => :'String',
618
648
  :'can_manage_distributor_metadata' => :'SettingsMetadata',
619
649
  :'can_manage_templates' => :'String',
@@ -719,6 +749,14 @@ module DocuSign_eSign
719
749
  # convert string to symbol for hash key
720
750
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
721
751
 
752
+ if attributes.has_key?(:'accountAgreementsAccessType')
753
+ self.account_agreements_access_type = attributes[:'accountAgreementsAccessType']
754
+ end
755
+
756
+ if attributes.has_key?(:'accountAgreementsAccessTypeMetadata')
757
+ self.account_agreements_access_type_metadata = attributes[:'accountAgreementsAccessTypeMetadata']
758
+ end
759
+
722
760
  if attributes.has_key?(:'accountManagementGranular')
723
761
  self.account_management_granular = attributes[:'accountManagementGranular']
724
762
  end
@@ -835,6 +873,14 @@ module DocuSign_eSign
835
873
  self.bulk_send_metadata = attributes[:'bulkSendMetadata']
836
874
  end
837
875
 
876
+ if attributes.has_key?(:'canBulkUploadAgreements')
877
+ self.can_bulk_upload_agreements = attributes[:'canBulkUploadAgreements']
878
+ end
879
+
880
+ if attributes.has_key?(:'canBulkUploadAgreementsMetadata')
881
+ self.can_bulk_upload_agreements_metadata = attributes[:'canBulkUploadAgreementsMetadata']
882
+ end
883
+
838
884
  if attributes.has_key?(:'canChargeAccount')
839
885
  self.can_charge_account = attributes[:'canChargeAccount']
840
886
  end
@@ -891,6 +937,14 @@ module DocuSign_eSign
891
937
  self.can_manage_account_metadata = attributes[:'canManageAccountMetadata']
892
938
  end
893
939
 
940
+ if attributes.has_key?(:'canManageAgreementParties')
941
+ self.can_manage_agreement_parties = attributes[:'canManageAgreementParties']
942
+ end
943
+
944
+ if attributes.has_key?(:'canManageAgreementPartiesMetadata')
945
+ self.can_manage_agreement_parties_metadata = attributes[:'canManageAgreementPartiesMetadata']
946
+ end
947
+
894
948
  if attributes.has_key?(:'canManageDistributor')
895
949
  self.can_manage_distributor = attributes[:'canManageDistributor']
896
950
  end
@@ -1288,6 +1342,8 @@ module DocuSign_eSign
1288
1342
  def ==(o)
1289
1343
  return true if self.equal?(o)
1290
1344
  self.class == o.class &&
1345
+ account_agreements_access_type == o.account_agreements_access_type &&
1346
+ account_agreements_access_type_metadata == o.account_agreements_access_type_metadata &&
1291
1347
  account_management_granular == o.account_management_granular &&
1292
1348
  admin_only == o.admin_only &&
1293
1349
  admin_only_metadata == o.admin_only_metadata &&
@@ -1317,6 +1373,8 @@ module DocuSign_eSign
1317
1373
  api_can_export_ac_metadata == o.api_can_export_ac_metadata &&
1318
1374
  bulk_send == o.bulk_send &&
1319
1375
  bulk_send_metadata == o.bulk_send_metadata &&
1376
+ can_bulk_upload_agreements == o.can_bulk_upload_agreements &&
1377
+ can_bulk_upload_agreements_metadata == o.can_bulk_upload_agreements_metadata &&
1320
1378
  can_charge_account == o.can_charge_account &&
1321
1379
  can_charge_account_metadata == o.can_charge_account_metadata &&
1322
1380
  can_create_transaction == o.can_create_transaction &&
@@ -1331,6 +1389,8 @@ module DocuSign_eSign
1331
1389
  can_lock_envelopes_metadata == o.can_lock_envelopes_metadata &&
1332
1390
  can_manage_account == o.can_manage_account &&
1333
1391
  can_manage_account_metadata == o.can_manage_account_metadata &&
1392
+ can_manage_agreement_parties == o.can_manage_agreement_parties &&
1393
+ can_manage_agreement_parties_metadata == o.can_manage_agreement_parties_metadata &&
1334
1394
  can_manage_distributor == o.can_manage_distributor &&
1335
1395
  can_manage_distributor_metadata == o.can_manage_distributor_metadata &&
1336
1396
  can_manage_templates == o.can_manage_templates &&
@@ -1436,7 +1496,7 @@ module DocuSign_eSign
1436
1496
  # Calculates hash code according to all attributes.
1437
1497
  # @return [Fixnum] Hash code
1438
1498
  def hash
1439
- [account_management_granular, admin_only, admin_only_metadata, allow_access_to_all_account_agreements, allow_access_to_all_account_agreements_metadata, allow_auto_tagging, allowed_orchestration_access, allowed_orchestration_access_metadata, allow_envelope_transfer_to, allow_envelope_transfer_to_metadata, allow_eseal_recipients, allow_eseal_recipients_metadata, allow_power_forms_admin_to_access_all_power_form_envelope, allow_power_forms_admin_to_access_all_power_form_envelope_metadata, allow_recipient_language_selection, allow_recipient_language_selection_metadata, allow_send_on_behalf_of, allow_send_on_behalf_of_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, allow_transactions, allow_transactions_metadata, anchor_tag_versioned_placement_enabled, api_account_wide_access, api_account_wide_access_metadata, api_can_export_ac, api_can_export_ac_metadata, bulk_send, bulk_send_metadata, can_charge_account, can_charge_account_metadata, can_create_transaction, can_create_transaction_metadata, can_delete_documents_in_transaction, can_delete_documents_in_transaction_metadata, can_delete_transaction, can_delete_transaction_metadata, can_edit_shared_addressbook, can_edit_shared_addressbook_metadata, can_lock_envelopes, can_lock_envelopes_metadata, can_manage_account, can_manage_account_metadata, can_manage_distributor, can_manage_distributor_metadata, can_manage_templates, can_manage_templates_metadata, can_send_api_requests, can_send_api_requests_metadata, can_send_envelope, can_send_envelope_metadata, can_send_envelopes_via_sms, can_send_envelopes_via_sms_metadata, can_sign_envelope, can_sign_envelope_metadata, can_use_scratchpad, can_use_scratchpad_metadata, can_use_smart_contracts, can_use_smart_contracts_metadata, disable_document_upload, disable_document_upload_metadata, disable_other_actions, disable_other_actions_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_metadata, enable_sequential_signing_api, enable_sequential_signing_api_metadata, enable_sequential_signing_ui, enable_sequential_signing_ui_metadata, enable_signer_attachments, enable_signer_attachments_metadata, enable_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, express_send_only, locale, locale_metadata, locale_policy, manage_clickwraps_mode, manage_clickwraps_mode_metadata, modified_by, modified_by_metadata, modified_date, modified_date_metadata, modified_page, modified_page_metadata, new_send_ui, new_send_ui_metadata, power_form_mode, power_form_mode_metadata, recipient_viewed_notification, recipient_viewed_notification_metadata, seal_identifiers, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, sender_email_notifications, signer_email_notifications, supplemental_document_include_in_download, supplemental_documents_must_accept, supplemental_documents_must_accept_metadata, supplemental_documents_must_read, supplemental_documents_must_read_metadata, supplemental_documents_must_view, supplemental_documents_must_view_metadata, template_active_creation, template_active_creation_metadata, template_apply_notify, template_apply_notify_metadata, template_auto_matching, template_auto_matching_metadata, template_matching_sensitivity, template_matching_sensitivity_metadata, template_page_level_matching, template_page_level_matching_metadata, timezone_dst, timezone_dst_metadata, timezone_mask, timezone_mask_metadata, timezone_offset, timezone_offset_metadata, timezone_sending_pref, timezone_sending_pref_metadata, timezone_signing_pref, timezone_signing_pref_metadata, transaction_point_site_name_url, transaction_point_site_name_url_metadata, transaction_point_user_name, transaction_point_user_name_metadata, vaulting_mode, vaulting_mode_metadata, web_forms, web_forms_metadata].hash
1499
+ [account_agreements_access_type, account_agreements_access_type_metadata, account_management_granular, admin_only, admin_only_metadata, allow_access_to_all_account_agreements, allow_access_to_all_account_agreements_metadata, allow_auto_tagging, allowed_orchestration_access, allowed_orchestration_access_metadata, allow_envelope_transfer_to, allow_envelope_transfer_to_metadata, allow_eseal_recipients, allow_eseal_recipients_metadata, allow_power_forms_admin_to_access_all_power_form_envelope, allow_power_forms_admin_to_access_all_power_form_envelope_metadata, allow_recipient_language_selection, allow_recipient_language_selection_metadata, allow_send_on_behalf_of, allow_send_on_behalf_of_metadata, allow_supplemental_documents, allow_supplemental_documents_metadata, allow_transactions, allow_transactions_metadata, anchor_tag_versioned_placement_enabled, api_account_wide_access, api_account_wide_access_metadata, api_can_export_ac, api_can_export_ac_metadata, bulk_send, bulk_send_metadata, can_bulk_upload_agreements, can_bulk_upload_agreements_metadata, can_charge_account, can_charge_account_metadata, can_create_transaction, can_create_transaction_metadata, can_delete_documents_in_transaction, can_delete_documents_in_transaction_metadata, can_delete_transaction, can_delete_transaction_metadata, can_edit_shared_addressbook, can_edit_shared_addressbook_metadata, can_lock_envelopes, can_lock_envelopes_metadata, can_manage_account, can_manage_account_metadata, can_manage_agreement_parties, can_manage_agreement_parties_metadata, can_manage_distributor, can_manage_distributor_metadata, can_manage_templates, can_manage_templates_metadata, can_send_api_requests, can_send_api_requests_metadata, can_send_envelope, can_send_envelope_metadata, can_send_envelopes_via_sms, can_send_envelopes_via_sms_metadata, can_sign_envelope, can_sign_envelope_metadata, can_use_scratchpad, can_use_scratchpad_metadata, can_use_smart_contracts, can_use_smart_contracts_metadata, disable_document_upload, disable_document_upload_metadata, disable_other_actions, disable_other_actions_metadata, enable_ds_pro, enable_ds_pro_metadata, enable_key_terms_suggestions_by_document_type, enable_key_terms_suggestions_by_document_type_metadata, enable_sequential_signing_api, enable_sequential_signing_api_metadata, enable_sequential_signing_ui, enable_sequential_signing_ui_metadata, enable_signer_attachments, enable_signer_attachments_metadata, enable_sign_on_paper_override, enable_sign_on_paper_override_metadata, enable_transaction_point, enable_transaction_point_metadata, enable_vaulting, enable_vaulting_metadata, express_send_only, locale, locale_metadata, locale_policy, manage_clickwraps_mode, manage_clickwraps_mode_metadata, modified_by, modified_by_metadata, modified_date, modified_date_metadata, modified_page, modified_page_metadata, new_send_ui, new_send_ui_metadata, power_form_mode, power_form_mode_metadata, recipient_viewed_notification, recipient_viewed_notification_metadata, seal_identifiers, self_signed_recipient_email_document, self_signed_recipient_email_document_metadata, sender_email_notifications, signer_email_notifications, supplemental_document_include_in_download, supplemental_documents_must_accept, supplemental_documents_must_accept_metadata, supplemental_documents_must_read, supplemental_documents_must_read_metadata, supplemental_documents_must_view, supplemental_documents_must_view_metadata, template_active_creation, template_active_creation_metadata, template_apply_notify, template_apply_notify_metadata, template_auto_matching, template_auto_matching_metadata, template_matching_sensitivity, template_matching_sensitivity_metadata, template_page_level_matching, template_page_level_matching_metadata, timezone_dst, timezone_dst_metadata, timezone_mask, timezone_mask_metadata, timezone_offset, timezone_offset_metadata, timezone_sending_pref, timezone_sending_pref_metadata, timezone_signing_pref, timezone_signing_pref_metadata, transaction_point_site_name_url, transaction_point_site_name_url_metadata, transaction_point_user_name, transaction_point_user_name_metadata, vaulting_mode, vaulting_mode_metadata, web_forms, web_forms_metadata].hash
1440
1500
  end
1441
1501
 
1442
1502
  # Builds the object from hash
@@ -10,5 +10,5 @@ Generated by: https://github.com/swagger-api/swagger-codegen.git
10
10
  =end
11
11
 
12
12
  module DocuSign_eSign
13
- VERSION = '3.27.0'
13
+ VERSION = '4.0.0'
14
14
  end
@@ -252,6 +252,13 @@ require 'docusign_esign/models/envelope_transfer_rule'
252
252
  require 'docusign_esign/models/envelope_transfer_rule_information'
253
253
  require 'docusign_esign/models/envelope_transfer_rule_request'
254
254
  require 'docusign_esign/models/envelope_update_summary'
255
+ require 'docusign_esign/models/envelope_view_document_settings'
256
+ require 'docusign_esign/models/envelope_view_envelope_custom_field_settings'
257
+ require 'docusign_esign/models/envelope_view_recipient_settings'
258
+ require 'docusign_esign/models/envelope_view_request'
259
+ require 'docusign_esign/models/envelope_view_settings'
260
+ require 'docusign_esign/models/envelope_view_tagger_settings'
261
+ require 'docusign_esign/models/envelope_view_template_settings'
255
262
  require 'docusign_esign/models/envelopes_information'
256
263
  require 'docusign_esign/models/error_details'
257
264
  require 'docusign_esign/models/event_notification'
@@ -345,6 +352,8 @@ require 'docusign_esign/models/offline_attributes'
345
352
  require 'docusign_esign/models/page'
346
353
  require 'docusign_esign/models/page_images'
347
354
  require 'docusign_esign/models/page_request'
355
+ require 'docusign_esign/models/palette_item_settings'
356
+ require 'docusign_esign/models/palette_settings'
348
357
  require 'docusign_esign/models/participant'
349
358
  require 'docusign_esign/models/path_extended_element'
350
359
  require 'docusign_esign/models/pay_pal_legacy_settings'
@@ -408,7 +417,6 @@ require 'docusign_esign/models/recipients_update_summary'
408
417
  require 'docusign_esign/models/referral_information'
409
418
  require 'docusign_esign/models/reminders'
410
419
  require 'docusign_esign/models/resource_information'
411
- require 'docusign_esign/models/return_url_request'
412
420
  require 'docusign_esign/models/scheduled_sending'
413
421
  require 'docusign_esign/models/seal_identifier'
414
422
  require 'docusign_esign/models/seal_sign'
@@ -464,6 +472,7 @@ require 'docusign_esign/models/template_shared_item'
464
472
  require 'docusign_esign/models/template_summary'
465
473
  require 'docusign_esign/models/template_tabs'
466
474
  require 'docusign_esign/models/template_update_summary'
475
+ require 'docusign_esign/models/template_view_request'
467
476
  require 'docusign_esign/models/text'
468
477
  require 'docusign_esign/models/text_custom_field'
469
478
  require 'docusign_esign/models/title'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docusign_esign
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.27.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DocuSign
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-30 00:00:00.000000000 Z
11
+ date: 2024-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -570,6 +570,13 @@ files:
570
570
  - lib/docusign_esign/models/envelope_transfer_rule_information.rb
571
571
  - lib/docusign_esign/models/envelope_transfer_rule_request.rb
572
572
  - lib/docusign_esign/models/envelope_update_summary.rb
573
+ - lib/docusign_esign/models/envelope_view_document_settings.rb
574
+ - lib/docusign_esign/models/envelope_view_envelope_custom_field_settings.rb
575
+ - lib/docusign_esign/models/envelope_view_recipient_settings.rb
576
+ - lib/docusign_esign/models/envelope_view_request.rb
577
+ - lib/docusign_esign/models/envelope_view_settings.rb
578
+ - lib/docusign_esign/models/envelope_view_tagger_settings.rb
579
+ - lib/docusign_esign/models/envelope_view_template_settings.rb
573
580
  - lib/docusign_esign/models/envelopes_information.rb
574
581
  - lib/docusign_esign/models/error_details.rb
575
582
  - lib/docusign_esign/models/event_notification.rb
@@ -668,6 +675,8 @@ files:
668
675
  - lib/docusign_esign/models/page_images.rb
669
676
  - lib/docusign_esign/models/page_request.rb
670
677
  - lib/docusign_esign/models/page_size.rb
678
+ - lib/docusign_esign/models/palette_item_settings.rb
679
+ - lib/docusign_esign/models/palette_settings.rb
671
680
  - lib/docusign_esign/models/participant.rb
672
681
  - lib/docusign_esign/models/path_extended_element.rb
673
682
  - lib/docusign_esign/models/pay_pal_legacy_settings.rb
@@ -810,6 +819,7 @@ files:
810
819
  - lib/docusign_esign/models/template_summary.rb
811
820
  - lib/docusign_esign/models/template_tabs.rb
812
821
  - lib/docusign_esign/models/template_update_summary.rb
822
+ - lib/docusign_esign/models/template_view_request.rb
813
823
  - lib/docusign_esign/models/text.rb
814
824
  - lib/docusign_esign/models/text_custom_field.rb
815
825
  - lib/docusign_esign/models/time_stamp_field.rb