DealMakerAPI 0.84.1 → 0.85.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -6
- data/docs/BulkUploadInvestorsRequest.md +3 -1
- data/docs/CompanyApi.md +162 -14
- data/docs/CreateBulkUploadRequest.md +5 -1
- data/docs/CreateCorporationProfileRequest.md +2 -2
- data/docs/CreateShareholderActionRequest.md +20 -0
- data/docs/CreateTrustProfileRequest.md +2 -2
- data/docs/DealsApi.md +75 -0
- data/docs/InvestorProfileApi.md +6 -8
- data/docs/PatchCorporationProfileRequest.md +27 -1
- data/docs/PutDealsIdScriptTagEnvironmentRequest.md +18 -0
- data/docs/V1EntitiesBulkUpload.md +6 -0
- data/docs/V1EntitiesBulkUploadDetail.md +2 -0
- data/docs/V1EntitiesDealIssuer.md +3 -1
- data/docs/V1EntitiesGenericResponse.md +20 -0
- data/docs/V1EntitiesInvestor.md +1 -1
- data/lib/DealMakerAPI/api/company_api.rb +171 -13
- data/lib/DealMakerAPI/api/deals_api.rb +94 -0
- data/lib/DealMakerAPI/api/investor_profile_api.rb +10 -6
- data/lib/DealMakerAPI/models/bulk_upload_investors_request.rb +14 -4
- data/lib/DealMakerAPI/models/create_bulk_upload_request.rb +38 -4
- data/lib/DealMakerAPI/models/create_corporation_profile_request.rb +8 -8
- data/lib/DealMakerAPI/models/create_individual_profile_request.rb +2 -2
- data/lib/DealMakerAPI/models/create_joint_profile_request.rb +2 -2
- data/lib/DealMakerAPI/models/create_shareholder_action_request.rb +239 -0
- data/lib/DealMakerAPI/models/create_trust_profile_request.rb +8 -8
- data/lib/DealMakerAPI/models/patch_corporation_profile_request.rb +167 -4
- data/lib/DealMakerAPI/models/patch_individual_profile_request.rb +2 -2
- data/lib/DealMakerAPI/models/patch_joint_profile_request.rb +2 -2
- data/lib/DealMakerAPI/models/put_deals_id_script_tag_environment_request.rb +222 -0
- data/lib/DealMakerAPI/models/v1_entities_bulk_upload.rb +31 -1
- data/lib/DealMakerAPI/models/v1_entities_bulk_upload_detail.rb +11 -1
- data/lib/DealMakerAPI/models/v1_entities_deal_issuer.rb +14 -4
- data/lib/DealMakerAPI/models/v1_entities_generic_response.rb +226 -0
- data/lib/DealMakerAPI/models/v1_entities_investor.rb +1 -1
- data/lib/DealMakerAPI/version.rb +1 -1
- data/lib/DealMakerAPI.rb +4 -0
- data/spec/api/company_api_spec.rb +34 -4
- data/spec/api/deals_api_spec.rb +48 -0
- data/spec/api/investor_profile_api_spec.rb +1 -1
- data/spec/models/bulk_upload_investors_request_spec.rb +6 -0
- data/spec/models/create_bulk_upload_request_spec.rb +12 -0
- data/spec/models/create_corporation_profile_request_spec.rb +1 -1
- data/spec/models/create_individual_profile_request_spec.rb +1 -1
- data/spec/models/create_joint_profile_request_spec.rb +1 -1
- data/spec/models/create_shareholder_action_request_spec.rb +40 -0
- data/spec/models/create_trust_profile_request_spec.rb +1 -1
- data/spec/models/patch_corporation_profile_request_spec.rb +78 -0
- data/spec/models/patch_individual_profile_request_spec.rb +1 -1
- data/spec/models/patch_joint_profile_request_spec.rb +1 -1
- data/spec/models/put_deals_id_script_tag_environment_request_spec.rb +34 -0
- data/spec/models/v1_entities_bulk_upload_detail_spec.rb +6 -0
- data/spec/models/v1_entities_bulk_upload_spec.rb +18 -0
- data/spec/models/v1_entities_deal_issuer_spec.rb +6 -0
- data/spec/models/v1_entities_generic_response_spec.rb +40 -0
- metadata +80 -64
@@ -0,0 +1,20 @@
|
|
1
|
+
# DealMakerAPI::V1EntitiesGenericResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **success** | **Boolean** | The status of the creation response | [optional] |
|
8
|
+
| **message** | **String** | The message of the creation response | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'DealMakerAPI'
|
14
|
+
|
15
|
+
instance = DealMakerAPI::V1EntitiesGenericResponse.new(
|
16
|
+
success: null,
|
17
|
+
message: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/V1EntitiesInvestor.md
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
| **investment_value** | **Float** | The current investment value. | [optional] |
|
21
21
|
| **allocated_amount** | **Float** | The amount allocated. | [optional] |
|
22
22
|
| **funds_value** | **Float** | The current amount that has been funded. | [optional] |
|
23
|
-
| **access_link** | **String** | The access link for the investor. This is the access link for the specific investment, not the user. If the same user has multiple investments, each one will have a different access link. | [optional] |
|
23
|
+
| **access_link** | **String** | The access link for the investor. This is the access link for the specific investment, not the user. If the same user has multiple investments, each one will have a different access link. Please note that this access link expires every hour. In order to redirect the investor into their authentication screen, use the https://app.dealmaker.tech/deals/{{deal_id}}/investors/{{investor_id}}/otp_access url. | [optional] |
|
24
24
|
| **subscription_agreement** | [**V1EntitiesSubscriptionAgreement**](V1EntitiesSubscriptionAgreement.md) | | [optional] |
|
25
25
|
| **attachments** | [**V1EntitiesAttachment**](V1EntitiesAttachment.md) | | [optional] |
|
26
26
|
| **background_check_searches** | [**V1EntitiesBackgroundCheckSearch**](V1EntitiesBackgroundCheckSearch.md) | | [optional] |
|
@@ -241,37 +241,195 @@ module DealMakerAPI
|
|
241
241
|
return data, status_code, headers
|
242
242
|
end
|
243
243
|
|
244
|
-
#
|
245
|
-
#
|
244
|
+
# Create a shareholder action
|
245
|
+
# Create a shareholder action
|
246
|
+
# @param company_id [Integer] The company id
|
247
|
+
# @param shareholder_id [Integer] The shareholder id
|
248
|
+
# @param create_shareholder_action_request [CreateShareholderActionRequest]
|
249
|
+
# @param [Hash] opts the optional parameters
|
250
|
+
# @return [V1EntitiesGenericResponse]
|
251
|
+
def create_shareholder_action(company_id, shareholder_id, create_shareholder_action_request, opts = {})
|
252
|
+
data, _status_code, _headers = create_shareholder_action_with_http_info(company_id, shareholder_id, create_shareholder_action_request, opts)
|
253
|
+
data
|
254
|
+
end
|
255
|
+
|
256
|
+
# Create a shareholder action
|
257
|
+
# Create a shareholder action
|
258
|
+
# @param company_id [Integer] The company id
|
259
|
+
# @param shareholder_id [Integer] The shareholder id
|
260
|
+
# @param create_shareholder_action_request [CreateShareholderActionRequest]
|
261
|
+
# @param [Hash] opts the optional parameters
|
262
|
+
# @return [Array<(V1EntitiesGenericResponse, Integer, Hash)>] V1EntitiesGenericResponse data, response status code and response headers
|
263
|
+
def create_shareholder_action_with_http_info(company_id, shareholder_id, create_shareholder_action_request, opts = {})
|
264
|
+
if @api_client.config.debugging
|
265
|
+
@api_client.config.logger.debug 'Calling API: CompanyApi.create_shareholder_action ...'
|
266
|
+
end
|
267
|
+
# verify the required parameter 'company_id' is set
|
268
|
+
if @api_client.config.client_side_validation && company_id.nil?
|
269
|
+
fail ArgumentError, "Missing the required parameter 'company_id' when calling CompanyApi.create_shareholder_action"
|
270
|
+
end
|
271
|
+
# verify the required parameter 'shareholder_id' is set
|
272
|
+
if @api_client.config.client_side_validation && shareholder_id.nil?
|
273
|
+
fail ArgumentError, "Missing the required parameter 'shareholder_id' when calling CompanyApi.create_shareholder_action"
|
274
|
+
end
|
275
|
+
# verify the required parameter 'create_shareholder_action_request' is set
|
276
|
+
if @api_client.config.client_side_validation && create_shareholder_action_request.nil?
|
277
|
+
fail ArgumentError, "Missing the required parameter 'create_shareholder_action_request' when calling CompanyApi.create_shareholder_action"
|
278
|
+
end
|
279
|
+
# resource path
|
280
|
+
local_var_path = '/companies/{company_id}/shareholders/{shareholder_id}/actions'.sub('{' + 'company_id' + '}', CGI.escape(company_id.to_s)).sub('{' + 'shareholder_id' + '}', CGI.escape(shareholder_id.to_s))
|
281
|
+
|
282
|
+
# query parameters
|
283
|
+
query_params = opts[:query_params] || {}
|
284
|
+
|
285
|
+
# header parameters
|
286
|
+
header_params = opts[:header_params] || {}
|
287
|
+
# HTTP header 'Accept' (if needed)
|
288
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
289
|
+
# HTTP header 'Content-Type'
|
290
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
291
|
+
if !content_type.nil?
|
292
|
+
header_params['Content-Type'] = content_type
|
293
|
+
end
|
294
|
+
|
295
|
+
# form parameters
|
296
|
+
form_params = opts[:form_params] || {}
|
297
|
+
|
298
|
+
# http body (model)
|
299
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(create_shareholder_action_request)
|
300
|
+
|
301
|
+
# return_type
|
302
|
+
return_type = opts[:debug_return_type] || 'V1EntitiesGenericResponse'
|
303
|
+
|
304
|
+
# auth_names
|
305
|
+
auth_names = opts[:debug_auth_names] || []
|
306
|
+
|
307
|
+
new_options = opts.merge(
|
308
|
+
:operation => :"CompanyApi.create_shareholder_action",
|
309
|
+
:header_params => header_params,
|
310
|
+
:query_params => query_params,
|
311
|
+
:form_params => form_params,
|
312
|
+
:body => post_body,
|
313
|
+
:auth_names => auth_names,
|
314
|
+
:return_type => return_type
|
315
|
+
)
|
316
|
+
|
317
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
318
|
+
if @api_client.config.debugging
|
319
|
+
@api_client.config.logger.debug "API called: CompanyApi#create_shareholder_action\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
320
|
+
end
|
321
|
+
return data, status_code, headers
|
322
|
+
end
|
323
|
+
|
324
|
+
# Return a given bulk upload by id
|
325
|
+
# Return a given bulk upload by id
|
326
|
+
# @param id [Integer]
|
327
|
+
# @param bulk_upload_id [Integer]
|
328
|
+
# @param [Hash] opts the optional parameters
|
329
|
+
# @option opts [Integer] :page Page offset to fetch. (default to 1)
|
330
|
+
# @option opts [Integer] :per_page Number of results to return per page. (default to 25)
|
331
|
+
# @option opts [Integer] :offset Pad a number of results. (default to 0)
|
332
|
+
# @return [V1EntitiesBulkUpload]
|
333
|
+
def get_bulk_upload(id, bulk_upload_id, opts = {})
|
334
|
+
data, _status_code, _headers = get_bulk_upload_with_http_info(id, bulk_upload_id, opts)
|
335
|
+
data
|
336
|
+
end
|
337
|
+
|
338
|
+
# Return a given bulk upload by id
|
339
|
+
# Return a given bulk upload by id
|
340
|
+
# @param id [Integer]
|
341
|
+
# @param bulk_upload_id [Integer]
|
342
|
+
# @param [Hash] opts the optional parameters
|
343
|
+
# @option opts [Integer] :page Page offset to fetch. (default to 1)
|
344
|
+
# @option opts [Integer] :per_page Number of results to return per page. (default to 25)
|
345
|
+
# @option opts [Integer] :offset Pad a number of results. (default to 0)
|
346
|
+
# @return [Array<(V1EntitiesBulkUpload, Integer, Hash)>] V1EntitiesBulkUpload data, response status code and response headers
|
347
|
+
def get_bulk_upload_with_http_info(id, bulk_upload_id, opts = {})
|
348
|
+
if @api_client.config.debugging
|
349
|
+
@api_client.config.logger.debug 'Calling API: CompanyApi.get_bulk_upload ...'
|
350
|
+
end
|
351
|
+
# verify the required parameter 'id' is set
|
352
|
+
if @api_client.config.client_side_validation && id.nil?
|
353
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling CompanyApi.get_bulk_upload"
|
354
|
+
end
|
355
|
+
# verify the required parameter 'bulk_upload_id' is set
|
356
|
+
if @api_client.config.client_side_validation && bulk_upload_id.nil?
|
357
|
+
fail ArgumentError, "Missing the required parameter 'bulk_upload_id' when calling CompanyApi.get_bulk_upload"
|
358
|
+
end
|
359
|
+
# resource path
|
360
|
+
local_var_path = '/companies/{id}/documents/bulk_uploads/{bulk_upload_id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)).sub('{' + 'bulk_upload_id' + '}', CGI.escape(bulk_upload_id.to_s))
|
361
|
+
|
362
|
+
# query parameters
|
363
|
+
query_params = opts[:query_params] || {}
|
364
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
365
|
+
query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil?
|
366
|
+
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
367
|
+
|
368
|
+
# header parameters
|
369
|
+
header_params = opts[:header_params] || {}
|
370
|
+
# HTTP header 'Accept' (if needed)
|
371
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
372
|
+
|
373
|
+
# form parameters
|
374
|
+
form_params = opts[:form_params] || {}
|
375
|
+
|
376
|
+
# http body (model)
|
377
|
+
post_body = opts[:debug_body]
|
378
|
+
|
379
|
+
# return_type
|
380
|
+
return_type = opts[:debug_return_type] || 'V1EntitiesBulkUpload'
|
381
|
+
|
382
|
+
# auth_names
|
383
|
+
auth_names = opts[:debug_auth_names] || []
|
384
|
+
|
385
|
+
new_options = opts.merge(
|
386
|
+
:operation => :"CompanyApi.get_bulk_upload",
|
387
|
+
:header_params => header_params,
|
388
|
+
:query_params => query_params,
|
389
|
+
:form_params => form_params,
|
390
|
+
:body => post_body,
|
391
|
+
:auth_names => auth_names,
|
392
|
+
:return_type => return_type
|
393
|
+
)
|
394
|
+
|
395
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
396
|
+
if @api_client.config.debugging
|
397
|
+
@api_client.config.logger.debug "API called: CompanyApi#get_bulk_upload\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
398
|
+
end
|
399
|
+
return data, status_code, headers
|
400
|
+
end
|
401
|
+
|
402
|
+
# Returns a full list of details with errors of the given bulk upload ordered by status desc and id asc
|
403
|
+
# Returns a full list of details with errors of the given bulk upload
|
246
404
|
# @param company_id [Integer]
|
247
405
|
# @param bulk_upload_id [Integer]
|
248
406
|
# @param [Hash] opts the optional parameters
|
249
407
|
# @return [V1EntitiesBulkUploadDetails]
|
250
|
-
def
|
251
|
-
data, _status_code, _headers =
|
408
|
+
def get_bulk_upload_details_errors(company_id, bulk_upload_id, opts = {})
|
409
|
+
data, _status_code, _headers = get_bulk_upload_details_errors_with_http_info(company_id, bulk_upload_id, opts)
|
252
410
|
data
|
253
411
|
end
|
254
412
|
|
255
|
-
#
|
256
|
-
#
|
413
|
+
# Returns a full list of details with errors of the given bulk upload ordered by status desc and id asc
|
414
|
+
# Returns a full list of details with errors of the given bulk upload
|
257
415
|
# @param company_id [Integer]
|
258
416
|
# @param bulk_upload_id [Integer]
|
259
417
|
# @param [Hash] opts the optional parameters
|
260
418
|
# @return [Array<(V1EntitiesBulkUploadDetails, Integer, Hash)>] V1EntitiesBulkUploadDetails data, response status code and response headers
|
261
|
-
def
|
419
|
+
def get_bulk_upload_details_errors_with_http_info(company_id, bulk_upload_id, opts = {})
|
262
420
|
if @api_client.config.debugging
|
263
|
-
@api_client.config.logger.debug 'Calling API: CompanyApi.
|
421
|
+
@api_client.config.logger.debug 'Calling API: CompanyApi.get_bulk_upload_details_errors ...'
|
264
422
|
end
|
265
423
|
# verify the required parameter 'company_id' is set
|
266
424
|
if @api_client.config.client_side_validation && company_id.nil?
|
267
|
-
fail ArgumentError, "Missing the required parameter 'company_id' when calling CompanyApi.
|
425
|
+
fail ArgumentError, "Missing the required parameter 'company_id' when calling CompanyApi.get_bulk_upload_details_errors"
|
268
426
|
end
|
269
427
|
# verify the required parameter 'bulk_upload_id' is set
|
270
428
|
if @api_client.config.client_side_validation && bulk_upload_id.nil?
|
271
|
-
fail ArgumentError, "Missing the required parameter 'bulk_upload_id' when calling CompanyApi.
|
429
|
+
fail ArgumentError, "Missing the required parameter 'bulk_upload_id' when calling CompanyApi.get_bulk_upload_details_errors"
|
272
430
|
end
|
273
431
|
# resource path
|
274
|
-
local_var_path = '/companies/{company_id}/documents/bulk_uploads/{bulk_upload_id}/details'.sub('{' + 'company_id' + '}', CGI.escape(company_id.to_s)).sub('{' + 'bulk_upload_id' + '}', CGI.escape(bulk_upload_id.to_s))
|
432
|
+
local_var_path = '/companies/{company_id}/documents/bulk_uploads/{bulk_upload_id}/details/errors'.sub('{' + 'company_id' + '}', CGI.escape(company_id.to_s)).sub('{' + 'bulk_upload_id' + '}', CGI.escape(bulk_upload_id.to_s))
|
275
433
|
|
276
434
|
# query parameters
|
277
435
|
query_params = opts[:query_params] || {}
|
@@ -294,7 +452,7 @@ module DealMakerAPI
|
|
294
452
|
auth_names = opts[:debug_auth_names] || []
|
295
453
|
|
296
454
|
new_options = opts.merge(
|
297
|
-
:operation => :"CompanyApi.
|
455
|
+
:operation => :"CompanyApi.get_bulk_upload_details_errors",
|
298
456
|
:header_params => header_params,
|
299
457
|
:query_params => query_params,
|
300
458
|
:form_params => form_params,
|
@@ -305,7 +463,7 @@ module DealMakerAPI
|
|
305
463
|
|
306
464
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
307
465
|
if @api_client.config.debugging
|
308
|
-
@api_client.config.logger.debug "API called: CompanyApi#
|
466
|
+
@api_client.config.logger.debug "API called: CompanyApi#get_bulk_upload_details_errors\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
309
467
|
end
|
310
468
|
return data, status_code, headers
|
311
469
|
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
=begin
|
2
|
+
#DealMaker API
|
3
|
+
|
4
|
+
## Introduction Welcome to DealMaker’s Web API v1! This API is RESTful, easy to integrate with, and offers support in 2 different languages. This is the technical documentation for our API. There are tutorials and examples of integrations with our API available on our [knowledge centre](https://help.dealmaker.tech/training-centre) as well. # Libraries - Javascript - Ruby # Authentication To authenticate, add an Authorization header to your API request that contains an access token. Before you [generate an access token](#how-to-generate-an-access-token) your must first [create an application](#create-an-application) on your portal and retrieve the your client ID and secret ## Create an Application DealMaker’s Web API v1 supports the use of OAuth applications. Applications can be generated in your [account](https://app.dealmaker.tech/developer/applications). To create an API Application, click on your user name in the top right corner to open a dropdown menu, and select \"Integrations\". Under the API settings tab, click the `Create New Application` button ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-1.png) Name your application and assign the level of permissions for this application ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-2.png) Once your application is created, save in a secure space your client ID and secret. **WARNING**: The secret key will not be visible after you click the close button ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-3.png) From the developer tab, you will be able to view and manage all the available applications ![Screenshot](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/api-application-4.png) Each Application consists of a client id, secret and set of scopes. The scopes define what resources you want to have access to. The client ID and secret are used to generate an access token. You will need to create an application to use API endpoints. ## How to generate an access token After creating an application, you must make a call to obtain a bearer token using the Generate an OAuth token operation. This operation requires the following parameters: `token endpoint` - https://app.dealmaker.tech/oauth/token `grant_type` - must be set to `client_credentials` `client_id` - the Client ID displayed when you created the OAuth application in the previous step `client_secret` - the Client Secret displayed when you created the OAuth application in the previous step `scope` - the scope is established when you created the OAuth application in the previous step Note: The Generate an OAuth token response specifies how long the bearer token is valid for. You should reuse the bearer token until it is expired. When the token is expired, call Generate an OAuth token again to generate a new one. To use the access token, you must set a plain text header named `Authorization` with the contents of the header being “Bearer XXX” where XXX is your generated access token. ### Example #### Postman Here's an example on how to generate the access token with Postman, where `{{CLIENT_ID}}` and `{{CLIENT_SECRET}}` are the values generated after following the steps on [Create an Application](#create-an-application) ![Get access token postman example](https://s3.ca-central-1.amazonaws.com/docs.dealmaker.tech/images/token-postman.png) # Status Codes ## Content-Type Header All responses are returned in JSON format. We specify this by sending the Content-Type header. ## Status Codes Below is a table containing descriptions of the various status codes we currently support against various resources. Sometimes your API call will generate an error. Here you will find additional information about what to expect if you don’t format your request properly, or we fail to properly process your request. | Status Code | Description | | ----------- | ----------- | | `200` | Success | | `403` | Forbidden | | `404` | Not found | # Pagination Pagination is used to divide large responses is smaller portions (pages). By default, all endpoints return a maximum of 25 records per page. You can change the number of records on a per request basis by passing a `per_page` parameter in the request header parameters. The largest supported `per_page` parameter is 100. When the response exceeds the `per_page` parameter, you can paginate through the records by increasing the `offset` parameter. Example: `offset=25` will return 25 records starting from 26th record. You may also paginate using the `page` parameter to indicate the page number you would like to show on the response. Please review the table below for the input parameters ## Inputs | Parameter | Description | | ---------- | ------------------------------------------------------------------------------- | | `per_page` | Amount of records included on each page (Default is 25) | | `page` | Page number | | `offset` | Amount of records offset on the API request where 0 represents the first record | ## Response Headers | Response Header | Description | | --------------- | -------------------------------------------- | | `X-Total` | Total number of records of response | | `X-Total-Pages` | Total number of pages of response | | `X-Per-Page` | Total number of records per page of response | | `X-Page` | Number of current page | | `X-Next-Page` | Number of next page | | `X-Prev-Page` | Number of previous page | | `X-Offset` | Total number of records offset | # Search and Filtering (The q parameter) The q optional parameter accepts a string as input and allows you to filter the request based on that string. Please note that search strings must be encoded according to ASCII. For example, \"john+investor@dealmaker.tech\" should be passed as “john%2Binvestor%40dealmaker.tech”. There are two main ways to filter with it. ## Keyword filtering Some keywords allow you to filter investors based on a specific “scope” of the investors, for example using the string “Invited” will filter all investors with the status invited, and the keyword “Has attachments” will filter investors with attachments. Here’s a list of possible keywords and the “scope” each one of the keywords filters by: | Keywords | Scope | Decoded Example | Encoded Example | | ---------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | | Signed on \\(date range\\) | Investors who signed in the provided date range | Signed on (date range) [2020-07-01:2020-07-31] | `Signed%20on%20%28date%20range%29%20%5B2020-07-01%3A2020-07-31%5D` | | Enabled for countersignature on \\(date range\\) | Investors who were enabled for counter signature in the provided date range | Enabled for countersignature on (date range) [2022-05-24:2022-05-25] | `Enabled%20for%20countersignature%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` | | Accepted on \\(date range\\) | Investors accepted in the provided date rage | Accepted on (date range) [2022-05-24:2022-05-25] | `Accepted%20on%20(date%20range)%20%5B2022-05-24%3A2022-05-25%5D` | | Offline | Investors added to the deal offline | Offline | `Offline` | | Online | Investors added to the deal online | Online | `Online` | | Signed | Investors who signed their agreement | Signed | `Signed` | | Waiting for countersignature | Investors who have signed and are waiting for counter signature | Waiting for countersignature | `Waiting%20for%20countersignature` | | Invited | Investors on the Invited Status | Invited | `Invited` | | Accepted | Investors in the Accepted Status | Accepted | `Accepted` | | Questionnaire in progress | All Investors who have not finished completing the questionnaire | Questionnaire in progress | `Questionnaire%20in%20progress` | | Has attachments | All Investors with attachments | Has attachments | `Has%20attachments` | | Has notes | All Investors with notes | Has notes | `Has%20notes` | | Waiting for co-signature | Investors who have signed and are waiting for co-signature | Waiting for co-signature | `Waiting%20for%20co-signature` | | Background Check Approved | Investors with approved background check | Background Check Approved | `Background%20Check%20Approved` | | Document Review Pending | Investors with pending review | Document Review Pending | `Document%20Review%20Pending` | | Document Upload Pending | Investors with pending documents to upload | Document Upload Pending | `Document%20Upload%20Pending` | | Required adjudicator review | Investors who are required to be review by the adjudicator | Required adjudicator review | `Required%20adjudicator%20review` | --- **NOTE** Filtering keywords are case sensitive and need to be encoded --- ## Search String Any value for the parameter which does not match one of the keywords listed above, will use fields like `first name`, `last name`, `email`, `tags` to search for the investor. For example, if you search “Robert”, because this does not match one of the keywords listed above, it will then return any investors who have the string “Robert” in their name, email, or tags fields. # Versioning The latest version is v1. The version can be updated on the `Accept` header, just set the version as stated on the following example: ``` Accept:application/vnd.dealmaker-v1+json ``` | Version | Accept Header | | ------- | ----------------------------------- | | `v1` | application/vnd.dealmaker-`v1`+json | # SDK’s For instruction on installing SDKs, please view the following links - [Javascript](https://github.com/DealMakerTech/api/tree/main/v1/clients/javascript) - [Ruby](https://github.com/DealMakerTech/api/tree/main/v1/clients/ruby) # Webhooks Our webhooks functionality allows clients to automatically receive updates on a deal's investor data. Some of the data that the webhooks include: - Investor Name - Date created - Email - Phone - Allocation - Attachments - Accredited investor status - Accredited investor category - State (Draft, Invited, Signed, Accepted, Waiting, Inactive) Via webhooks clients can subscribe to the following events as they happen on Dealmaker: - Investor is created - Investor details are updated (any of the investor details above change or are updated) - Investor has signed their agreement - Invertor fully funded their investment - Investor has been accepted - Investor is deleted A URL supplied by the client will receive all the events with the information as part of the payload. Clients are able to add and update the URL within DealMaker. ## Configuration For a comprehensive guide on how to configure Webhooks please visit our support article: [Configuring Webhooks on DealMaker – DealMaker Support](https://help.dealmaker.tech/configuring-webhooks-on-dealmaker). As a developer user on DealMaker, you are able to configure webhooks by following the steps below: 1. Sign into Dealmaker 2. Go to **“Your profile”** in the top right corner 3. Access an **“Integrations”** configuration via the left menu 4. The developer configures webhooks by including: - The HTTPS URL where the request will be sent - Optionally, a security token that we would use to build a SHA1 hash that would be included in the request headers. The name of the header is `X-DealMaker-Signature`. If the secret is not specified, the hash won’t be included in the headers. - The Deal(s) to include in the webhook subscription - An email address that will be used to notify about errors. 5. The developers can disable webhooks temporarily if needed ## Specification ### Events The initial set of events will be related to the investor. The events are: 1. `investor.created` - Triggers every time a new investor is added to a deal 2. `investor.updated` - Triggers on updates to any of the following fields: - Status - Name - Email - (this is a user field so we trigger event for all investors with webhook subscription) - Allocated Amount - Investment Amount - Accredited investor fields - Adding or removing attachments - Tags - When the investor status is signed, the payload also includes a link to the signed document; the link expires after 30 minutes 3. `investor.signed` - Triggers when the investor signs their subscription agreement (terms and conditions) - When this happens the investor.state becomes `signed` - This event includes the same fields as the `investor.updated` event 4. `investor.funded` - Triggers when the investor becomes fully funded - This happens when the investor.funded_state becomes `funded` - This event includes the same fields as the `investor.updated` event 5. `investor.accepted` - Triggers when the investor is countersigned - When this happens the investor.state becomes `accepted` - This event includes the same fields as the `investor.updated` event 6. `investor.deleted` - Triggers when the investor is removed from the deal - The investor key of the payload only includes investor ID - The deal is not included in the payload. Due to our implementation it’s impossible to retrieve the deal the investor was part of ### Requests - The request is a `POST` - The payload’s `content-type` is `application/json` - Only `2XX` responses are considered successful. In the event of a different response, we consider it failed and queue the event for retry - We retry the request five times, after the initial attempt. Doubling the waiting time between intervals with each try. The first retry happens after 30 seconds, then 60 seconds, 2 mins, 4 minutes, and 8 minutes. This timing scheme gives the receiver about 1 hour if all the requests fail - If an event fails all the attempts to be delivered, we send an email to the address that the user configured ### Payload #### Common Properties There will be some properties that are common to all the events on the system. | Key | Type | Description | | ----------------- | ------ | -------------------------------------------------------------------------------------- | | event | String | The event that triggered the call | | event_id | String | A unique identifier for the event | | deal<sup>\\*</sup> | Object | The deal in which the event occurred. please see below for an example on the deal object<sup>\\*\\*</sup> | <sup>\\*</sup>This field is not included when deleting a resource <sup>\\*\\*</sup> Sample Deal Object in the webhook payload ```json \"deal\": { \"id\": 0, \"title\": \"string\", \"created_at\": \"2022-12-06T18:14:44.000Z\", \"updated_at\": \"2022-12-08T12:46:48.000Z\", \"state\": \"string\", \"currency\": \"string\", \"security_type\": \"string\", \"price_per_security\": 0.00, \"deal_type\": \"string\", \"minimum_investment\": 0, \"maximum_investment\": 0, \"issuer\": { \"id\": 0, \"name\": \"string\" }, \"enterprise\": { \"id\": 0, \"name\": \"string\" } } ``` #### Common Properties (investor scope) By design, we have incorporated on the webhooks payload the same investor-related fields included in the Investor model, for reference on the included fields, their types and values please click [here](https://docs.dealmaker.tech/#tag/investor_model). This will allow you to get all the necessary information you need about a particular investor without having to call the Get Investor by ID endpoint. | #### Investor State Here is a brief description of each investor state: - **Draft:** the investor is added to the platform but hasn't been invited yet and cannot access the portal - **Invited:** the investor was added to the platform but hasn’t completed the questionnaire - **Signed:** the investor signed the document (needs approval from Lawyer or Reviewer before countersignature) - **Waiting:** the investor was approved for countersignature by any of the Lawyers or Reviewers in the deal - **Accepted:** the investor's agreement was countersigned by the Signatory - **Inactive** the investor is no longer eligible to participate in the offering. This may be because their warrant expired, they requested a refund, or they opted out of the offering #### Update Delay Given the high number of updates our platform performs on any investor, we’ve added a cool down period on update events that allows us to “group” updates and trigger only one every minute. In consequence, update events will be delivered 1 minute after the initial request was made and will include the latest version of the investor data at delivery time.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.75.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'cgi'
|
14
|
+
|
15
|
+
module DealMakerAPI
|
16
|
+
class DealsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Update script tag environment for the deal.
|
23
|
+
# Update script tag environment for the deal.
|
24
|
+
# @param id [Integer] The deal id.
|
25
|
+
# @param put_deals_id_script_tag_environment_request [PutDealsIdScriptTagEnvironmentRequest]
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [nil]
|
28
|
+
def put_deals_id_script_tag_environment(id, put_deals_id_script_tag_environment_request, opts = {})
|
29
|
+
put_deals_id_script_tag_environment_with_http_info(id, put_deals_id_script_tag_environment_request, opts)
|
30
|
+
nil
|
31
|
+
end
|
32
|
+
|
33
|
+
# Update script tag environment for the deal.
|
34
|
+
# Update script tag environment for the deal.
|
35
|
+
# @param id [Integer] The deal id.
|
36
|
+
# @param put_deals_id_script_tag_environment_request [PutDealsIdScriptTagEnvironmentRequest]
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
|
39
|
+
def put_deals_id_script_tag_environment_with_http_info(id, put_deals_id_script_tag_environment_request, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: DealsApi.put_deals_id_script_tag_environment ...'
|
42
|
+
end
|
43
|
+
# verify the required parameter 'id' is set
|
44
|
+
if @api_client.config.client_side_validation && id.nil?
|
45
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling DealsApi.put_deals_id_script_tag_environment"
|
46
|
+
end
|
47
|
+
# verify the required parameter 'put_deals_id_script_tag_environment_request' is set
|
48
|
+
if @api_client.config.client_side_validation && put_deals_id_script_tag_environment_request.nil?
|
49
|
+
fail ArgumentError, "Missing the required parameter 'put_deals_id_script_tag_environment_request' when calling DealsApi.put_deals_id_script_tag_environment"
|
50
|
+
end
|
51
|
+
# resource path
|
52
|
+
local_var_path = '/deals/{id}/script_tag_environment'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
|
53
|
+
|
54
|
+
# query parameters
|
55
|
+
query_params = opts[:query_params] || {}
|
56
|
+
|
57
|
+
# header parameters
|
58
|
+
header_params = opts[:header_params] || {}
|
59
|
+
# HTTP header 'Content-Type'
|
60
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
61
|
+
if !content_type.nil?
|
62
|
+
header_params['Content-Type'] = content_type
|
63
|
+
end
|
64
|
+
|
65
|
+
# form parameters
|
66
|
+
form_params = opts[:form_params] || {}
|
67
|
+
|
68
|
+
# http body (model)
|
69
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(put_deals_id_script_tag_environment_request)
|
70
|
+
|
71
|
+
# return_type
|
72
|
+
return_type = opts[:debug_return_type]
|
73
|
+
|
74
|
+
# auth_names
|
75
|
+
auth_names = opts[:debug_auth_names] || []
|
76
|
+
|
77
|
+
new_options = opts.merge(
|
78
|
+
:operation => :"DealsApi.put_deals_id_script_tag_environment",
|
79
|
+
:header_params => header_params,
|
80
|
+
:query_params => query_params,
|
81
|
+
:form_params => form_params,
|
82
|
+
:body => post_body,
|
83
|
+
:auth_names => auth_names,
|
84
|
+
:return_type => return_type
|
85
|
+
)
|
86
|
+
|
87
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
|
88
|
+
if @api_client.config.debugging
|
89
|
+
@api_client.config.logger.debug "API called: DealsApi#put_deals_id_script_tag_environment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
90
|
+
end
|
91
|
+
return data, status_code, headers
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -498,21 +498,21 @@ module DealMakerAPI
|
|
498
498
|
# Patch a corporation investor profile
|
499
499
|
# Patch corporation investor profile
|
500
500
|
# @param investor_profile_id [Integer]
|
501
|
+
# @param patch_corporation_profile_request [PatchCorporationProfileRequest]
|
501
502
|
# @param [Hash] opts the optional parameters
|
502
|
-
# @option opts [PatchCorporationProfileRequest] :patch_corporation_profile_request
|
503
503
|
# @return [V1EntitiesInvestorProfileCorporation]
|
504
|
-
def patch_corporation_profile(investor_profile_id, opts = {})
|
505
|
-
data, _status_code, _headers = patch_corporation_profile_with_http_info(investor_profile_id, opts)
|
504
|
+
def patch_corporation_profile(investor_profile_id, patch_corporation_profile_request, opts = {})
|
505
|
+
data, _status_code, _headers = patch_corporation_profile_with_http_info(investor_profile_id, patch_corporation_profile_request, opts)
|
506
506
|
data
|
507
507
|
end
|
508
508
|
|
509
509
|
# Patch a corporation investor profile
|
510
510
|
# Patch corporation investor profile
|
511
511
|
# @param investor_profile_id [Integer]
|
512
|
+
# @param patch_corporation_profile_request [PatchCorporationProfileRequest]
|
512
513
|
# @param [Hash] opts the optional parameters
|
513
|
-
# @option opts [PatchCorporationProfileRequest] :patch_corporation_profile_request
|
514
514
|
# @return [Array<(V1EntitiesInvestorProfileCorporation, Integer, Hash)>] V1EntitiesInvestorProfileCorporation data, response status code and response headers
|
515
|
-
def patch_corporation_profile_with_http_info(investor_profile_id, opts = {})
|
515
|
+
def patch_corporation_profile_with_http_info(investor_profile_id, patch_corporation_profile_request, opts = {})
|
516
516
|
if @api_client.config.debugging
|
517
517
|
@api_client.config.logger.debug 'Calling API: InvestorProfileApi.patch_corporation_profile ...'
|
518
518
|
end
|
@@ -520,6 +520,10 @@ module DealMakerAPI
|
|
520
520
|
if @api_client.config.client_side_validation && investor_profile_id.nil?
|
521
521
|
fail ArgumentError, "Missing the required parameter 'investor_profile_id' when calling InvestorProfileApi.patch_corporation_profile"
|
522
522
|
end
|
523
|
+
# verify the required parameter 'patch_corporation_profile_request' is set
|
524
|
+
if @api_client.config.client_side_validation && patch_corporation_profile_request.nil?
|
525
|
+
fail ArgumentError, "Missing the required parameter 'patch_corporation_profile_request' when calling InvestorProfileApi.patch_corporation_profile"
|
526
|
+
end
|
523
527
|
# resource path
|
524
528
|
local_var_path = '/investor_profiles/corporations/{investor_profile_id}'.sub('{' + 'investor_profile_id' + '}', CGI.escape(investor_profile_id.to_s))
|
525
529
|
|
@@ -540,7 +544,7 @@ module DealMakerAPI
|
|
540
544
|
form_params = opts[:form_params] || {}
|
541
545
|
|
542
546
|
# http body (model)
|
543
|
-
post_body = opts[:debug_body] || @api_client.object_to_http_body(
|
547
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(patch_corporation_profile_request)
|
544
548
|
|
545
549
|
# return_type
|
546
550
|
return_type = opts[:debug_return_type] || 'V1EntitiesInvestorProfileCorporation'
|
@@ -18,10 +18,14 @@ module DealMakerAPI
|
|
18
18
|
# The CSV file with data to upload.
|
19
19
|
attr_accessor :import_file
|
20
20
|
|
21
|
+
# The email to send alerts to.
|
22
|
+
attr_accessor :alerts_email
|
23
|
+
|
21
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
25
|
def self.attribute_map
|
23
26
|
{
|
24
|
-
:'import_file' => :'import_file'
|
27
|
+
:'import_file' => :'import_file',
|
28
|
+
:'alerts_email' => :'alerts_email'
|
25
29
|
}
|
26
30
|
end
|
27
31
|
|
@@ -33,7 +37,8 @@ module DealMakerAPI
|
|
33
37
|
# Attribute type mapping.
|
34
38
|
def self.openapi_types
|
35
39
|
{
|
36
|
-
:'import_file' => :'File'
|
40
|
+
:'import_file' => :'File',
|
41
|
+
:'alerts_email' => :'String'
|
37
42
|
}
|
38
43
|
end
|
39
44
|
|
@@ -63,6 +68,10 @@ module DealMakerAPI
|
|
63
68
|
else
|
64
69
|
self.import_file = nil
|
65
70
|
end
|
71
|
+
|
72
|
+
if attributes.key?(:'alerts_email')
|
73
|
+
self.alerts_email = attributes[:'alerts_email']
|
74
|
+
end
|
66
75
|
end
|
67
76
|
|
68
77
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -90,7 +99,8 @@ module DealMakerAPI
|
|
90
99
|
def ==(o)
|
91
100
|
return true if self.equal?(o)
|
92
101
|
self.class == o.class &&
|
93
|
-
import_file == o.import_file
|
102
|
+
import_file == o.import_file &&
|
103
|
+
alerts_email == o.alerts_email
|
94
104
|
end
|
95
105
|
|
96
106
|
# @see the `==` method
|
@@ -102,7 +112,7 @@ module DealMakerAPI
|
|
102
112
|
# Calculates hash code according to all attributes.
|
103
113
|
# @return [Integer] Hash code
|
104
114
|
def hash
|
105
|
-
[import_file].hash
|
115
|
+
[import_file, alerts_email].hash
|
106
116
|
end
|
107
117
|
|
108
118
|
# Builds the object from hash
|
@@ -24,12 +24,20 @@ module DealMakerAPI
|
|
24
24
|
# The bulk upload name
|
25
25
|
attr_accessor :upload_name
|
26
26
|
|
27
|
+
# Send notification to the user
|
28
|
+
attr_accessor :send_notification
|
29
|
+
|
30
|
+
# Notification message
|
31
|
+
attr_accessor :notification_message
|
32
|
+
|
27
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
28
34
|
def self.attribute_map
|
29
35
|
{
|
30
36
|
:'file_identifier' => :'file_identifier',
|
31
37
|
:'document_type' => :'document_type',
|
32
|
-
:'upload_name' => :'upload_name'
|
38
|
+
:'upload_name' => :'upload_name',
|
39
|
+
:'send_notification' => :'send_notification',
|
40
|
+
:'notification_message' => :'notification_message'
|
33
41
|
}
|
34
42
|
end
|
35
43
|
|
@@ -43,7 +51,9 @@ module DealMakerAPI
|
|
43
51
|
{
|
44
52
|
:'file_identifier' => :'String',
|
45
53
|
:'document_type' => :'String',
|
46
|
-
:'upload_name' => :'String'
|
54
|
+
:'upload_name' => :'String',
|
55
|
+
:'send_notification' => :'Boolean',
|
56
|
+
:'notification_message' => :'String'
|
47
57
|
}
|
48
58
|
end
|
49
59
|
|
@@ -85,6 +95,18 @@ module DealMakerAPI
|
|
85
95
|
else
|
86
96
|
self.upload_name = nil
|
87
97
|
end
|
98
|
+
|
99
|
+
if attributes.key?(:'send_notification')
|
100
|
+
self.send_notification = attributes[:'send_notification']
|
101
|
+
else
|
102
|
+
self.send_notification = nil
|
103
|
+
end
|
104
|
+
|
105
|
+
if attributes.key?(:'notification_message')
|
106
|
+
self.notification_message = attributes[:'notification_message']
|
107
|
+
else
|
108
|
+
self.notification_message = nil
|
109
|
+
end
|
88
110
|
end
|
89
111
|
|
90
112
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -104,6 +126,14 @@ module DealMakerAPI
|
|
104
126
|
invalid_properties.push('invalid value for "upload_name", upload_name cannot be nil.')
|
105
127
|
end
|
106
128
|
|
129
|
+
if @send_notification.nil?
|
130
|
+
invalid_properties.push('invalid value for "send_notification", send_notification cannot be nil.')
|
131
|
+
end
|
132
|
+
|
133
|
+
if @notification_message.nil?
|
134
|
+
invalid_properties.push('invalid value for "notification_message", notification_message cannot be nil.')
|
135
|
+
end
|
136
|
+
|
107
137
|
invalid_properties
|
108
138
|
end
|
109
139
|
|
@@ -114,6 +144,8 @@ module DealMakerAPI
|
|
114
144
|
return false if @file_identifier.nil?
|
115
145
|
return false if @document_type.nil?
|
116
146
|
return false if @upload_name.nil?
|
147
|
+
return false if @send_notification.nil?
|
148
|
+
return false if @notification_message.nil?
|
117
149
|
true
|
118
150
|
end
|
119
151
|
|
@@ -124,7 +156,9 @@ module DealMakerAPI
|
|
124
156
|
self.class == o.class &&
|
125
157
|
file_identifier == o.file_identifier &&
|
126
158
|
document_type == o.document_type &&
|
127
|
-
upload_name == o.upload_name
|
159
|
+
upload_name == o.upload_name &&
|
160
|
+
send_notification == o.send_notification &&
|
161
|
+
notification_message == o.notification_message
|
128
162
|
end
|
129
163
|
|
130
164
|
# @see the `==` method
|
@@ -136,7 +170,7 @@ module DealMakerAPI
|
|
136
170
|
# Calculates hash code according to all attributes.
|
137
171
|
# @return [Integer] Hash code
|
138
172
|
def hash
|
139
|
-
[file_identifier, document_type, upload_name].hash
|
173
|
+
[file_identifier, document_type, upload_name, send_notification, notification_message].hash
|
140
174
|
end
|
141
175
|
|
142
176
|
# Builds the object from hash
|
@@ -109,7 +109,7 @@ module DealMakerAPI
|
|
109
109
|
attr_accessor :beneficial_owners_street_address
|
110
110
|
|
111
111
|
# The list of street address line 2 for the beneficial owners.
|
112
|
-
attr_accessor :
|
112
|
+
attr_accessor :beneficial_owners_unit2
|
113
113
|
|
114
114
|
# The list of cities for the beneficial owners (required for beneficial owner 1).
|
115
115
|
attr_accessor :beneficial_owners_city
|
@@ -182,7 +182,7 @@ module DealMakerAPI
|
|
182
182
|
:'beneficial_owners_suffix' => :'beneficial_owners[suffix]',
|
183
183
|
:'beneficial_owners_country' => :'beneficial_owners[country]',
|
184
184
|
:'beneficial_owners_street_address' => :'beneficial_owners[street_address]',
|
185
|
-
:'
|
185
|
+
:'beneficial_owners_unit2' => :'beneficial_owners[unit2]',
|
186
186
|
:'beneficial_owners_city' => :'beneficial_owners[city]',
|
187
187
|
:'beneficial_owners_region' => :'beneficial_owners[region]',
|
188
188
|
:'beneficial_owners_postal_code' => :'beneficial_owners[postal_code]',
|
@@ -230,7 +230,7 @@ module DealMakerAPI
|
|
230
230
|
:'beneficial_owners_suffix' => :'Array<String>',
|
231
231
|
:'beneficial_owners_country' => :'Array<String>',
|
232
232
|
:'beneficial_owners_street_address' => :'Array<String>',
|
233
|
-
:'
|
233
|
+
:'beneficial_owners_unit2' => :'Array<String>',
|
234
234
|
:'beneficial_owners_city' => :'Array<String>',
|
235
235
|
:'beneficial_owners_region' => :'Array<String>',
|
236
236
|
:'beneficial_owners_postal_code' => :'Array<String>',
|
@@ -396,9 +396,9 @@ module DealMakerAPI
|
|
396
396
|
end
|
397
397
|
end
|
398
398
|
|
399
|
-
if attributes.key?(:'
|
400
|
-
if (value = attributes[:'
|
401
|
-
self.
|
399
|
+
if attributes.key?(:'beneficial_owners_unit2')
|
400
|
+
if (value = attributes[:'beneficial_owners_unit2']).is_a?(Array)
|
401
|
+
self.beneficial_owners_unit2 = value
|
402
402
|
end
|
403
403
|
end
|
404
404
|
|
@@ -513,7 +513,7 @@ module DealMakerAPI
|
|
513
513
|
beneficial_owners_suffix == o.beneficial_owners_suffix &&
|
514
514
|
beneficial_owners_country == o.beneficial_owners_country &&
|
515
515
|
beneficial_owners_street_address == o.beneficial_owners_street_address &&
|
516
|
-
|
516
|
+
beneficial_owners_unit2 == o.beneficial_owners_unit2 &&
|
517
517
|
beneficial_owners_city == o.beneficial_owners_city &&
|
518
518
|
beneficial_owners_region == o.beneficial_owners_region &&
|
519
519
|
beneficial_owners_postal_code == o.beneficial_owners_postal_code &&
|
@@ -530,7 +530,7 @@ module DealMakerAPI
|
|
530
530
|
# Calculates hash code according to all attributes.
|
531
531
|
# @return [Integer] Hash code
|
532
532
|
def hash
|
533
|
-
[email, us_accredited_category, ca_accredited_investor, name, country, street_address, unit2, city, region, postal_code, business_number, phone_number, income, net_worth, reg_cf_prior_offerings_amount, signing_officer_first_name, signing_officer_last_name, signing_officer_suffix, signing_officer_country, signing_officer_street_address, signing_officer_unit2, signing_officer_city, signing_officer_region, signing_officer_postal_code, signing_officer_date_of_birth, signing_officer_taxpayer_id, beneficial_owners_first_name, beneficial_owners_last_name, beneficial_owners_suffix, beneficial_owners_country, beneficial_owners_street_address,
|
533
|
+
[email, us_accredited_category, ca_accredited_investor, name, country, street_address, unit2, city, region, postal_code, business_number, phone_number, income, net_worth, reg_cf_prior_offerings_amount, signing_officer_first_name, signing_officer_last_name, signing_officer_suffix, signing_officer_country, signing_officer_street_address, signing_officer_unit2, signing_officer_city, signing_officer_region, signing_officer_postal_code, signing_officer_date_of_birth, signing_officer_taxpayer_id, beneficial_owners_first_name, beneficial_owners_last_name, beneficial_owners_suffix, beneficial_owners_country, beneficial_owners_street_address, beneficial_owners_unit2, beneficial_owners_city, beneficial_owners_region, beneficial_owners_postal_code, beneficial_owners_date_of_birth, beneficial_owners_taxpayer_id].hash
|
534
534
|
end
|
535
535
|
|
536
536
|
# Builds the object from hash
|