docusign_esign 3.25.0 → 3.27.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 DocGenFormFieldValidation
16
+ #
17
+ attr_accessor :error_message
18
+
19
+ #
20
+ attr_accessor :expression
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'error_message' => :'errorMessage',
26
+ :'expression' => :'expression'
27
+ }
28
+ end
29
+
30
+ # Attribute type mapping.
31
+ def self.swagger_types
32
+ {
33
+ :'error_message' => :'String',
34
+ :'expression' => :'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?(:'errorMessage')
47
+ self.error_message = attributes[:'errorMessage']
48
+ end
49
+
50
+ if attributes.has_key?(:'expression')
51
+ self.expression = attributes[:'expression']
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
+ error_message == o.error_message &&
74
+ expression == o.expression
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
+ [error_message, expression].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
@@ -20,6 +20,9 @@ module DocuSign_eSign
20
20
  #
21
21
  attr_accessor :assign_tabs_to_recipient_id
22
22
 
23
+ # Specifies the Authoritative copy feature. If set to true the Authoritative copy feature is enabled.
24
+ attr_accessor :authoritative_copy
25
+
23
26
  #
24
27
  attr_accessor :display
25
28
 
@@ -100,6 +103,7 @@ module DocuSign_eSign
100
103
  {
101
104
  :'apply_anchor_tabs' => :'applyAnchorTabs',
102
105
  :'assign_tabs_to_recipient_id' => :'assignTabsToRecipientId',
106
+ :'authoritative_copy' => :'authoritativeCopy',
103
107
  :'display' => :'display',
104
108
  :'doc_gen_form_fields' => :'docGenFormFields',
105
109
  :'document_base64' => :'documentBase64',
@@ -133,6 +137,7 @@ module DocuSign_eSign
133
137
  {
134
138
  :'apply_anchor_tabs' => :'String',
135
139
  :'assign_tabs_to_recipient_id' => :'String',
140
+ :'authoritative_copy' => :'BOOLEAN',
136
141
  :'display' => :'String',
137
142
  :'doc_gen_form_fields' => :'Array<DocGenFormField>',
138
143
  :'document_base64' => :'String',
@@ -177,6 +182,10 @@ module DocuSign_eSign
177
182
  self.assign_tabs_to_recipient_id = attributes[:'assignTabsToRecipientId']
178
183
  end
179
184
 
185
+ if attributes.has_key?(:'authoritativeCopy')
186
+ self.authoritative_copy = attributes[:'authoritativeCopy']
187
+ end
188
+
180
189
  if attributes.has_key?(:'display')
181
190
  self.display = attributes[:'display']
182
191
  end
@@ -304,6 +313,7 @@ module DocuSign_eSign
304
313
  self.class == o.class &&
305
314
  apply_anchor_tabs == o.apply_anchor_tabs &&
306
315
  assign_tabs_to_recipient_id == o.assign_tabs_to_recipient_id &&
316
+ authoritative_copy == o.authoritative_copy &&
307
317
  display == o.display &&
308
318
  doc_gen_form_fields == o.doc_gen_form_fields &&
309
319
  document_base64 == o.document_base64 &&
@@ -340,7 +350,7 @@ module DocuSign_eSign
340
350
  # Calculates hash code according to all attributes.
341
351
  # @return [Fixnum] Hash code
342
352
  def hash
343
- [apply_anchor_tabs, assign_tabs_to_recipient_id, display, doc_gen_form_fields, document_base64, document_fields, document_id, encrypted_with_key_manager, file_extension, file_format_hint, html_definition, include_in_download, is_doc_gen_document, match_boxes, name, order, pages, password, pdf_form_field_option, remote_url, signer_must_acknowledge, signer_must_acknowledge_use_account_default, tabs, template_locked, template_required, transform_pdf_fields, uri].hash
353
+ [apply_anchor_tabs, assign_tabs_to_recipient_id, authoritative_copy, display, doc_gen_form_fields, document_base64, document_fields, document_id, encrypted_with_key_manager, file_extension, file_format_hint, html_definition, include_in_download, is_doc_gen_document, match_boxes, name, order, pages, password, pdf_form_field_option, remote_url, signer_must_acknowledge, signer_must_acknowledge_use_account_default, tabs, template_locked, template_required, transform_pdf_fields, uri].hash
344
354
  end
345
355
 
346
356
  # Builds the object from hash
@@ -14,6 +14,9 @@ require 'date'
14
14
  module DocuSign_eSign
15
15
  # This object contains information about a group.
16
16
  class Group
17
+ #
18
+ attr_accessor :access_type
19
+
17
20
  #
18
21
  attr_accessor :ds_group_id
19
22
 
@@ -41,6 +44,7 @@ module DocuSign_eSign
41
44
  # Attribute mapping from ruby-style variable name to JSON key.
42
45
  def self.attribute_map
43
46
  {
47
+ :'access_type' => :'accessType',
44
48
  :'ds_group_id' => :'dsGroupId',
45
49
  :'error_details' => :'errorDetails',
46
50
  :'group_id' => :'groupId',
@@ -55,6 +59,7 @@ module DocuSign_eSign
55
59
  # Attribute type mapping.
56
60
  def self.swagger_types
57
61
  {
62
+ :'access_type' => :'String',
58
63
  :'ds_group_id' => :'String',
59
64
  :'error_details' => :'ErrorDetails',
60
65
  :'group_id' => :'String',
@@ -74,6 +79,10 @@ module DocuSign_eSign
74
79
  # convert string to symbol for hash key
75
80
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
76
81
 
82
+ if attributes.has_key?(:'accessType')
83
+ self.access_type = attributes[:'accessType']
84
+ end
85
+
77
86
  if attributes.has_key?(:'dsGroupId')
78
87
  self.ds_group_id = attributes[:'dsGroupId']
79
88
  end
@@ -127,6 +136,7 @@ module DocuSign_eSign
127
136
  def ==(o)
128
137
  return true if self.equal?(o)
129
138
  self.class == o.class &&
139
+ access_type == o.access_type &&
130
140
  ds_group_id == o.ds_group_id &&
131
141
  error_details == o.error_details &&
132
142
  group_id == o.group_id &&
@@ -146,7 +156,7 @@ module DocuSign_eSign
146
156
  # Calculates hash code according to all attributes.
147
157
  # @return [Fixnum] Hash code
148
158
  def hash
149
- [ds_group_id, error_details, group_id, group_name, group_type, permission_profile_id, users, users_count].hash
159
+ [access_type, ds_group_id, error_details, group_id, group_name, group_type, permission_profile_id, users, users_count].hash
150
160
  end
151
161
 
152
162
  # Builds the object from hash
@@ -23,6 +23,12 @@ module DocuSign_eSign
23
23
  # Reserved for DocuSign.
24
24
  attr_accessor :admin_only_metadata
25
25
 
26
+ #
27
+ attr_accessor :allow_access_to_all_account_agreements
28
+
29
+ #
30
+ attr_accessor :allow_access_to_all_account_agreements_metadata
31
+
26
32
  #
27
33
  attr_accessor :allow_auto_tagging
28
34
 
@@ -425,6 +431,8 @@ module DocuSign_eSign
425
431
  :'account_management_granular' => :'accountManagementGranular',
426
432
  :'admin_only' => :'adminOnly',
427
433
  :'admin_only_metadata' => :'adminOnlyMetadata',
434
+ :'allow_access_to_all_account_agreements' => :'allowAccessToAllAccountAgreements',
435
+ :'allow_access_to_all_account_agreements_metadata' => :'allowAccessToAllAccountAgreementsMetadata',
428
436
  :'allow_auto_tagging' => :'allowAutoTagging',
429
437
  :'allowed_orchestration_access' => :'allowedOrchestrationAccess',
430
438
  :'allowed_orchestration_access_metadata' => :'allowedOrchestrationAccessMetadata',
@@ -566,6 +574,8 @@ module DocuSign_eSign
566
574
  :'account_management_granular' => :'UserAccountManagementGranularInformation',
567
575
  :'admin_only' => :'String',
568
576
  :'admin_only_metadata' => :'SettingsMetadata',
577
+ :'allow_access_to_all_account_agreements' => :'String',
578
+ :'allow_access_to_all_account_agreements_metadata' => :'SettingsMetadata',
569
579
  :'allow_auto_tagging' => :'String',
570
580
  :'allowed_orchestration_access' => :'String',
571
581
  :'allowed_orchestration_access_metadata' => :'SettingsMetadata',
@@ -721,6 +731,14 @@ module DocuSign_eSign
721
731
  self.admin_only_metadata = attributes[:'adminOnlyMetadata']
722
732
  end
723
733
 
734
+ if attributes.has_key?(:'allowAccessToAllAccountAgreements')
735
+ self.allow_access_to_all_account_agreements = attributes[:'allowAccessToAllAccountAgreements']
736
+ end
737
+
738
+ if attributes.has_key?(:'allowAccessToAllAccountAgreementsMetadata')
739
+ self.allow_access_to_all_account_agreements_metadata = attributes[:'allowAccessToAllAccountAgreementsMetadata']
740
+ end
741
+
724
742
  if attributes.has_key?(:'allowAutoTagging')
725
743
  self.allow_auto_tagging = attributes[:'allowAutoTagging']
726
744
  end
@@ -1273,6 +1291,8 @@ module DocuSign_eSign
1273
1291
  account_management_granular == o.account_management_granular &&
1274
1292
  admin_only == o.admin_only &&
1275
1293
  admin_only_metadata == o.admin_only_metadata &&
1294
+ allow_access_to_all_account_agreements == o.allow_access_to_all_account_agreements &&
1295
+ allow_access_to_all_account_agreements_metadata == o.allow_access_to_all_account_agreements_metadata &&
1276
1296
  allow_auto_tagging == o.allow_auto_tagging &&
1277
1297
  allowed_orchestration_access == o.allowed_orchestration_access &&
1278
1298
  allowed_orchestration_access_metadata == o.allowed_orchestration_access_metadata &&
@@ -1416,7 +1436,7 @@ module DocuSign_eSign
1416
1436
  # Calculates hash code according to all attributes.
1417
1437
  # @return [Fixnum] Hash code
1418
1438
  def hash
1419
- [account_management_granular, admin_only, admin_only_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
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
1420
1440
  end
1421
1441
 
1422
1442
  # 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.25.0'
13
+ VERSION = '3.27.0.rc1'
14
14
  end
@@ -194,8 +194,11 @@ require 'docusign_esign/models/diagnostics_settings_information'
194
194
  require 'docusign_esign/models/direct_debit_processor_information'
195
195
  require 'docusign_esign/models/dob_information_input'
196
196
  require 'docusign_esign/models/doc_gen_form_field'
197
+ require 'docusign_esign/models/doc_gen_form_field_option'
197
198
  require 'docusign_esign/models/doc_gen_form_field_request'
198
199
  require 'docusign_esign/models/doc_gen_form_field_response'
200
+ require 'docusign_esign/models/doc_gen_form_field_row_value'
201
+ require 'docusign_esign/models/doc_gen_form_field_validation'
199
202
  require 'docusign_esign/models/doc_gen_form_fields'
200
203
  require 'docusign_esign/models/doc_gen_syntax_error'
201
204
  require 'docusign_esign/models/document'
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.25.0
4
+ version: 3.27.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - DocuSign
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-07 00:00:00.000000000 Z
11
+ date: 2024-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -508,8 +508,11 @@ files:
508
508
  - lib/docusign_esign/models/display_appliance_signer_attachment.rb
509
509
  - lib/docusign_esign/models/dob_information_input.rb
510
510
  - lib/docusign_esign/models/doc_gen_form_field.rb
511
+ - lib/docusign_esign/models/doc_gen_form_field_option.rb
511
512
  - lib/docusign_esign/models/doc_gen_form_field_request.rb
512
513
  - lib/docusign_esign/models/doc_gen_form_field_response.rb
514
+ - lib/docusign_esign/models/doc_gen_form_field_row_value.rb
515
+ - lib/docusign_esign/models/doc_gen_form_field_validation.rb
513
516
  - lib/docusign_esign/models/doc_gen_form_fields.rb
514
517
  - lib/docusign_esign/models/doc_gen_syntax_error.rb
515
518
  - lib/docusign_esign/models/document.rb
@@ -879,9 +882,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
879
882
  version: '1.9'
880
883
  required_rubygems_version: !ruby/object:Gem::Requirement
881
884
  requirements:
882
- - - ">="
885
+ - - ">"
883
886
  - !ruby/object:Gem::Version
884
- version: '0'
887
+ version: 1.3.1
885
888
  requirements: []
886
889
  rubyforge_project:
887
890
  rubygems_version: 2.7.6