docusign_esign 3.7.0.rc1 → 3.8.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +8 -9
  3. data/docusign_esign-2.8.0.rc1.gem +0 -0
  4. data/lib/docusign_esign.rb +29 -1
  5. data/lib/docusign_esign/api/accounts_api.rb +65 -8
  6. data/lib/docusign_esign/api/bulk_envelopes_api.rb +22 -298
  7. data/lib/docusign_esign/api/connect_api.rb +196 -0
  8. data/lib/docusign_esign/api/envelopes_api.rb +1502 -78
  9. data/lib/docusign_esign/api/groups_api.rb +9 -9
  10. data/lib/docusign_esign/api/trust_service_providers_api.rb +232 -0
  11. data/lib/docusign_esign/api/users_api.rb +52 -0
  12. data/lib/docusign_esign/models/account_billing_plan.rb +11 -1
  13. data/lib/docusign_esign/models/account_information.rb +34 -4
  14. data/lib/docusign_esign/models/account_settings_information.rb +134 -1
  15. data/lib/docusign_esign/models/account_ui_settings.rb +20 -1
  16. data/lib/docusign_esign/models/bulk_send_batch_request.rb +184 -0
  17. data/lib/docusign_esign/models/bulk_send_batch_status.rb +21 -1
  18. data/lib/docusign_esign/models/complete_sign_hash_response.rb +7 -11
  19. data/lib/docusign_esign/models/complete_sign_request.rb +7 -11
  20. data/lib/docusign_esign/models/credential.rb +7 -11
  21. data/lib/docusign_esign/models/display_appliance_account.rb +224 -0
  22. data/lib/docusign_esign/models/display_appliance_info.rb +174 -0
  23. data/lib/docusign_esign/models/display_appliance_pdf.rb +174 -0
  24. data/lib/docusign_esign/models/display_appliance_signer_attachment.rb +174 -0
  25. data/lib/docusign_esign/models/document.rb +11 -1
  26. data/lib/docusign_esign/models/document_security_store.rb +7 -11
  27. data/lib/docusign_esign/models/document_update_info.rb +7 -11
  28. data/lib/docusign_esign/models/envelope_form_data.rb +13 -1
  29. data/lib/docusign_esign/models/external_claim.rb +7 -11
  30. data/lib/docusign_esign/models/group_brands.rb +207 -0
  31. data/lib/docusign_esign/models/payment_details.rb +10 -1
  32. data/lib/docusign_esign/models/payment_signer_values.rb +184 -0
  33. data/lib/docusign_esign/models/prefill_tabs.rb +222 -0
  34. data/lib/docusign_esign/models/revision.rb +7 -11
  35. data/lib/docusign_esign/models/seal.rb +8 -12
  36. data/lib/docusign_esign/models/sender.rb +7 -11
  37. data/lib/docusign_esign/models/sign_hash_document.rb +7 -11
  38. data/lib/docusign_esign/models/sign_hash_session_info_response.rb +7 -11
  39. data/lib/docusign_esign/models/sign_session_info_request.rb +7 -11
  40. data/lib/docusign_esign/models/signature_data_info.rb +7 -11
  41. data/lib/docusign_esign/models/signature_properties.rb +7 -11
  42. data/lib/docusign_esign/models/tab_account_settings.rb +20 -1
  43. data/lib/docusign_esign/models/tabs.rb +10 -1
  44. data/lib/docusign_esign/models/template_tabs.rb +10 -1
  45. data/lib/docusign_esign/models/time_stamp_field.rb +7 -11
  46. data/lib/docusign_esign/models/tsp_health_check_request.rb +7 -11
  47. data/lib/docusign_esign/models/tsp_health_check_status_description.rb +7 -11
  48. data/lib/docusign_esign/models/update_transaction_request.rb +7 -11
  49. data/lib/docusign_esign/models/update_transaction_response.rb +7 -11
  50. data/lib/docusign_esign/models/user.rb +7 -11
  51. data/lib/docusign_esign/models/user_info_response.rb +7 -11
  52. data/lib/docusign_esign/models/user_information.rb +11 -1
  53. data/lib/docusign_esign/version.rb +1 -1
  54. data/tests/Gemfile.lock +9 -5
  55. metadata +11 -2
@@ -110,7 +110,7 @@ module DocuSign_eSign
110
110
  # @param account_id The external account number (int) or account ID Guid.
111
111
  # @param group_id The ID of the group being accessed.
112
112
  # @param brands_request (optional parameter)
113
- # @return [BrandsResponse]
113
+ # @return [GroupBrands]
114
114
  def delete_brands(account_id, group_id, brands_request)
115
115
  data, _status_code, _headers = delete_brands_with_http_info(account_id, group_id, brands_request)
116
116
  return data
@@ -121,7 +121,7 @@ module DocuSign_eSign
121
121
  # @param account_id The external account number (int) or account ID Guid.
122
122
  # @param group_id The ID of the group being accessed.
123
123
  # @param brands_request (optional parameter)
124
- # @return [Array<(BrandsResponse, Fixnum, Hash)>] BrandsResponse data, response status code and response headers
124
+ # @return [Array<(GroupBrands, Fixnum, Hash)>] GroupBrands data, response status code and response headers
125
125
  def delete_brands_with_http_info(account_id, group_id, brands_request)
126
126
  if @api_client.config.debugging
127
127
  @api_client.config.logger.debug "Calling API: GroupsApi.delete_brands ..."
@@ -153,7 +153,7 @@ module DocuSign_eSign
153
153
  :form_params => form_params,
154
154
  :body => post_body,
155
155
  :auth_names => auth_names,
156
- :return_type => 'BrandsResponse')
156
+ :return_type => 'GroupBrands')
157
157
  if @api_client.config.debugging
158
158
  @api_client.config.logger.debug "API called: GroupsApi#delete_brands\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
159
159
  end
@@ -270,7 +270,7 @@ module DocuSign_eSign
270
270
  # Retrieves information about the brands associated with the requested group.
271
271
  # @param account_id The external account number (int) or account ID Guid.
272
272
  # @param group_id The ID of the group being accessed.
273
- # @return [BrandsResponse]
273
+ # @return [GroupBrands]
274
274
  def get_brands(account_id, group_id)
275
275
  data, _status_code, _headers = get_brands_with_http_info(account_id, group_id)
276
276
  return data
@@ -280,7 +280,7 @@ module DocuSign_eSign
280
280
  # Retrieves information about the brands associated with the requested group.
281
281
  # @param account_id The external account number (int) or account ID Guid.
282
282
  # @param group_id The ID of the group being accessed.
283
- # @return [Array<(BrandsResponse, Fixnum, Hash)>] BrandsResponse data, response status code and response headers
283
+ # @return [Array<(GroupBrands, Fixnum, Hash)>] GroupBrands data, response status code and response headers
284
284
  def get_brands_with_http_info(account_id, group_id)
285
285
  if @api_client.config.debugging
286
286
  @api_client.config.logger.debug "Calling API: GroupsApi.get_brands ..."
@@ -312,7 +312,7 @@ module DocuSign_eSign
312
312
  :form_params => form_params,
313
313
  :body => post_body,
314
314
  :auth_names => auth_names,
315
- :return_type => 'BrandsResponse')
315
+ :return_type => 'GroupBrands')
316
316
  if @api_client.config.debugging
317
317
  @api_client.config.logger.debug "API called: GroupsApi#get_brands\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
318
318
  end
@@ -437,7 +437,7 @@ module DocuSign_eSign
437
437
  # @param account_id The external account number (int) or account ID Guid.
438
438
  # @param group_id The ID of the group being accessed.
439
439
  # @param brands_request (optional parameter)
440
- # @return [BrandsResponse]
440
+ # @return [GroupBrands]
441
441
  def update_brands(account_id, group_id, brands_request)
442
442
  data, _status_code, _headers = update_brands_with_http_info(account_id, group_id, brands_request)
443
443
  return data
@@ -448,7 +448,7 @@ module DocuSign_eSign
448
448
  # @param account_id The external account number (int) or account ID Guid.
449
449
  # @param group_id The ID of the group being accessed.
450
450
  # @param brands_request (optional parameter)
451
- # @return [Array<(BrandsResponse, Fixnum, Hash)>] BrandsResponse data, response status code and response headers
451
+ # @return [Array<(GroupBrands, Fixnum, Hash)>] GroupBrands data, response status code and response headers
452
452
  def update_brands_with_http_info(account_id, group_id, brands_request)
453
453
  if @api_client.config.debugging
454
454
  @api_client.config.logger.debug "Calling API: GroupsApi.update_brands ..."
@@ -480,7 +480,7 @@ module DocuSign_eSign
480
480
  :form_params => form_params,
481
481
  :body => post_body,
482
482
  :auth_names => auth_names,
483
- :return_type => 'BrandsResponse')
483
+ :return_type => 'GroupBrands')
484
484
  if @api_client.config.debugging
485
485
  @api_client.config.logger.debug "API called: GroupsApi#update_brands\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
486
486
  end
@@ -21,6 +21,53 @@ module DocuSign_eSign
21
21
  @api_client = api_client
22
22
  end
23
23
 
24
+ # Complete Sign Hash
25
+ #
26
+ # @param complete_sign_request (optional parameter)
27
+ # @return [CompleteSignHashResponse]
28
+ def complete_sign_hash(complete_sign_request)
29
+ data, _status_code, _headers = complete_sign_hash_with_http_info( complete_sign_request)
30
+ return data
31
+ end
32
+
33
+ # Complete Sign Hash
34
+ #
35
+ # @param complete_sign_request (optional parameter)
36
+ # @return [Array<(CompleteSignHashResponse, Fixnum, Hash)>] CompleteSignHashResponse data, response status code and response headers
37
+ def complete_sign_hash_with_http_info(complete_sign_request)
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug "Calling API: TrustServiceProvidersApi.complete_sign_hash ..."
40
+ end
41
+ # resource path
42
+ local_var_path = "/v2.1/signature/completesignhash".sub('{format}','json')
43
+
44
+ # query parameters
45
+ query_params = {}
46
+
47
+ # header parameters
48
+ header_params = {}
49
+ # HTTP header 'Accept' (if needed)
50
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
51
+
52
+ # form parameters
53
+ form_params = {}
54
+
55
+ # http body (model)
56
+ post_body = @api_client.object_to_http_body(complete_sign_request)
57
+ auth_names = []
58
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
59
+ :header_params => header_params,
60
+ :query_params => query_params,
61
+ :form_params => form_params,
62
+ :body => post_body,
63
+ :auth_names => auth_names,
64
+ :return_type => 'CompleteSignHashResponse')
65
+ if @api_client.config.debugging
66
+ @api_client.config.logger.debug "API called: TrustServiceProvidersApi#complete_sign_hash\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
67
+ end
68
+ return data, status_code, headers
69
+ end
70
+
24
71
  # Returns Account available seals for specified account.
25
72
  #
26
73
  # @param account_id The external account number (int) or account ID Guid.
@@ -69,5 +116,190 @@ module DocuSign_eSign
69
116
  end
70
117
  return data, status_code, headers
71
118
  end
119
+
120
+ # Get User Info To Sign Document
121
+ #
122
+ # @return [UserInfoResponse]
123
+ def get_user_info()
124
+ data, _status_code, _headers = get_user_info_with_http_info()
125
+ return data
126
+ end
127
+
128
+ # Get User Info To Sign Document
129
+ #
130
+ # @return [Array<(UserInfoResponse, Fixnum, Hash)>] UserInfoResponse data, response status code and response headers
131
+ def get_user_info_with_http_info()
132
+ if @api_client.config.debugging
133
+ @api_client.config.logger.debug "Calling API: TrustServiceProvidersApi.get_user_info ..."
134
+ end
135
+ # resource path
136
+ local_var_path = "/v2.1/signature/userInfo".sub('{format}','json')
137
+
138
+ # query parameters
139
+ query_params = {}
140
+
141
+ # header parameters
142
+ header_params = {}
143
+ # HTTP header 'Accept' (if needed)
144
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
145
+
146
+ # form parameters
147
+ form_params = {}
148
+
149
+ # http body (model)
150
+ post_body = nil
151
+ auth_names = []
152
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
153
+ :header_params => header_params,
154
+ :query_params => query_params,
155
+ :form_params => form_params,
156
+ :body => post_body,
157
+ :auth_names => auth_names,
158
+ :return_type => 'UserInfoResponse')
159
+ if @api_client.config.debugging
160
+ @api_client.config.logger.debug "API called: TrustServiceProvidersApi#get_user_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
161
+ end
162
+ return data, status_code, headers
163
+ end
164
+
165
+ # Report status from the TSP to DocuSign
166
+ #
167
+ # @param tsp_health_check_request (optional parameter)
168
+ # @return [nil]
169
+ def health_check(tsp_health_check_request)
170
+ health_check_with_http_info( tsp_health_check_request)
171
+ return nil
172
+ end
173
+
174
+ # Report status from the TSP to DocuSign
175
+ #
176
+ # @param tsp_health_check_request (optional parameter)
177
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
178
+ def health_check_with_http_info(tsp_health_check_request)
179
+ if @api_client.config.debugging
180
+ @api_client.config.logger.debug "Calling API: TrustServiceProvidersApi.health_check ..."
181
+ end
182
+ # resource path
183
+ local_var_path = "/v2.1/signature/healthcheck".sub('{format}','json')
184
+
185
+ # query parameters
186
+ query_params = {}
187
+
188
+ # header parameters
189
+ header_params = {}
190
+ # HTTP header 'Accept' (if needed)
191
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
192
+
193
+ # form parameters
194
+ form_params = {}
195
+
196
+ # http body (model)
197
+ post_body = @api_client.object_to_http_body(tsp_health_check_request)
198
+ auth_names = []
199
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
200
+ :header_params => header_params,
201
+ :query_params => query_params,
202
+ :form_params => form_params,
203
+ :body => post_body,
204
+ :auth_names => auth_names)
205
+ if @api_client.config.debugging
206
+ @api_client.config.logger.debug "API called: TrustServiceProvidersApi#health_check\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
207
+ end
208
+ return data, status_code, headers
209
+ end
210
+
211
+ # Get Signature Session Info To Sign Document Hash
212
+ #
213
+ # @param sign_session_info_request (optional parameter)
214
+ # @return [SignHashSessionInfoResponse]
215
+ def sign_hash_session_info(sign_session_info_request)
216
+ data, _status_code, _headers = sign_hash_session_info_with_http_info( sign_session_info_request)
217
+ return data
218
+ end
219
+
220
+ # Get Signature Session Info To Sign Document Hash
221
+ #
222
+ # @param sign_session_info_request (optional parameter)
223
+ # @return [Array<(SignHashSessionInfoResponse, Fixnum, Hash)>] SignHashSessionInfoResponse data, response status code and response headers
224
+ def sign_hash_session_info_with_http_info(sign_session_info_request)
225
+ if @api_client.config.debugging
226
+ @api_client.config.logger.debug "Calling API: TrustServiceProvidersApi.sign_hash_session_info ..."
227
+ end
228
+ # resource path
229
+ local_var_path = "/v2.1/signature/signhashsessioninfo".sub('{format}','json')
230
+
231
+ # query parameters
232
+ query_params = {}
233
+
234
+ # header parameters
235
+ header_params = {}
236
+ # HTTP header 'Accept' (if needed)
237
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
238
+
239
+ # form parameters
240
+ form_params = {}
241
+
242
+ # http body (model)
243
+ post_body = @api_client.object_to_http_body(sign_session_info_request)
244
+ auth_names = []
245
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
246
+ :header_params => header_params,
247
+ :query_params => query_params,
248
+ :form_params => form_params,
249
+ :body => post_body,
250
+ :auth_names => auth_names,
251
+ :return_type => 'SignHashSessionInfoResponse')
252
+ if @api_client.config.debugging
253
+ @api_client.config.logger.debug "API called: TrustServiceProvidersApi#sign_hash_session_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
254
+ end
255
+ return data, status_code, headers
256
+ end
257
+
258
+ # Report an error from the tsp to docusign
259
+ #
260
+ # @param update_transaction_request (optional parameter)
261
+ # @return [UpdateTransactionResponse]
262
+ def update_transaction(update_transaction_request)
263
+ data, _status_code, _headers = update_transaction_with_http_info( update_transaction_request)
264
+ return data
265
+ end
266
+
267
+ # Report an error from the tsp to docusign
268
+ #
269
+ # @param update_transaction_request (optional parameter)
270
+ # @return [Array<(UpdateTransactionResponse, Fixnum, Hash)>] UpdateTransactionResponse data, response status code and response headers
271
+ def update_transaction_with_http_info(update_transaction_request)
272
+ if @api_client.config.debugging
273
+ @api_client.config.logger.debug "Calling API: TrustServiceProvidersApi.update_transaction ..."
274
+ end
275
+ # resource path
276
+ local_var_path = "/v2.1/signature/updatetransaction".sub('{format}','json')
277
+
278
+ # query parameters
279
+ query_params = {}
280
+
281
+ # header parameters
282
+ header_params = {}
283
+ # HTTP header 'Accept' (if needed)
284
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
285
+
286
+ # form parameters
287
+ form_params = {}
288
+
289
+ # http body (model)
290
+ post_body = @api_client.object_to_http_body(update_transaction_request)
291
+ auth_names = []
292
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
293
+ :header_params => header_params,
294
+ :query_params => query_params,
295
+ :form_params => form_params,
296
+ :body => post_body,
297
+ :auth_names => auth_names,
298
+ :return_type => 'UpdateTransactionResponse')
299
+ if @api_client.config.debugging
300
+ @api_client.config.logger.debug "API called: TrustServiceProvidersApi#update_transaction\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
301
+ end
302
+ return data, status_code, headers
303
+ end
72
304
  end
73
305
  end
@@ -1019,6 +1019,58 @@ module DocuSign_eSign
1019
1019
  return data, status_code, headers
1020
1020
  end
1021
1021
 
1022
+ # Retrieves UserList Export Results data.
1023
+ #
1024
+ # @param organization_id
1025
+ # @param result_id
1026
+ # @return [nil]
1027
+ def get_user_list_export(organization_id, result_id)
1028
+ get_user_list_export_with_http_info(organization_id, result_id)
1029
+ return nil
1030
+ end
1031
+
1032
+ # Retrieves UserList Export Results data.
1033
+ #
1034
+ # @param organization_id
1035
+ # @param result_id
1036
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
1037
+ def get_user_list_export_with_http_info(organization_id, result_id)
1038
+ if @api_client.config.debugging
1039
+ @api_client.config.logger.debug "Calling API: UsersApi.get_user_list_export ..."
1040
+ end
1041
+ # verify the required parameter 'organization_id' is set
1042
+ fail ArgumentError, "Missing the required parameter 'organization_id' when calling UsersApi.get_user_list_export" if organization_id.nil?
1043
+ # verify the required parameter 'result_id' is set
1044
+ fail ArgumentError, "Missing the required parameter 'result_id' when calling UsersApi.get_user_list_export" if result_id.nil?
1045
+ # resource path
1046
+ local_var_path = "/v2.1/organization_exports/{organizationId}/user_list/{resultId}".sub('{format}','json').sub('{' + 'organizationId' + '}', organization_id.to_s).sub('{' + 'resultId' + '}', result_id.to_s)
1047
+
1048
+ # query parameters
1049
+ query_params = {}
1050
+
1051
+ # header parameters
1052
+ header_params = {}
1053
+ # HTTP header 'Accept' (if needed)
1054
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1055
+
1056
+ # form parameters
1057
+ form_params = {}
1058
+
1059
+ # http body (model)
1060
+ post_body = nil
1061
+ auth_names = []
1062
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
1063
+ :header_params => header_params,
1064
+ :query_params => query_params,
1065
+ :form_params => form_params,
1066
+ :body => post_body,
1067
+ :auth_names => auth_names)
1068
+ if @api_client.config.debugging
1069
+ @api_client.config.logger.debug "API called: UsersApi#get_user_list_export\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1070
+ end
1071
+ return data, status_code, headers
1072
+ end
1073
+
1022
1074
  # Retrieves the list of users for the specified account.
1023
1075
  # Retrieves the list of users for the specified account. The response returns the list of users for the account along with the information about the result set. If the `additional_info` query was added to the endpoint and set to **true**, the full user information is returned for each user
1024
1076
  # @param account_id The external account number (int) or account ID Guid.
@@ -40,6 +40,9 @@ module DocuSign_eSign
40
40
  #
41
41
  attr_accessor :is_downgrade
42
42
 
43
+ #
44
+ attr_accessor :notification_type
45
+
43
46
  # Any other percentage discount for the plan.
44
47
  attr_accessor :other_discount_percent
45
48
 
@@ -88,6 +91,7 @@ module DocuSign_eSign
88
91
  :'included_seats' => :'includedSeats',
89
92
  :'incremental_seats' => :'incrementalSeats',
90
93
  :'is_downgrade' => :'isDowngrade',
94
+ :'notification_type' => :'notificationType',
91
95
  :'other_discount_percent' => :'otherDiscountPercent',
92
96
  :'payment_cycle' => :'paymentCycle',
93
97
  :'payment_method' => :'paymentMethod',
@@ -115,6 +119,7 @@ module DocuSign_eSign
115
119
  :'included_seats' => :'String',
116
120
  :'incremental_seats' => :'String',
117
121
  :'is_downgrade' => :'String',
122
+ :'notification_type' => :'String',
118
123
  :'other_discount_percent' => :'String',
119
124
  :'payment_cycle' => :'String',
120
125
  :'payment_method' => :'String',
@@ -176,6 +181,10 @@ module DocuSign_eSign
176
181
  self.is_downgrade = attributes[:'isDowngrade']
177
182
  end
178
183
 
184
+ if attributes.has_key?(:'notificationType')
185
+ self.notification_type = attributes[:'notificationType']
186
+ end
187
+
179
188
  if attributes.has_key?(:'otherDiscountPercent')
180
189
  self.other_discount_percent = attributes[:'otherDiscountPercent']
181
190
  end
@@ -256,6 +265,7 @@ module DocuSign_eSign
256
265
  included_seats == o.included_seats &&
257
266
  incremental_seats == o.incremental_seats &&
258
267
  is_downgrade == o.is_downgrade &&
268
+ notification_type == o.notification_type &&
259
269
  other_discount_percent == o.other_discount_percent &&
260
270
  payment_cycle == o.payment_cycle &&
261
271
  payment_method == o.payment_method &&
@@ -279,7 +289,7 @@ module DocuSign_eSign
279
289
  # Calculates hash code according to all attributes.
280
290
  # @return [Fixnum] Hash code
281
291
  def hash
282
- [add_ons, can_cancel_renewal, can_upgrade, currency_code, downgrade_plan_information, enable_support, included_seats, incremental_seats, is_downgrade, other_discount_percent, payment_cycle, payment_method, per_seat_price, plan_classification, plan_feature_sets, plan_id, plan_name, renewal_status, seat_discounts, support_incident_fee, support_plan_fee].hash
292
+ [add_ons, can_cancel_renewal, can_upgrade, currency_code, downgrade_plan_information, enable_support, included_seats, incremental_seats, is_downgrade, notification_type, other_discount_percent, payment_cycle, payment_method, per_seat_price, plan_classification, plan_feature_sets, plan_id, plan_name, renewal_status, seat_discounts, support_incident_fee, support_plan_fee].hash
283
293
  end
284
294
 
285
295
  # Builds the object from hash
@@ -58,6 +58,12 @@ module DocuSign_eSign
58
58
  # Identifies the plan that was used create this account.
59
59
  attr_accessor :current_plan_id
60
60
 
61
+ #
62
+ attr_accessor :display_appliance_start_url
63
+
64
+ #
65
+ attr_accessor :display_appliance_url
66
+
61
67
  # The code that identifies the billing plan groups and plans for the new account.
62
68
  attr_accessor :distributor_code
63
69
 
@@ -115,6 +121,9 @@ module DocuSign_eSign
115
121
  #
116
122
  attr_accessor :suspension_status
117
123
 
124
+ #
125
+ attr_accessor :use_display_appliance
126
+
118
127
  # Attribute mapping from ruby-style variable name to JSON key.
119
128
  def self.attribute_map
120
129
  {
@@ -133,6 +142,8 @@ module DocuSign_eSign
133
142
  :'created_date' => :'createdDate',
134
143
  :'currency_code' => :'currencyCode',
135
144
  :'current_plan_id' => :'currentPlanId',
145
+ :'display_appliance_start_url' => :'displayApplianceStartUrl',
146
+ :'display_appliance_url' => :'displayApplianceUrl',
136
147
  :'distributor_code' => :'distributorCode',
137
148
  :'docu_sign_landing_url' => :'docuSignLandingUrl',
138
149
  :'dss_values' => :'dssValues',
@@ -151,7 +162,8 @@ module DocuSign_eSign
151
162
  :'seats_in_use' => :'seatsInUse',
152
163
  :'status21_cfr_part11' => :'status21CFRPart11',
153
164
  :'suspension_date' => :'suspensionDate',
154
- :'suspension_status' => :'suspensionStatus'
165
+ :'suspension_status' => :'suspensionStatus',
166
+ :'use_display_appliance' => :'useDisplayAppliance'
155
167
  }
156
168
  end
157
169
 
@@ -173,6 +185,8 @@ module DocuSign_eSign
173
185
  :'created_date' => :'String',
174
186
  :'currency_code' => :'String',
175
187
  :'current_plan_id' => :'String',
188
+ :'display_appliance_start_url' => :'String',
189
+ :'display_appliance_url' => :'String',
176
190
  :'distributor_code' => :'String',
177
191
  :'docu_sign_landing_url' => :'String',
178
192
  :'dss_values' => :'Hash<String, String>',
@@ -191,7 +205,8 @@ module DocuSign_eSign
191
205
  :'seats_in_use' => :'String',
192
206
  :'status21_cfr_part11' => :'String',
193
207
  :'suspension_date' => :'String',
194
- :'suspension_status' => :'String'
208
+ :'suspension_status' => :'String',
209
+ :'use_display_appliance' => :'BOOLEAN'
195
210
  }
196
211
  end
197
212
 
@@ -263,6 +278,14 @@ module DocuSign_eSign
263
278
  self.current_plan_id = attributes[:'currentPlanId']
264
279
  end
265
280
 
281
+ if attributes.has_key?(:'displayApplianceStartUrl')
282
+ self.display_appliance_start_url = attributes[:'displayApplianceStartUrl']
283
+ end
284
+
285
+ if attributes.has_key?(:'displayApplianceUrl')
286
+ self.display_appliance_url = attributes[:'displayApplianceUrl']
287
+ end
288
+
266
289
  if attributes.has_key?(:'distributorCode')
267
290
  self.distributor_code = attributes[:'distributorCode']
268
291
  end
@@ -342,6 +365,10 @@ module DocuSign_eSign
342
365
  if attributes.has_key?(:'suspensionStatus')
343
366
  self.suspension_status = attributes[:'suspensionStatus']
344
367
  end
368
+
369
+ if attributes.has_key?(:'useDisplayAppliance')
370
+ self.use_display_appliance = attributes[:'useDisplayAppliance']
371
+ end
345
372
  end
346
373
 
347
374
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -377,6 +404,8 @@ module DocuSign_eSign
377
404
  created_date == o.created_date &&
378
405
  currency_code == o.currency_code &&
379
406
  current_plan_id == o.current_plan_id &&
407
+ display_appliance_start_url == o.display_appliance_start_url &&
408
+ display_appliance_url == o.display_appliance_url &&
380
409
  distributor_code == o.distributor_code &&
381
410
  docu_sign_landing_url == o.docu_sign_landing_url &&
382
411
  dss_values == o.dss_values &&
@@ -395,7 +424,8 @@ module DocuSign_eSign
395
424
  seats_in_use == o.seats_in_use &&
396
425
  status21_cfr_part11 == o.status21_cfr_part11 &&
397
426
  suspension_date == o.suspension_date &&
398
- suspension_status == o.suspension_status
427
+ suspension_status == o.suspension_status &&
428
+ use_display_appliance == o.use_display_appliance
399
429
  end
400
430
 
401
431
  # @see the `==` method
@@ -407,7 +437,7 @@ module DocuSign_eSign
407
437
  # Calculates hash code according to all attributes.
408
438
  # @return [Fixnum] Hash code
409
439
  def hash
410
- [account_id_guid, account_name, account_settings, allow_transaction_rooms, billing_period_days_remaining, billing_period_end_date, billing_period_envelopes_allowed, billing_period_envelopes_sent, billing_period_start_date, billing_profile, can_upgrade, connect_permission, created_date, currency_code, current_plan_id, distributor_code, docu_sign_landing_url, dss_values, envelope_sending_blocked, envelope_unit_price, external_account_id, forgotten_password_questions_count, is_downgrade, payment_method, plan_classification, plan_end_date, plan_name, plan_start_date, recipient_domains, seats_allowed, seats_in_use, status21_cfr_part11, suspension_date, suspension_status].hash
440
+ [account_id_guid, account_name, account_settings, allow_transaction_rooms, billing_period_days_remaining, billing_period_end_date, billing_period_envelopes_allowed, billing_period_envelopes_sent, billing_period_start_date, billing_profile, can_upgrade, connect_permission, created_date, currency_code, current_plan_id, display_appliance_start_url, display_appliance_url, distributor_code, docu_sign_landing_url, dss_values, envelope_sending_blocked, envelope_unit_price, external_account_id, forgotten_password_questions_count, is_downgrade, payment_method, plan_classification, plan_end_date, plan_name, plan_start_date, recipient_domains, seats_allowed, seats_in_use, status21_cfr_part11, suspension_date, suspension_status, use_display_appliance].hash
411
441
  end
412
442
 
413
443
  # Builds the object from hash