DealMakerAPI 0.78.4 → 0.80.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -4
  3. data/docs/AddDocumentRequest.md +24 -0
  4. data/docs/CreateCorporationProfileRequest.md +3 -1
  5. data/docs/CreateIndividualProfileRequest.md +3 -1
  6. data/docs/CreateJointProfileRequest.md +3 -1
  7. data/docs/CreateTrustProfileRequest.md +3 -1
  8. data/docs/DealApi.md +71 -0
  9. data/docs/InvestorApi.md +141 -0
  10. data/docs/PatchCorporationProfileRequest.md +3 -1
  11. data/docs/PatchIndividualProfileRequest.md +3 -1
  12. data/docs/PatchJointProfileRequest.md +3 -1
  13. data/docs/PatchTrustProfileRequest.md +3 -1
  14. data/docs/ShareholderApi.md +74 -0
  15. data/docs/UpdateInvestorRequest.md +3 -1
  16. data/docs/V1EntitiesInvestorProfileCorporation.md +3 -1
  17. data/docs/V1EntitiesInvestorProfileIndividual.md +3 -1
  18. data/docs/V1EntitiesInvestorProfileJoint.md +3 -1
  19. data/docs/V1EntitiesInvestorProfileTrust.md +3 -1
  20. data/docs/V1EntitiesShareholder.md +22 -0
  21. data/docs/V1EntitiesShareholders.md +18 -0
  22. data/lib/DealMakerAPI/api/deal_api.rb +66 -0
  23. data/lib/DealMakerAPI/api/investor_api.rb +153 -0
  24. data/lib/DealMakerAPI/api/shareholder_api.rb +85 -0
  25. data/lib/DealMakerAPI/models/add_document_request.rb +296 -0
  26. data/lib/DealMakerAPI/models/create_corporation_profile_request.rb +24 -2
  27. data/lib/DealMakerAPI/models/create_individual_profile_request.rb +24 -2
  28. data/lib/DealMakerAPI/models/create_joint_profile_request.rb +24 -2
  29. data/lib/DealMakerAPI/models/create_trust_profile_request.rb +24 -2
  30. data/lib/DealMakerAPI/models/patch_corporation_profile_request.rb +24 -2
  31. data/lib/DealMakerAPI/models/patch_individual_profile_request.rb +24 -2
  32. data/lib/DealMakerAPI/models/patch_joint_profile_request.rb +24 -2
  33. data/lib/DealMakerAPI/models/patch_trust_profile_request.rb +24 -2
  34. data/lib/DealMakerAPI/models/update_investor_request.rb +14 -4
  35. data/lib/DealMakerAPI/models/v1_entities_investor_profile_corporation.rb +12 -2
  36. data/lib/DealMakerAPI/models/v1_entities_investor_profile_individual.rb +12 -2
  37. data/lib/DealMakerAPI/models/v1_entities_investor_profile_joint.rb +12 -2
  38. data/lib/DealMakerAPI/models/v1_entities_investor_profile_trust.rb +12 -2
  39. data/lib/DealMakerAPI/models/v1_entities_shareholder.rb +240 -0
  40. data/lib/DealMakerAPI/models/v1_entities_shareholders.rb +220 -0
  41. data/lib/DealMakerAPI/version.rb +1 -1
  42. data/lib/DealMakerAPI.rb +4 -0
  43. data/spec/api/deal_api_spec.rb +13 -0
  44. data/spec/api/investor_api_spec.rb +28 -0
  45. data/spec/api/shareholder_api_spec.rb +47 -0
  46. data/spec/models/add_document_request_spec.rb +56 -0
  47. data/spec/models/create_corporation_profile_request_spec.rb +10 -0
  48. data/spec/models/create_individual_profile_request_spec.rb +10 -0
  49. data/spec/models/create_joint_profile_request_spec.rb +10 -0
  50. data/spec/models/create_trust_profile_request_spec.rb +10 -0
  51. data/spec/models/patch_corporation_profile_request_spec.rb +10 -0
  52. data/spec/models/patch_individual_profile_request_spec.rb +10 -0
  53. data/spec/models/patch_joint_profile_request_spec.rb +10 -0
  54. data/spec/models/patch_trust_profile_request_spec.rb +10 -0
  55. data/spec/models/update_investor_request_spec.rb +6 -0
  56. data/spec/models/v1_entities_investor_profile_corporation_spec.rb +6 -0
  57. data/spec/models/v1_entities_investor_profile_individual_spec.rb +6 -0
  58. data/spec/models/v1_entities_investor_profile_joint_spec.rb +6 -0
  59. data/spec/models/v1_entities_investor_profile_trust_spec.rb +6 -0
  60. data/spec/models/v1_entities_shareholder_spec.rb +46 -0
  61. data/spec/models/v1_entities_shareholders_spec.rb +34 -0
  62. metadata +61 -45
@@ -0,0 +1,296 @@
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&#64;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.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 7.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module DealMakerAPI
17
+ class AddDocumentRequest
18
+ # Document type.
19
+ attr_accessor :type
20
+
21
+ # File to upload.
22
+ attr_accessor :file
23
+
24
+ # The caption.
25
+ attr_accessor :caption
26
+
27
+ # Search entity id.
28
+ attr_accessor :search_entity_id
29
+
30
+ class EnumAttributeValidator
31
+ attr_reader :datatype
32
+ attr_reader :allowable_values
33
+
34
+ def initialize(datatype, allowable_values)
35
+ @allowable_values = allowable_values.map do |value|
36
+ case datatype.to_s
37
+ when /Integer/i
38
+ value.to_i
39
+ when /Float/i
40
+ value.to_f
41
+ else
42
+ value
43
+ end
44
+ end
45
+ end
46
+
47
+ def valid?(value)
48
+ !value || allowable_values.include?(value)
49
+ end
50
+ end
51
+
52
+ # Attribute mapping from ruby-style variable name to JSON key.
53
+ def self.attribute_map
54
+ {
55
+ :'type' => :'type',
56
+ :'file' => :'file',
57
+ :'caption' => :'caption',
58
+ :'search_entity_id' => :'search_entity_id'
59
+ }
60
+ end
61
+
62
+ # Returns all the JSON keys this model knows about
63
+ def self.acceptable_attributes
64
+ attribute_map.values
65
+ end
66
+
67
+ # Attribute type mapping.
68
+ def self.openapi_types
69
+ {
70
+ :'type' => :'String',
71
+ :'file' => :'File',
72
+ :'caption' => :'String',
73
+ :'search_entity_id' => :'Integer'
74
+ }
75
+ end
76
+
77
+ # List of attributes with nullable: true
78
+ def self.openapi_nullable
79
+ Set.new([
80
+ ])
81
+ end
82
+
83
+ # Initializes the object
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ def initialize(attributes = {})
86
+ if (!attributes.is_a?(Hash))
87
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DealMakerAPI::AddDocumentRequest` initialize method"
88
+ end
89
+
90
+ # check to see if the attribute exists and convert string to symbol for hash key
91
+ attributes = attributes.each_with_object({}) { |(k, v), h|
92
+ if (!self.class.attribute_map.key?(k.to_sym))
93
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DealMakerAPI::AddDocumentRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
94
+ end
95
+ h[k.to_sym] = v
96
+ }
97
+
98
+ if attributes.key?(:'type')
99
+ self.type = attributes[:'type']
100
+ else
101
+ self.type = 'regular'
102
+ end
103
+
104
+ if attributes.key?(:'file')
105
+ self.file = attributes[:'file']
106
+ end
107
+
108
+ if attributes.key?(:'caption')
109
+ self.caption = attributes[:'caption']
110
+ end
111
+
112
+ if attributes.key?(:'search_entity_id')
113
+ self.search_entity_id = attributes[:'search_entity_id']
114
+ end
115
+ end
116
+
117
+ # Show invalid properties with the reasons. Usually used together with valid?
118
+ # @return Array for valid properties with the reasons
119
+ def list_invalid_properties
120
+ invalid_properties = Array.new
121
+ if @type.nil?
122
+ invalid_properties.push('invalid value for "type", type cannot be nil.')
123
+ end
124
+
125
+ if @file.nil?
126
+ invalid_properties.push('invalid value for "file", file cannot be nil.')
127
+ end
128
+
129
+ invalid_properties
130
+ end
131
+
132
+ # Check to see if the all the properties in the model are valid
133
+ # @return true if the model is valid
134
+ def valid?
135
+ return false if @type.nil?
136
+ type_validator = EnumAttributeValidator.new('String', ["regular", "AML/KYC"])
137
+ return false unless type_validator.valid?(@type)
138
+ return false if @file.nil?
139
+ true
140
+ end
141
+
142
+ # Custom attribute writer method checking allowed values (enum).
143
+ # @param [Object] type Object to be assigned
144
+ def type=(type)
145
+ validator = EnumAttributeValidator.new('String', ["regular", "AML/KYC"])
146
+ unless validator.valid?(type)
147
+ fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
148
+ end
149
+ @type = type
150
+ end
151
+
152
+ # Checks equality by comparing each attribute.
153
+ # @param [Object] Object to be compared
154
+ def ==(o)
155
+ return true if self.equal?(o)
156
+ self.class == o.class &&
157
+ type == o.type &&
158
+ file == o.file &&
159
+ caption == o.caption &&
160
+ search_entity_id == o.search_entity_id
161
+ end
162
+
163
+ # @see the `==` method
164
+ # @param [Object] Object to be compared
165
+ def eql?(o)
166
+ self == o
167
+ end
168
+
169
+ # Calculates hash code according to all attributes.
170
+ # @return [Integer] Hash code
171
+ def hash
172
+ [type, file, caption, search_entity_id].hash
173
+ end
174
+
175
+ # Builds the object from hash
176
+ # @param [Hash] attributes Model attributes in the form of hash
177
+ # @return [Object] Returns the model itself
178
+ def self.build_from_hash(attributes)
179
+ new.build_from_hash(attributes)
180
+ end
181
+
182
+ # Builds the object from hash
183
+ # @param [Hash] attributes Model attributes in the form of hash
184
+ # @return [Object] Returns the model itself
185
+ def build_from_hash(attributes)
186
+ return nil unless attributes.is_a?(Hash)
187
+ attributes = attributes.transform_keys(&:to_sym)
188
+ self.class.openapi_types.each_pair do |key, type|
189
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
190
+ self.send("#{key}=", nil)
191
+ elsif type =~ /\AArray<(.*)>/i
192
+ # check to ensure the input is an array given that the attribute
193
+ # is documented as an array but the input is not
194
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
195
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
196
+ end
197
+ elsif !attributes[self.class.attribute_map[key]].nil?
198
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
199
+ end
200
+ end
201
+
202
+ self
203
+ end
204
+
205
+ # Deserializes the data based on type
206
+ # @param string type Data type
207
+ # @param string value Value to be deserialized
208
+ # @return [Object] Deserialized data
209
+ def _deserialize(type, value)
210
+ case type.to_sym
211
+ when :Time
212
+ Time.parse(value)
213
+ when :Date
214
+ Date.parse(value)
215
+ when :String
216
+ value.to_s
217
+ when :Integer
218
+ value.to_i
219
+ when :Float
220
+ value.to_f
221
+ when :Boolean
222
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
223
+ true
224
+ else
225
+ false
226
+ end
227
+ when :Object
228
+ # generic object (usually a Hash), return directly
229
+ value
230
+ when /\AArray<(?<inner_type>.+)>\z/
231
+ inner_type = Regexp.last_match[:inner_type]
232
+ value.map { |v| _deserialize(inner_type, v) }
233
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
234
+ k_type = Regexp.last_match[:k_type]
235
+ v_type = Regexp.last_match[:v_type]
236
+ {}.tap do |hash|
237
+ value.each do |k, v|
238
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
239
+ end
240
+ end
241
+ else # model
242
+ # models (e.g. Pet) or oneOf
243
+ klass = DealMakerAPI.const_get(type)
244
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
245
+ end
246
+ end
247
+
248
+ # Returns the string representation of the object
249
+ # @return [String] String presentation of the object
250
+ def to_s
251
+ to_hash.to_s
252
+ end
253
+
254
+ # to_body is an alias to to_hash (backward compatibility)
255
+ # @return [Hash] Returns the object in the form of hash
256
+ def to_body
257
+ to_hash
258
+ end
259
+
260
+ # Returns the object in the form of hash
261
+ # @return [Hash] Returns the object in the form of hash
262
+ def to_hash
263
+ hash = {}
264
+ self.class.attribute_map.each_pair do |attr, param|
265
+ value = self.send(attr)
266
+ if value.nil?
267
+ is_nullable = self.class.openapi_nullable.include?(attr)
268
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
269
+ end
270
+
271
+ hash[param] = _to_hash(value)
272
+ end
273
+ hash
274
+ end
275
+
276
+ # Outputs non-array value in the form of hash
277
+ # For object, use to_hash. Otherwise, just return the value
278
+ # @param [Object] value Any valid value
279
+ # @return [Hash] Returns the value in the form of hash
280
+ def _to_hash(value)
281
+ if value.is_a?(Array)
282
+ value.compact.map { |v| _to_hash(v) }
283
+ elsif value.is_a?(Hash)
284
+ {}.tap do |hash|
285
+ value.each { |k, v| hash[k] = _to_hash(v) }
286
+ end
287
+ elsif value.respond_to? :to_hash
288
+ value.to_hash
289
+ else
290
+ value
291
+ end
292
+ end
293
+
294
+ end
295
+
296
+ end
@@ -18,9 +18,12 @@ module DealMakerAPI
18
18
  # User email which is associated with investor profile (required).
19
19
  attr_accessor :email
20
20
 
21
- # The accredited investor information.
21
+ # The United States accredited investor information.
22
22
  attr_accessor :us_accredited_category
23
23
 
24
+ # The Canadian accredited investor information.
25
+ attr_accessor :ca_accredited_investor
26
+
24
27
  # The name of the corporation (required).
25
28
  attr_accessor :name
26
29
 
@@ -150,6 +153,7 @@ module DealMakerAPI
150
153
  {
151
154
  :'email' => :'email',
152
155
  :'us_accredited_category' => :'us_accredited_category',
156
+ :'ca_accredited_investor' => :'ca_accredited_investor',
153
157
  :'name' => :'name',
154
158
  :'country' => :'country',
155
159
  :'street_address' => :'street_address',
@@ -197,6 +201,7 @@ module DealMakerAPI
197
201
  {
198
202
  :'email' => :'String',
199
203
  :'us_accredited_category' => :'String',
204
+ :'ca_accredited_investor' => :'String',
200
205
  :'name' => :'String',
201
206
  :'country' => :'String',
202
207
  :'street_address' => :'String',
@@ -263,6 +268,10 @@ module DealMakerAPI
263
268
  self.us_accredited_category = attributes[:'us_accredited_category']
264
269
  end
265
270
 
271
+ if attributes.key?(:'ca_accredited_investor')
272
+ self.ca_accredited_investor = attributes[:'ca_accredited_investor']
273
+ end
274
+
266
275
  if attributes.key?(:'name')
267
276
  self.name = attributes[:'name']
268
277
  end
@@ -439,6 +448,8 @@ module DealMakerAPI
439
448
  return false if @email.nil?
440
449
  us_accredited_category_validator = EnumAttributeValidator.new('String', ["entity_owned_by_accredited_investors", "assets_other", "assets_family_office", "assets_benefit_plan", "assets_state_plan", "assets_501_c_3", "assets_corporation", "broker_or_dealer", "bank_3_a_2", "business_development_company", "private_business_development_company", "investment_company", "rural_business_investment_company", "insurance_company", "family_client", "not_accredited"])
441
450
  return false unless us_accredited_category_validator.valid?(@us_accredited_category)
451
+ ca_accredited_investor_validator = EnumAttributeValidator.new('String', ["a", "b", "c", "d", "f", "g", "h", "i", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "x"])
452
+ return false unless ca_accredited_investor_validator.valid?(@ca_accredited_investor)
442
453
  true
443
454
  end
444
455
 
@@ -452,6 +463,16 @@ module DealMakerAPI
452
463
  @us_accredited_category = us_accredited_category
453
464
  end
454
465
 
466
+ # Custom attribute writer method checking allowed values (enum).
467
+ # @param [Object] ca_accredited_investor Object to be assigned
468
+ def ca_accredited_investor=(ca_accredited_investor)
469
+ validator = EnumAttributeValidator.new('String', ["a", "b", "c", "d", "f", "g", "h", "i", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "x"])
470
+ unless validator.valid?(ca_accredited_investor)
471
+ fail ArgumentError, "invalid value for \"ca_accredited_investor\", must be one of #{validator.allowable_values}."
472
+ end
473
+ @ca_accredited_investor = ca_accredited_investor
474
+ end
475
+
455
476
  # Checks equality by comparing each attribute.
456
477
  # @param [Object] Object to be compared
457
478
  def ==(o)
@@ -459,6 +480,7 @@ module DealMakerAPI
459
480
  self.class == o.class &&
460
481
  email == o.email &&
461
482
  us_accredited_category == o.us_accredited_category &&
483
+ ca_accredited_investor == o.ca_accredited_investor &&
462
484
  name == o.name &&
463
485
  country == o.country &&
464
486
  street_address == o.street_address &&
@@ -504,7 +526,7 @@ module DealMakerAPI
504
526
  # Calculates hash code according to all attributes.
505
527
  # @return [Integer] Hash code
506
528
  def hash
507
- [email, us_accredited_category, 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_unit_2, beneficial_owners_city, beneficial_owners_region, beneficial_owners_postal_code, beneficial_owners_date_of_birth, beneficial_owners_taxpayer_id].hash
529
+ [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_unit_2, beneficial_owners_city, beneficial_owners_region, beneficial_owners_postal_code, beneficial_owners_date_of_birth, beneficial_owners_taxpayer_id].hash
508
530
  end
509
531
 
510
532
  # Builds the object from hash
@@ -18,9 +18,12 @@ module DealMakerAPI
18
18
  # User email which is associated with individual investor profile.
19
19
  attr_accessor :email
20
20
 
21
- # The accredited investor information.
21
+ # The United States accredited investor information.
22
22
  attr_accessor :us_accredited_category
23
23
 
24
+ # The Canadian accredited investor information.
25
+ attr_accessor :ca_accredited_investor
26
+
24
27
  # The first name of the individual investor profile (required).
25
28
  attr_accessor :first_name
26
29
 
@@ -93,6 +96,7 @@ module DealMakerAPI
93
96
  {
94
97
  :'email' => :'email',
95
98
  :'us_accredited_category' => :'us_accredited_category',
99
+ :'ca_accredited_investor' => :'ca_accredited_investor',
96
100
  :'first_name' => :'first_name',
97
101
  :'last_name' => :'last_name',
98
102
  :'suffix' => :'suffix',
@@ -121,6 +125,7 @@ module DealMakerAPI
121
125
  {
122
126
  :'email' => :'String',
123
127
  :'us_accredited_category' => :'String',
128
+ :'ca_accredited_investor' => :'String',
124
129
  :'first_name' => :'String',
125
130
  :'last_name' => :'String',
126
131
  :'suffix' => :'String',
@@ -168,6 +173,10 @@ module DealMakerAPI
168
173
  self.us_accredited_category = attributes[:'us_accredited_category']
169
174
  end
170
175
 
176
+ if attributes.key?(:'ca_accredited_investor')
177
+ self.ca_accredited_investor = attributes[:'ca_accredited_investor']
178
+ end
179
+
171
180
  if attributes.key?(:'first_name')
172
181
  self.first_name = attributes[:'first_name']
173
182
  end
@@ -246,6 +255,8 @@ module DealMakerAPI
246
255
  return false if @email.nil?
247
256
  us_accredited_category_validator = EnumAttributeValidator.new('String', ["income_individual", "assets_individual", "director", "knowledgable_employee", "broker_or_dealer", "investment_advisor_registered", "investment_advisor_relying", "designated_accredited_investor", "not_accredited"])
248
257
  return false unless us_accredited_category_validator.valid?(@us_accredited_category)
258
+ ca_accredited_investor_validator = EnumAttributeValidator.new('String', ["d", "e", "e_1", "j", "j_1", "k", "l", "q", "v", "x"])
259
+ return false unless ca_accredited_investor_validator.valid?(@ca_accredited_investor)
249
260
  true
250
261
  end
251
262
 
@@ -259,6 +270,16 @@ module DealMakerAPI
259
270
  @us_accredited_category = us_accredited_category
260
271
  end
261
272
 
273
+ # Custom attribute writer method checking allowed values (enum).
274
+ # @param [Object] ca_accredited_investor Object to be assigned
275
+ def ca_accredited_investor=(ca_accredited_investor)
276
+ validator = EnumAttributeValidator.new('String', ["d", "e", "e_1", "j", "j_1", "k", "l", "q", "v", "x"])
277
+ unless validator.valid?(ca_accredited_investor)
278
+ fail ArgumentError, "invalid value for \"ca_accredited_investor\", must be one of #{validator.allowable_values}."
279
+ end
280
+ @ca_accredited_investor = ca_accredited_investor
281
+ end
282
+
262
283
  # Checks equality by comparing each attribute.
263
284
  # @param [Object] Object to be compared
264
285
  def ==(o)
@@ -266,6 +287,7 @@ module DealMakerAPI
266
287
  self.class == o.class &&
267
288
  email == o.email &&
268
289
  us_accredited_category == o.us_accredited_category &&
290
+ ca_accredited_investor == o.ca_accredited_investor &&
269
291
  first_name == o.first_name &&
270
292
  last_name == o.last_name &&
271
293
  suffix == o.suffix &&
@@ -292,7 +314,7 @@ module DealMakerAPI
292
314
  # Calculates hash code according to all attributes.
293
315
  # @return [Integer] Hash code
294
316
  def hash
295
- [email, us_accredited_category, first_name, last_name, suffix, date_of_birth, taxpayer_id, phone_number, country, street_address, unit2, city, region, postal_code, income, net_worth, reg_cf_prior_offerings_amount].hash
317
+ [email, us_accredited_category, ca_accredited_investor, first_name, last_name, suffix, date_of_birth, taxpayer_id, phone_number, country, street_address, unit2, city, region, postal_code, income, net_worth, reg_cf_prior_offerings_amount].hash
296
318
  end
297
319
 
298
320
  # Builds the object from hash
@@ -18,9 +18,12 @@ module DealMakerAPI
18
18
  # User email which is associated with investor profile.
19
19
  attr_accessor :email
20
20
 
21
- # The accredited investor information.
21
+ # The United States accredited investor information.
22
22
  attr_accessor :us_accredited_category
23
23
 
24
+ # The Canadian accredited investor information.
25
+ attr_accessor :ca_accredited_investor
26
+
24
27
  # The types of joint investor.
25
28
  attr_accessor :joint_type
26
29
 
@@ -129,6 +132,7 @@ module DealMakerAPI
129
132
  {
130
133
  :'email' => :'email',
131
134
  :'us_accredited_category' => :'us_accredited_category',
135
+ :'ca_accredited_investor' => :'ca_accredited_investor',
132
136
  :'joint_type' => :'joint_type',
133
137
  :'first_name' => :'first_name',
134
138
  :'last_name' => :'last_name',
@@ -169,6 +173,7 @@ module DealMakerAPI
169
173
  {
170
174
  :'email' => :'String',
171
175
  :'us_accredited_category' => :'String',
176
+ :'ca_accredited_investor' => :'String',
172
177
  :'joint_type' => :'String',
173
178
  :'first_name' => :'String',
174
179
  :'last_name' => :'String',
@@ -228,6 +233,10 @@ module DealMakerAPI
228
233
  self.us_accredited_category = attributes[:'us_accredited_category']
229
234
  end
230
235
 
236
+ if attributes.key?(:'ca_accredited_investor')
237
+ self.ca_accredited_investor = attributes[:'ca_accredited_investor']
238
+ end
239
+
231
240
  if attributes.key?(:'joint_type')
232
241
  self.joint_type = attributes[:'joint_type']
233
242
  end
@@ -354,6 +363,8 @@ module DealMakerAPI
354
363
  return false if @email.nil?
355
364
  us_accredited_category_validator = EnumAttributeValidator.new('String', ["income_individual", "assets_individual", "director", "knowledgable_employee", "broker_or_dealer", "investment_advisor_registered", "investment_advisor_relying", "designated_accredited_investor", "not_accredited"])
356
365
  return false unless us_accredited_category_validator.valid?(@us_accredited_category)
366
+ ca_accredited_investor_validator = EnumAttributeValidator.new('String', ["d", "e", "e_1", "j", "j_1", "k", "l", "q", "v", "x"])
367
+ return false unless ca_accredited_investor_validator.valid?(@ca_accredited_investor)
357
368
  joint_type_validator = EnumAttributeValidator.new('String', ["joint_tenant", "tenants_in_common", "community_property"])
358
369
  return false unless joint_type_validator.valid?(@joint_type)
359
370
  true
@@ -369,6 +380,16 @@ module DealMakerAPI
369
380
  @us_accredited_category = us_accredited_category
370
381
  end
371
382
 
383
+ # Custom attribute writer method checking allowed values (enum).
384
+ # @param [Object] ca_accredited_investor Object to be assigned
385
+ def ca_accredited_investor=(ca_accredited_investor)
386
+ validator = EnumAttributeValidator.new('String', ["d", "e", "e_1", "j", "j_1", "k", "l", "q", "v", "x"])
387
+ unless validator.valid?(ca_accredited_investor)
388
+ fail ArgumentError, "invalid value for \"ca_accredited_investor\", must be one of #{validator.allowable_values}."
389
+ end
390
+ @ca_accredited_investor = ca_accredited_investor
391
+ end
392
+
372
393
  # Custom attribute writer method checking allowed values (enum).
373
394
  # @param [Object] joint_type Object to be assigned
374
395
  def joint_type=(joint_type)
@@ -386,6 +407,7 @@ module DealMakerAPI
386
407
  self.class == o.class &&
387
408
  email == o.email &&
388
409
  us_accredited_category == o.us_accredited_category &&
410
+ ca_accredited_investor == o.ca_accredited_investor &&
389
411
  joint_type == o.joint_type &&
390
412
  first_name == o.first_name &&
391
413
  last_name == o.last_name &&
@@ -424,7 +446,7 @@ module DealMakerAPI
424
446
  # Calculates hash code according to all attributes.
425
447
  # @return [Integer] Hash code
426
448
  def hash
427
- [email, us_accredited_category, joint_type, first_name, last_name, suffix, country, street_address, unit2, city, region, postal_code, date_of_birth, taxpayer_id, phone_number, income, net_worth, reg_cf_prior_offerings_amount, joint_holder_first_name, joint_holder_last_name, joint_holder_suffix, joint_holder_country, joint_holder_street_address, joint_holder_unit2, joint_holder_city, joint_holder_region, joint_holder_postal_code, joint_holder_date_of_birth, joint_holder_taxpayer_id].hash
449
+ [email, us_accredited_category, ca_accredited_investor, joint_type, first_name, last_name, suffix, country, street_address, unit2, city, region, postal_code, date_of_birth, taxpayer_id, phone_number, income, net_worth, reg_cf_prior_offerings_amount, joint_holder_first_name, joint_holder_last_name, joint_holder_suffix, joint_holder_country, joint_holder_street_address, joint_holder_unit2, joint_holder_city, joint_holder_region, joint_holder_postal_code, joint_holder_date_of_birth, joint_holder_taxpayer_id].hash
428
450
  end
429
451
 
430
452
  # Builds the object from hash
@@ -18,9 +18,12 @@ module DealMakerAPI
18
18
  # User email which is associated with investor profile (required).
19
19
  attr_accessor :email
20
20
 
21
- # The accredited investor information.
21
+ # The United States accredited investor information.
22
22
  attr_accessor :us_accredited_category
23
23
 
24
+ # The Canadian accredited investor information.
25
+ attr_accessor :ca_accredited_investor
26
+
24
27
  # The name of the trust (required).
25
28
  attr_accessor :name
26
29
 
@@ -117,6 +120,7 @@ module DealMakerAPI
117
120
  {
118
121
  :'email' => :'email',
119
122
  :'us_accredited_category' => :'us_accredited_category',
123
+ :'ca_accredited_investor' => :'ca_accredited_investor',
120
124
  :'name' => :'name',
121
125
  :'date' => :'date',
122
126
  :'country' => :'country',
@@ -153,6 +157,7 @@ module DealMakerAPI
153
157
  {
154
158
  :'email' => :'String',
155
159
  :'us_accredited_category' => :'String',
160
+ :'ca_accredited_investor' => :'String',
156
161
  :'name' => :'String',
157
162
  :'date' => :'String',
158
163
  :'country' => :'String',
@@ -208,6 +213,10 @@ module DealMakerAPI
208
213
  self.us_accredited_category = attributes[:'us_accredited_category']
209
214
  end
210
215
 
216
+ if attributes.key?(:'ca_accredited_investor')
217
+ self.ca_accredited_investor = attributes[:'ca_accredited_investor']
218
+ end
219
+
211
220
  if attributes.key?(:'name')
212
221
  self.name = attributes[:'name']
213
222
  end
@@ -340,6 +349,8 @@ module DealMakerAPI
340
349
  return false if @email.nil?
341
350
  us_accredited_category_validator = EnumAttributeValidator.new('String', ["entity_owned_by_accredited_investors", "broker_or_dealer", "assets_trust", "not_accredited"])
342
351
  return false unless us_accredited_category_validator.valid?(@us_accredited_category)
352
+ ca_accredited_investor_validator = EnumAttributeValidator.new('String', ["p", "w"])
353
+ return false unless ca_accredited_investor_validator.valid?(@ca_accredited_investor)
343
354
  true
344
355
  end
345
356
 
@@ -353,6 +364,16 @@ module DealMakerAPI
353
364
  @us_accredited_category = us_accredited_category
354
365
  end
355
366
 
367
+ # Custom attribute writer method checking allowed values (enum).
368
+ # @param [Object] ca_accredited_investor Object to be assigned
369
+ def ca_accredited_investor=(ca_accredited_investor)
370
+ validator = EnumAttributeValidator.new('String', ["p", "w"])
371
+ unless validator.valid?(ca_accredited_investor)
372
+ fail ArgumentError, "invalid value for \"ca_accredited_investor\", must be one of #{validator.allowable_values}."
373
+ end
374
+ @ca_accredited_investor = ca_accredited_investor
375
+ end
376
+
356
377
  # Checks equality by comparing each attribute.
357
378
  # @param [Object] Object to be compared
358
379
  def ==(o)
@@ -360,6 +381,7 @@ module DealMakerAPI
360
381
  self.class == o.class &&
361
382
  email == o.email &&
362
383
  us_accredited_category == o.us_accredited_category &&
384
+ ca_accredited_investor == o.ca_accredited_investor &&
363
385
  name == o.name &&
364
386
  date == o.date &&
365
387
  country == o.country &&
@@ -394,7 +416,7 @@ module DealMakerAPI
394
416
  # Calculates hash code according to all attributes.
395
417
  # @return [Integer] Hash code
396
418
  def hash
397
- [email, us_accredited_category, name, date, country, street_address, unit2, city, region, postal_code, phone_number, income, net_worth, reg_cf_prior_offerings_amount, trustees_first_name, trustees_last_name, trustees_suffix, trustees_country, trustees_street_address, trustees_unit_2, trustees_city, trustees_region, trustees_postal_code, trustees_date_of_birth, trustees_taxpayer_id].hash
419
+ [email, us_accredited_category, ca_accredited_investor, name, date, country, street_address, unit2, city, region, postal_code, phone_number, income, net_worth, reg_cf_prior_offerings_amount, trustees_first_name, trustees_last_name, trustees_suffix, trustees_country, trustees_street_address, trustees_unit_2, trustees_city, trustees_region, trustees_postal_code, trustees_date_of_birth, trustees_taxpayer_id].hash
398
420
  end
399
421
 
400
422
  # Builds the object from hash