docusign_esign 3.11.0 → 3.12.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/docusign_esign-2.12.0.rc1.gem +0 -0
  4. data/docusign_esign.gemspec +1 -0
  5. data/lib/docusign_esign/client/api_client.rb +3 -2
  6. data/lib/docusign_esign/configuration.rb +2 -1
  7. data/lib/docusign_esign/models/account_billing_plan.rb +11 -1
  8. data/lib/docusign_esign/models/account_billing_plan_response.rb +11 -1
  9. data/lib/docusign_esign/models/account_signature_definition.rb +11 -1
  10. data/lib/docusign_esign/models/agent.rb +1 -10
  11. data/lib/docusign_esign/models/carbon_copy.rb +1 -10
  12. data/lib/docusign_esign/models/certified_delivery.rb +1 -10
  13. data/lib/docusign_esign/models/credit_card_information.rb +24 -4
  14. data/lib/docusign_esign/models/downgrade_billing_plan_information.rb +44 -4
  15. data/lib/docusign_esign/models/downgrade_plan_update_response.rb +54 -4
  16. data/lib/docusign_esign/models/editor.rb +1 -10
  17. data/lib/docusign_esign/models/intermediary.rb +1 -10
  18. data/lib/docusign_esign/models/notary_recipient.rb +1 -10
  19. data/lib/docusign_esign/models/recipient_proof_file.rb +11 -1
  20. data/lib/docusign_esign/models/report_in_product_run_response_row_fields.rb +31 -1
  21. data/lib/docusign_esign/models/signer.rb +1 -10
  22. data/lib/docusign_esign/models/template_role.rb +10 -1
  23. data/lib/docusign_esign/models/user_account_management_granular_information.rb +20 -1
  24. data/lib/docusign_esign/models/user_signature_definition.rb +11 -1
  25. data/lib/docusign_esign/models/witness.rb +1 -10
  26. data/lib/docusign_esign/version.rb +1 -1
  27. data/tests/Gemfile.lock +4 -0
  28. metadata +25 -4
@@ -18,11 +18,27 @@ module DocuSign_eSign
18
18
 
19
19
  attr_accessor :plan_information
20
20
 
21
+ #
22
+ attr_accessor :promo_code
23
+
24
+ #
25
+ attr_accessor :sale_discount
26
+
27
+ #
28
+ attr_accessor :sale_discount_periods
29
+
30
+ #
31
+ attr_accessor :sale_discount_type
32
+
21
33
  # Attribute mapping from ruby-style variable name to JSON key.
22
34
  def self.attribute_map
23
35
  {
24
36
  :'downgrade_event_type' => :'downgradeEventType',
25
- :'plan_information' => :'planInformation'
37
+ :'plan_information' => :'planInformation',
38
+ :'promo_code' => :'promoCode',
39
+ :'sale_discount' => :'saleDiscount',
40
+ :'sale_discount_periods' => :'saleDiscountPeriods',
41
+ :'sale_discount_type' => :'saleDiscountType'
26
42
  }
27
43
  end
28
44
 
@@ -30,7 +46,11 @@ module DocuSign_eSign
30
46
  def self.swagger_types
31
47
  {
32
48
  :'downgrade_event_type' => :'String',
33
- :'plan_information' => :'PlanInformation'
49
+ :'plan_information' => :'PlanInformation',
50
+ :'promo_code' => :'String',
51
+ :'sale_discount' => :'String',
52
+ :'sale_discount_periods' => :'String',
53
+ :'sale_discount_type' => :'String'
34
54
  }
35
55
  end
36
56
 
@@ -49,6 +69,22 @@ module DocuSign_eSign
49
69
  if attributes.has_key?(:'planInformation')
50
70
  self.plan_information = attributes[:'planInformation']
51
71
  end
72
+
73
+ if attributes.has_key?(:'promoCode')
74
+ self.promo_code = attributes[:'promoCode']
75
+ end
76
+
77
+ if attributes.has_key?(:'saleDiscount')
78
+ self.sale_discount = attributes[:'saleDiscount']
79
+ end
80
+
81
+ if attributes.has_key?(:'saleDiscountPeriods')
82
+ self.sale_discount_periods = attributes[:'saleDiscountPeriods']
83
+ end
84
+
85
+ if attributes.has_key?(:'saleDiscountType')
86
+ self.sale_discount_type = attributes[:'saleDiscountType']
87
+ end
52
88
  end
53
89
 
54
90
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -70,7 +106,11 @@ module DocuSign_eSign
70
106
  return true if self.equal?(o)
71
107
  self.class == o.class &&
72
108
  downgrade_event_type == o.downgrade_event_type &&
73
- plan_information == o.plan_information
109
+ plan_information == o.plan_information &&
110
+ promo_code == o.promo_code &&
111
+ sale_discount == o.sale_discount &&
112
+ sale_discount_periods == o.sale_discount_periods &&
113
+ sale_discount_type == o.sale_discount_type
74
114
  end
75
115
 
76
116
  # @see the `==` method
@@ -82,7 +122,7 @@ module DocuSign_eSign
82
122
  # Calculates hash code according to all attributes.
83
123
  # @return [Fixnum] Hash code
84
124
  def hash
85
- [downgrade_event_type, plan_information].hash
125
+ [downgrade_event_type, plan_information, promo_code, sale_discount, sale_discount_periods, sale_discount_type].hash
86
126
  end
87
127
 
88
128
  # Builds the object from hash
@@ -16,6 +16,9 @@ module DocuSign_eSign
16
16
  #
17
17
  attr_accessor :account_payment_method
18
18
 
19
+ #
20
+ attr_accessor :discount_applied
21
+
19
22
  #
20
23
  attr_accessor :downgrade_effective_date
21
24
 
@@ -34,16 +37,33 @@ module DocuSign_eSign
34
37
  #
35
38
  attr_accessor :message
36
39
 
40
+ #
41
+ attr_accessor :promo_code
42
+
43
+ #
44
+ attr_accessor :sale_discount
45
+
46
+ #
47
+ attr_accessor :sale_discount_periods
48
+
49
+ #
50
+ attr_accessor :sale_discount_type
51
+
37
52
  # Attribute mapping from ruby-style variable name to JSON key.
38
53
  def self.attribute_map
39
54
  {
40
55
  :'account_payment_method' => :'accountPaymentMethod',
56
+ :'discount_applied' => :'discountApplied',
41
57
  :'downgrade_effective_date' => :'downgradeEffectiveDate',
42
58
  :'downgrade_payment_cycle' => :'downgradePaymentCycle',
43
59
  :'downgrade_plan_id' => :'downgradePlanId',
44
60
  :'downgrade_plan_name' => :'downgradePlanName',
45
61
  :'downgrade_request_status' => :'downgradeRequestStatus',
46
- :'message' => :'message'
62
+ :'message' => :'message',
63
+ :'promo_code' => :'promoCode',
64
+ :'sale_discount' => :'saleDiscount',
65
+ :'sale_discount_periods' => :'saleDiscountPeriods',
66
+ :'sale_discount_type' => :'saleDiscountType'
47
67
  }
48
68
  end
49
69
 
@@ -51,12 +71,17 @@ module DocuSign_eSign
51
71
  def self.swagger_types
52
72
  {
53
73
  :'account_payment_method' => :'String',
74
+ :'discount_applied' => :'String',
54
75
  :'downgrade_effective_date' => :'String',
55
76
  :'downgrade_payment_cycle' => :'String',
56
77
  :'downgrade_plan_id' => :'String',
57
78
  :'downgrade_plan_name' => :'String',
58
79
  :'downgrade_request_status' => :'String',
59
- :'message' => :'String'
80
+ :'message' => :'String',
81
+ :'promo_code' => :'String',
82
+ :'sale_discount' => :'String',
83
+ :'sale_discount_periods' => :'String',
84
+ :'sale_discount_type' => :'String'
60
85
  }
61
86
  end
62
87
 
@@ -72,6 +97,10 @@ module DocuSign_eSign
72
97
  self.account_payment_method = attributes[:'accountPaymentMethod']
73
98
  end
74
99
 
100
+ if attributes.has_key?(:'discountApplied')
101
+ self.discount_applied = attributes[:'discountApplied']
102
+ end
103
+
75
104
  if attributes.has_key?(:'downgradeEffectiveDate')
76
105
  self.downgrade_effective_date = attributes[:'downgradeEffectiveDate']
77
106
  end
@@ -95,6 +124,22 @@ module DocuSign_eSign
95
124
  if attributes.has_key?(:'message')
96
125
  self.message = attributes[:'message']
97
126
  end
127
+
128
+ if attributes.has_key?(:'promoCode')
129
+ self.promo_code = attributes[:'promoCode']
130
+ end
131
+
132
+ if attributes.has_key?(:'saleDiscount')
133
+ self.sale_discount = attributes[:'saleDiscount']
134
+ end
135
+
136
+ if attributes.has_key?(:'saleDiscountPeriods')
137
+ self.sale_discount_periods = attributes[:'saleDiscountPeriods']
138
+ end
139
+
140
+ if attributes.has_key?(:'saleDiscountType')
141
+ self.sale_discount_type = attributes[:'saleDiscountType']
142
+ end
98
143
  end
99
144
 
100
145
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -116,12 +161,17 @@ module DocuSign_eSign
116
161
  return true if self.equal?(o)
117
162
  self.class == o.class &&
118
163
  account_payment_method == o.account_payment_method &&
164
+ discount_applied == o.discount_applied &&
119
165
  downgrade_effective_date == o.downgrade_effective_date &&
120
166
  downgrade_payment_cycle == o.downgrade_payment_cycle &&
121
167
  downgrade_plan_id == o.downgrade_plan_id &&
122
168
  downgrade_plan_name == o.downgrade_plan_name &&
123
169
  downgrade_request_status == o.downgrade_request_status &&
124
- message == o.message
170
+ message == o.message &&
171
+ promo_code == o.promo_code &&
172
+ sale_discount == o.sale_discount &&
173
+ sale_discount_periods == o.sale_discount_periods &&
174
+ sale_discount_type == o.sale_discount_type
125
175
  end
126
176
 
127
177
  # @see the `==` method
@@ -133,7 +183,7 @@ module DocuSign_eSign
133
183
  # Calculates hash code according to all attributes.
134
184
  # @return [Fixnum] Hash code
135
185
  def hash
136
- [account_payment_method, downgrade_effective_date, downgrade_payment_cycle, downgrade_plan_id, downgrade_plan_name, downgrade_request_status, message].hash
186
+ [account_payment_method, discount_applied, downgrade_effective_date, downgrade_payment_cycle, downgrade_plan_id, downgrade_plan_name, downgrade_request_status, message, promo_code, sale_discount, sale_discount_periods, sale_discount_type].hash
137
187
  end
138
188
 
139
189
  # Builds the object from hash
@@ -126,8 +126,6 @@ module DocuSign_eSign
126
126
 
127
127
  attr_accessor :phone_number
128
128
 
129
- attr_accessor :phone_number_metadata
130
-
131
129
  # Reserved:
132
130
  attr_accessor :recipient_attachments
133
131
 
@@ -249,7 +247,6 @@ module DocuSign_eSign
249
247
  :'note_metadata' => :'noteMetadata',
250
248
  :'phone_authentication' => :'phoneAuthentication',
251
249
  :'phone_number' => :'phoneNumber',
252
- :'phone_number_metadata' => :'phoneNumberMetadata',
253
250
  :'recipient_attachments' => :'recipientAttachments',
254
251
  :'recipient_authentication_status' => :'recipientAuthenticationStatus',
255
252
  :'recipient_feature_metadata' => :'recipientFeatureMetadata',
@@ -326,7 +323,6 @@ module DocuSign_eSign
326
323
  :'note_metadata' => :'PropertyMetadata',
327
324
  :'phone_authentication' => :'RecipientPhoneAuthentication',
328
325
  :'phone_number' => :'RecipientPhoneNumber',
329
- :'phone_number_metadata' => :'PropertyMetadata',
330
326
  :'recipient_attachments' => :'Array<RecipientAttachment>',
331
327
  :'recipient_authentication_status' => :'AuthenticationStatus',
332
328
  :'recipient_feature_metadata' => :'Array<FeatureAvailableMetadata>',
@@ -543,10 +539,6 @@ module DocuSign_eSign
543
539
  self.phone_number = attributes[:'phoneNumber']
544
540
  end
545
541
 
546
- if attributes.has_key?(:'phoneNumberMetadata')
547
- self.phone_number_metadata = attributes[:'phoneNumberMetadata']
548
- end
549
-
550
542
  if attributes.has_key?(:'recipientAttachments')
551
543
  if (value = attributes[:'recipientAttachments']).is_a?(Array)
552
544
  self.recipient_attachments = value
@@ -725,7 +717,6 @@ module DocuSign_eSign
725
717
  note_metadata == o.note_metadata &&
726
718
  phone_authentication == o.phone_authentication &&
727
719
  phone_number == o.phone_number &&
728
- phone_number_metadata == o.phone_number_metadata &&
729
720
  recipient_attachments == o.recipient_attachments &&
730
721
  recipient_authentication_status == o.recipient_authentication_status &&
731
722
  recipient_feature_metadata == o.recipient_feature_metadata &&
@@ -764,7 +755,7 @@ module DocuSign_eSign
764
755
  # Calculates hash code according to all attributes.
765
756
  # @return [Fixnum] Hash code
766
757
  def hash
767
- [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, phone_number_metadata, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
758
+ [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
768
759
  end
769
760
 
770
761
  # Builds the object from hash
@@ -129,8 +129,6 @@ module DocuSign_eSign
129
129
 
130
130
  attr_accessor :phone_number
131
131
 
132
- attr_accessor :phone_number_metadata
133
-
134
132
  # Reserved:
135
133
  attr_accessor :recipient_attachments
136
134
 
@@ -253,7 +251,6 @@ module DocuSign_eSign
253
251
  :'note_metadata' => :'noteMetadata',
254
252
  :'phone_authentication' => :'phoneAuthentication',
255
253
  :'phone_number' => :'phoneNumber',
256
- :'phone_number_metadata' => :'phoneNumberMetadata',
257
254
  :'recipient_attachments' => :'recipientAttachments',
258
255
  :'recipient_authentication_status' => :'recipientAuthenticationStatus',
259
256
  :'recipient_feature_metadata' => :'recipientFeatureMetadata',
@@ -331,7 +328,6 @@ module DocuSign_eSign
331
328
  :'note_metadata' => :'PropertyMetadata',
332
329
  :'phone_authentication' => :'RecipientPhoneAuthentication',
333
330
  :'phone_number' => :'RecipientPhoneNumber',
334
- :'phone_number_metadata' => :'PropertyMetadata',
335
331
  :'recipient_attachments' => :'Array<RecipientAttachment>',
336
332
  :'recipient_authentication_status' => :'AuthenticationStatus',
337
333
  :'recipient_feature_metadata' => :'Array<FeatureAvailableMetadata>',
@@ -554,10 +550,6 @@ module DocuSign_eSign
554
550
  self.phone_number = attributes[:'phoneNumber']
555
551
  end
556
552
 
557
- if attributes.has_key?(:'phoneNumberMetadata')
558
- self.phone_number_metadata = attributes[:'phoneNumberMetadata']
559
- end
560
-
561
553
  if attributes.has_key?(:'recipientAttachments')
562
554
  if (value = attributes[:'recipientAttachments']).is_a?(Array)
563
555
  self.recipient_attachments = value
@@ -737,7 +729,6 @@ module DocuSign_eSign
737
729
  note_metadata == o.note_metadata &&
738
730
  phone_authentication == o.phone_authentication &&
739
731
  phone_number == o.phone_number &&
740
- phone_number_metadata == o.phone_number_metadata &&
741
732
  recipient_attachments == o.recipient_attachments &&
742
733
  recipient_authentication_status == o.recipient_authentication_status &&
743
734
  recipient_feature_metadata == o.recipient_feature_metadata &&
@@ -776,7 +767,7 @@ module DocuSign_eSign
776
767
  # Calculates hash code according to all attributes.
777
768
  # @return [Fixnum] Hash code
778
769
  def hash
779
- [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, phone_number_metadata, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
770
+ [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, allow_system_override_for_locked_recipient, auto_responded_reason, client_user_id, completed_count, custom_fields, declined_date_time, declined_reason, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, last_name, last_name_metadata, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, note, note_metadata, phone_authentication, phone_number, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, role_name, routing_order, routing_order_metadata, sent_date_time, signed_date_time, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, template_locked, template_required, total_tab_count, user_id].hash
780
771
  end
781
772
 
782
773
  # Builds the object from hash
@@ -169,8 +169,6 @@ module DocuSign_eSign
169
169
 
170
170
  attr_accessor :phone_number
171
171
 
172
- attr_accessor :phone_number_metadata
173
-
174
172
  attr_accessor :proof_file
175
173
 
176
174
  # Reserved:
@@ -333,7 +331,6 @@ module DocuSign_eSign
333
331
  :'offline_attributes' => :'offlineAttributes',
334
332
  :'phone_authentication' => :'phoneAuthentication',
335
333
  :'phone_number' => :'phoneNumber',
336
- :'phone_number_metadata' => :'phoneNumberMetadata',
337
334
  :'proof_file' => :'proofFile',
338
335
  :'recipient_attachments' => :'recipientAttachments',
339
336
  :'recipient_authentication_status' => :'recipientAuthenticationStatus',
@@ -435,7 +432,6 @@ module DocuSign_eSign
435
432
  :'offline_attributes' => :'OfflineAttributes',
436
433
  :'phone_authentication' => :'RecipientPhoneAuthentication',
437
434
  :'phone_number' => :'RecipientPhoneNumber',
438
- :'phone_number_metadata' => :'PropertyMetadata',
439
435
  :'proof_file' => :'RecipientProofFile',
440
436
  :'recipient_attachments' => :'Array<RecipientAttachment>',
441
437
  :'recipient_authentication_status' => :'AuthenticationStatus',
@@ -726,10 +722,6 @@ module DocuSign_eSign
726
722
  self.phone_number = attributes[:'phoneNumber']
727
723
  end
728
724
 
729
- if attributes.has_key?(:'phoneNumberMetadata')
730
- self.phone_number_metadata = attributes[:'phoneNumberMetadata']
731
- end
732
-
733
725
  if attributes.has_key?(:'proofFile')
734
726
  self.proof_file = attributes[:'proofFile']
735
727
  end
@@ -965,7 +957,6 @@ module DocuSign_eSign
965
957
  offline_attributes == o.offline_attributes &&
966
958
  phone_authentication == o.phone_authentication &&
967
959
  phone_number == o.phone_number &&
968
- phone_number_metadata == o.phone_number_metadata &&
969
960
  proof_file == o.proof_file &&
970
961
  recipient_attachments == o.recipient_attachments &&
971
962
  recipient_authentication_status == o.recipient_authentication_status &&
@@ -1014,7 +1005,7 @@ module DocuSign_eSign
1014
1005
  # Calculates hash code according to all attributes.
1015
1006
  # @return [Fixnum] Hash code
1016
1007
  def hash
1017
- [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, bulk_recipients_uri, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, live_oak_start_url, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, notary_signers, notary_type, note, note_metadata, offline_attributes, phone_authentication, phone_number, phone_number_metadata, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, require_signer_certificate, require_sign_on_paper, require_upload_signature, role_name, routing_order, routing_order_metadata, sent_date_time, signature_info, signed_date_time, sign_in_each_location, sign_in_each_location_metadata, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
1008
+ [access_code, access_code_metadata, add_access_code_to_email, additional_notifications, agent_can_edit_email, agent_can_edit_name, allow_system_override_for_locked_recipient, auto_navigation, auto_responded_reason, bulk_recipients_uri, can_sign_offline, client_user_id, completed_count, creation_reason, custom_fields, declined_date_time, declined_reason, default_recipient, delivered_date_time, delivery_method, delivery_method_metadata, designator_id, designator_id_guid, document_visibility, email, email_metadata, email_notification, embedded_recipient_start_url, error_details, excluded_documents, fax_number, fax_number_metadata, first_name, first_name_metadata, full_name, full_name_metadata, id_check_configuration_name, id_check_configuration_name_metadata, id_check_information_input, identity_verification, inherit_email_notification_configuration, is_bulk_recipient, is_bulk_recipient_metadata, last_name, last_name_metadata, live_oak_start_url, locked_recipient_phone_auth_editable, locked_recipient_sms_editable, name, name_metadata, notary_id, notary_signers, notary_type, note, note_metadata, offline_attributes, phone_authentication, phone_number, proof_file, recipient_attachments, recipient_authentication_status, recipient_feature_metadata, recipient_id, recipient_id_guid, recipient_signature_providers, recipient_supplies_tabs, recipient_type, recipient_type_metadata, require_id_lookup, require_id_lookup_metadata, require_signer_certificate, require_sign_on_paper, require_upload_signature, role_name, routing_order, routing_order_metadata, sent_date_time, signature_info, signed_date_time, sign_in_each_location, sign_in_each_location_metadata, signing_group_id, signing_group_id_metadata, signing_group_name, signing_group_users, sms_authentication, social_authentications, status, status_code, suppress_emails, tabs, template_locked, template_required, total_tab_count, user_id].hash
1018
1009
  end
1019
1010
 
1020
1011
  # Builds the object from hash
@@ -13,12 +13,16 @@ require 'date'
13
13
 
14
14
  module DocuSign_eSign
15
15
  class RecipientProofFile
16
+ #
17
+ attr_accessor :has_identity_attempts
18
+
16
19
  #
17
20
  attr_accessor :is_in_proof_file
18
21
 
19
22
  # Attribute mapping from ruby-style variable name to JSON key.
20
23
  def self.attribute_map
21
24
  {
25
+ :'has_identity_attempts' => :'hasIdentityAttempts',
22
26
  :'is_in_proof_file' => :'isInProofFile'
23
27
  }
24
28
  end
@@ -26,6 +30,7 @@ module DocuSign_eSign
26
30
  # Attribute type mapping.
27
31
  def self.swagger_types
28
32
  {
33
+ :'has_identity_attempts' => :'String',
29
34
  :'is_in_proof_file' => :'String'
30
35
  }
31
36
  end
@@ -38,6 +43,10 @@ module DocuSign_eSign
38
43
  # convert string to symbol for hash key
39
44
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
40
45
 
46
+ if attributes.has_key?(:'hasIdentityAttempts')
47
+ self.has_identity_attempts = attributes[:'hasIdentityAttempts']
48
+ end
49
+
41
50
  if attributes.has_key?(:'isInProofFile')
42
51
  self.is_in_proof_file = attributes[:'isInProofFile']
43
52
  end
@@ -61,6 +70,7 @@ module DocuSign_eSign
61
70
  def ==(o)
62
71
  return true if self.equal?(o)
63
72
  self.class == o.class &&
73
+ has_identity_attempts == o.has_identity_attempts &&
64
74
  is_in_proof_file == o.is_in_proof_file
65
75
  end
66
76
 
@@ -73,7 +83,7 @@ module DocuSign_eSign
73
83
  # Calculates hash code according to all attributes.
74
84
  # @return [Fixnum] Hash code
75
85
  def hash
76
- [is_in_proof_file].hash
86
+ [has_identity_attempts, is_in_proof_file].hash
77
87
  end
78
88
 
79
89
  # Builds the object from hash
@@ -232,6 +232,9 @@ module DocuSign_eSign
232
232
  #
233
233
  attr_accessor :number_total_recipients
234
234
 
235
+ #
236
+ attr_accessor :other_recipients_list
237
+
235
238
  #
236
239
  attr_accessor :owner
237
240
 
@@ -334,6 +337,12 @@ module DocuSign_eSign
334
337
  #
335
338
  attr_accessor :sender_user_id
336
339
 
340
+ #
341
+ attr_accessor :signature_type
342
+
343
+ #
344
+ attr_accessor :signature_type_value
345
+
337
346
  #
338
347
  attr_accessor :sign_date
339
348
 
@@ -512,6 +521,7 @@ module DocuSign_eSign
512
521
  :'number_of_total_signers' => :'numberOfTotalSigners',
513
522
  :'number_of_unique_senders' => :'numberOfUniqueSenders',
514
523
  :'number_total_recipients' => :'numberTotalRecipients',
524
+ :'other_recipients_list' => :'otherRecipientsList',
515
525
  :'owner' => :'owner',
516
526
  :'owner_mail' => :'ownerMail',
517
527
  :'period_end' => :'periodEnd',
@@ -546,6 +556,8 @@ module DocuSign_eSign
546
556
  :'sender_job_title' => :'senderJobTitle',
547
557
  :'sender_name' => :'senderName',
548
558
  :'sender_user_id' => :'senderUserId',
559
+ :'signature_type' => :'signatureType',
560
+ :'signature_type_value' => :'signatureTypeValue',
549
561
  :'sign_date' => :'signDate',
550
562
  :'signed' => :'signed',
551
563
  :'signed_date' => :'signedDate',
@@ -659,6 +671,7 @@ module DocuSign_eSign
659
671
  :'number_of_total_signers' => :'String',
660
672
  :'number_of_unique_senders' => :'String',
661
673
  :'number_total_recipients' => :'String',
674
+ :'other_recipients_list' => :'String',
662
675
  :'owner' => :'String',
663
676
  :'owner_mail' => :'String',
664
677
  :'period_end' => :'String',
@@ -693,6 +706,8 @@ module DocuSign_eSign
693
706
  :'sender_job_title' => :'String',
694
707
  :'sender_name' => :'String',
695
708
  :'sender_user_id' => :'String',
709
+ :'signature_type' => :'String',
710
+ :'signature_type_value' => :'String',
696
711
  :'sign_date' => :'String',
697
712
  :'signed' => :'String',
698
713
  :'signed_date' => :'String',
@@ -1030,6 +1045,10 @@ module DocuSign_eSign
1030
1045
  self.number_total_recipients = attributes[:'numberTotalRecipients']
1031
1046
  end
1032
1047
 
1048
+ if attributes.has_key?(:'otherRecipientsList')
1049
+ self.other_recipients_list = attributes[:'otherRecipientsList']
1050
+ end
1051
+
1033
1052
  if attributes.has_key?(:'owner')
1034
1053
  self.owner = attributes[:'owner']
1035
1054
  end
@@ -1166,6 +1185,14 @@ module DocuSign_eSign
1166
1185
  self.sender_user_id = attributes[:'senderUserId']
1167
1186
  end
1168
1187
 
1188
+ if attributes.has_key?(:'signatureType')
1189
+ self.signature_type = attributes[:'signatureType']
1190
+ end
1191
+
1192
+ if attributes.has_key?(:'signatureTypeValue')
1193
+ self.signature_type_value = attributes[:'signatureTypeValue']
1194
+ end
1195
+
1169
1196
  if attributes.has_key?(:'signDate')
1170
1197
  self.sign_date = attributes[:'signDate']
1171
1198
  end
@@ -1394,6 +1421,7 @@ module DocuSign_eSign
1394
1421
  number_of_total_signers == o.number_of_total_signers &&
1395
1422
  number_of_unique_senders == o.number_of_unique_senders &&
1396
1423
  number_total_recipients == o.number_total_recipients &&
1424
+ other_recipients_list == o.other_recipients_list &&
1397
1425
  owner == o.owner &&
1398
1426
  owner_mail == o.owner_mail &&
1399
1427
  period_end == o.period_end &&
@@ -1428,6 +1456,8 @@ module DocuSign_eSign
1428
1456
  sender_job_title == o.sender_job_title &&
1429
1457
  sender_name == o.sender_name &&
1430
1458
  sender_user_id == o.sender_user_id &&
1459
+ signature_type == o.signature_type &&
1460
+ signature_type_value == o.signature_type_value &&
1431
1461
  sign_date == o.sign_date &&
1432
1462
  signed == o.signed &&
1433
1463
  signed_date == o.signed_date &&
@@ -1473,7 +1503,7 @@ module DocuSign_eSign
1473
1503
  # Calculates hash code according to all attributes.
1474
1504
  # @return [Fixnum] Hash code
1475
1505
  def hash
1476
- [access_code_required, access_codes_attempted, access_codes_failed, account_id, authentication_category, authentication_success, authentication_type, average_time_to_complete_seconds, avg_complete_seconds, capture_method, completed, completed_ts, created_date, created_on, creator, custom_field, declined_date, declined_reason, delivered_date, envelope_count, envelope_creator, envelope_id, envelope_initial_send_ts, envelopes_billed, envelopes_completed, envelopes_completed_count, envelopes_declined, envelopes_sent, envelopes_sent_count, envelopes_voided, envelope_voided_reason, eod_document_description, eod_document_name, eod_document_profile_id, eod_transaction_id, eod_transaction_name, event_date, expiration_date, expired_ts, failure_reason, failures, failure_vendor_code, failure_vendor_reason, first_send_ts, group_id, group_name, hours_to_complete_end, hours_to_complete_start, id_checks_attempted, id_checks_failed, id_country, id_method, initial_send_ts, ip_address, last_activity, last_activity_date, last_modified, last_sent_date, last_used, metadata_removed, not_signed, number_of_authenticated_recipients, number_of_completed_signatures, number_of_documents, number_of_pages, number_of_recipients, number_of_sends, number_of_signers, number_of_total_documents, number_of_total_pages, number_of_total_signers, number_of_unique_senders, number_total_recipients, owner, owner_mail, period_end, period_start, phone_calls_attempted, phone_calls_failed, pii_redacted, purge_date, reason_for_declining, reason_for_voiding, reassign_reason, received, recipient, recipient_action, recipient_company_name, recipient_country, recipient_email, recipient_id, recipient_name, recipient_role_name, recipient_template_role_name, recipient_title, recipient_type, recipient_user_id, remaining_signatures, routing_order, sender_account_id, sender_company_name, sender_country, sender_email, sender_ip_address, sender_job_title, sender_name, sender_user_id, sign_date, signed, signed_date, signed_on_mobile, signed_on_paper, signer_list, status, status_changed_date, status_changed_ts, status_comment, subject, successes, template_id, template_name, templates_created, templates_created_count, terminal_status_date, time_to_complete_seconds, time_to_deliver, total_documents, total_envelopes, total_pages, total_recipients, total_signers, unique_senders, user_account_email, user_account_name, user_account_status, user_count, user_id, verification_status, verification_type, view_date, voided_ts].hash
1506
+ [access_code_required, access_codes_attempted, access_codes_failed, account_id, authentication_category, authentication_success, authentication_type, average_time_to_complete_seconds, avg_complete_seconds, capture_method, completed, completed_ts, created_date, created_on, creator, custom_field, declined_date, declined_reason, delivered_date, envelope_count, envelope_creator, envelope_id, envelope_initial_send_ts, envelopes_billed, envelopes_completed, envelopes_completed_count, envelopes_declined, envelopes_sent, envelopes_sent_count, envelopes_voided, envelope_voided_reason, eod_document_description, eod_document_name, eod_document_profile_id, eod_transaction_id, eod_transaction_name, event_date, expiration_date, expired_ts, failure_reason, failures, failure_vendor_code, failure_vendor_reason, first_send_ts, group_id, group_name, hours_to_complete_end, hours_to_complete_start, id_checks_attempted, id_checks_failed, id_country, id_method, initial_send_ts, ip_address, last_activity, last_activity_date, last_modified, last_sent_date, last_used, metadata_removed, not_signed, number_of_authenticated_recipients, number_of_completed_signatures, number_of_documents, number_of_pages, number_of_recipients, number_of_sends, number_of_signers, number_of_total_documents, number_of_total_pages, number_of_total_signers, number_of_unique_senders, number_total_recipients, other_recipients_list, owner, owner_mail, period_end, period_start, phone_calls_attempted, phone_calls_failed, pii_redacted, purge_date, reason_for_declining, reason_for_voiding, reassign_reason, received, recipient, recipient_action, recipient_company_name, recipient_country, recipient_email, recipient_id, recipient_name, recipient_role_name, recipient_template_role_name, recipient_title, recipient_type, recipient_user_id, remaining_signatures, routing_order, sender_account_id, sender_company_name, sender_country, sender_email, sender_ip_address, sender_job_title, sender_name, sender_user_id, signature_type, signature_type_value, sign_date, signed, signed_date, signed_on_mobile, signed_on_paper, signer_list, status, status_changed_date, status_changed_ts, status_comment, subject, successes, template_id, template_name, templates_created, templates_created_count, terminal_status_date, time_to_complete_seconds, time_to_deliver, total_documents, total_envelopes, total_pages, total_recipients, total_signers, unique_senders, user_account_email, user_account_name, user_account_status, user_count, user_id, verification_status, verification_type, view_date, voided_ts].hash
1477
1507
  end
1478
1508
 
1479
1509
  # Builds the object from hash