cloudmersive-validate-api-client 1.3.3 → 1.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -9
  3. data/cloudmersive-validate-api-client.gemspec +1 -1
  4. data/docs/AddressApi.md +118 -0
  5. data/docs/AddressGetServersResponse.md +2 -2
  6. data/docs/AddressVerifySyntaxOnlyResponse.md +3 -0
  7. data/docs/DomainApi.md +112 -2
  8. data/docs/EmailApi.md +3 -3
  9. data/docs/IPAddressApi.md +1 -1
  10. data/docs/LeadEnrichmentApi.md +61 -0
  11. data/docs/LeadEnrichmentRequest.md +21 -0
  12. data/docs/LeadEnrichmentResponse.md +25 -0
  13. data/docs/NameApi.md +59 -4
  14. data/docs/ParseAddressRequest.md +9 -0
  15. data/docs/ParseAddressResponse.md +16 -0
  16. data/docs/PhoneNumberApi.md +1 -1
  17. data/docs/UserAgentApi.md +63 -0
  18. data/docs/UserAgentValidateRequest.md +8 -0
  19. data/docs/UserAgentValidateResponse.md +21 -0
  20. data/docs/ValidateCountryRequest.md +8 -0
  21. data/docs/ValidateCountryResponse.md +12 -0
  22. data/docs/ValidateIdentifierRequest.md +15 -0
  23. data/docs/ValidateIdentifierResponse.md +9 -0
  24. data/docs/ValidateUrlRequestFull.md +8 -0
  25. data/docs/ValidateUrlRequestSyntaxOnly.md +8 -0
  26. data/docs/ValidateUrlResponseFull.md +12 -0
  27. data/docs/ValidateUrlResponseSyntaxOnly.md +9 -0
  28. data/docs/VatApi.md +1 -1
  29. data/docs/VatLookupRequest.md +1 -1
  30. data/docs/VatLookupResponse.md +12 -5
  31. data/docs/WhoisResponse.md +11 -0
  32. data/lib/cloudmersive-validate-api-client.rb +18 -1
  33. data/lib/cloudmersive-validate-api-client/api/address_api.rb +133 -0
  34. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +113 -3
  35. data/lib/cloudmersive-validate-api-client/api/email_api.rb +4 -4
  36. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +2 -2
  37. data/lib/cloudmersive-validate-api-client/api/lead_enrichment_api.rb +78 -0
  38. data/lib/cloudmersive-validate-api-client/api/name_api.rb +60 -5
  39. data/lib/cloudmersive-validate-api-client/api/phone_number_api.rb +2 -2
  40. data/lib/cloudmersive-validate-api-client/api/user_agent_api.rb +78 -0
  41. data/lib/cloudmersive-validate-api-client/api/vat_api.rb +2 -2
  42. data/lib/cloudmersive-validate-api-client/api_client.rb +1 -1
  43. data/lib/cloudmersive-validate-api-client/api_error.rb +1 -1
  44. data/lib/cloudmersive-validate-api-client/configuration.rb +1 -1
  45. data/lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb +3 -1
  46. data/lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb +35 -5
  47. data/lib/cloudmersive-validate-api-client/models/check_response.rb +1 -1
  48. data/lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb +1 -1
  49. data/lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb +1 -1
  50. data/lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb +1 -1
  51. data/lib/cloudmersive-validate-api-client/models/full_name_validation_request.rb +1 -1
  52. data/lib/cloudmersive-validate-api-client/models/full_name_validation_response.rb +1 -1
  53. data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +1 -1
  54. data/lib/cloudmersive-validate-api-client/models/get_gender_request.rb +1 -1
  55. data/lib/cloudmersive-validate-api-client/models/get_gender_response.rb +1 -1
  56. data/lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb +1 -1
  57. data/lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb +1 -1
  58. data/lib/cloudmersive-validate-api-client/models/lead_enrichment_request.rb +319 -0
  59. data/lib/cloudmersive-validate-api-client/models/lead_enrichment_response.rb +359 -0
  60. data/lib/cloudmersive-validate-api-client/models/parse_address_request.rb +199 -0
  61. data/lib/cloudmersive-validate-api-client/models/parse_address_response.rb +269 -0
  62. data/lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb +1 -1
  63. data/lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb +1 -1
  64. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb +189 -0
  65. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_response.rb +319 -0
  66. data/lib/cloudmersive-validate-api-client/models/validate_country_request.rb +189 -0
  67. data/lib/cloudmersive-validate-api-client/models/validate_country_response.rb +229 -0
  68. data/lib/cloudmersive-validate-api-client/models/validate_identifier_request.rb +259 -0
  69. data/lib/cloudmersive-validate-api-client/models/validate_identifier_response.rb +199 -0
  70. data/lib/cloudmersive-validate-api-client/models/validate_url_request_full.rb +189 -0
  71. data/lib/cloudmersive-validate-api-client/models/validate_url_request_syntax_only.rb +189 -0
  72. data/lib/cloudmersive-validate-api-client/models/validate_url_response_full.rb +229 -0
  73. data/lib/cloudmersive-validate-api-client/models/validate_url_response_syntax_only.rb +199 -0
  74. data/lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb +2 -1
  75. data/lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb +80 -5
  76. data/lib/cloudmersive-validate-api-client/models/whois_response.rb +112 -2
  77. data/lib/cloudmersive-validate-api-client/version.rb +2 -2
  78. data/spec/api/address_api_spec.rb +59 -0
  79. data/spec/api/domain_api_spec.rb +25 -1
  80. data/spec/api/email_api_spec.rb +1 -1
  81. data/spec/api/ip_address_api_spec.rb +1 -1
  82. data/spec/api/lead_enrichment_api_spec.rb +47 -0
  83. data/spec/api/name_api_spec.rb +13 -1
  84. data/spec/api/phone_number_api_spec.rb +1 -1
  85. data/spec/api/user_agent_api_spec.rb +47 -0
  86. data/spec/api/vat_api_spec.rb +1 -1
  87. data/spec/api_client_spec.rb +1 -1
  88. data/spec/configuration_spec.rb +1 -1
  89. data/spec/models/address_get_servers_response_spec.rb +1 -1
  90. data/spec/models/address_verify_syntax_only_response_spec.rb +19 -1
  91. data/spec/models/check_response_spec.rb +1 -1
  92. data/spec/models/first_name_validation_request_spec.rb +1 -1
  93. data/spec/models/first_name_validation_response_spec.rb +1 -1
  94. data/spec/models/full_email_validation_response_spec.rb +1 -1
  95. data/spec/models/full_name_validation_request_spec.rb +1 -1
  96. data/spec/models/full_name_validation_response_spec.rb +1 -1
  97. data/spec/models/geolocate_response_spec.rb +1 -1
  98. data/spec/models/get_gender_request_spec.rb +1 -1
  99. data/spec/models/get_gender_response_spec.rb +1 -1
  100. data/spec/models/last_name_validation_request_spec.rb +1 -1
  101. data/spec/models/last_name_validation_response_spec.rb +1 -1
  102. data/spec/models/lead_enrichment_request_spec.rb +120 -0
  103. data/spec/models/lead_enrichment_response_spec.rb +144 -0
  104. data/spec/models/parse_address_request_spec.rb +48 -0
  105. data/spec/models/parse_address_response_spec.rb +90 -0
  106. data/spec/models/phone_number_validate_request_spec.rb +1 -1
  107. data/spec/models/phone_number_validation_response_spec.rb +1 -1
  108. data/spec/models/user_agent_validate_request_spec.rb +42 -0
  109. data/spec/models/user_agent_validate_response_spec.rb +120 -0
  110. data/spec/models/validate_country_request_spec.rb +42 -0
  111. data/spec/models/validate_country_response_spec.rb +66 -0
  112. data/spec/models/validate_identifier_request_spec.rb +84 -0
  113. data/spec/models/validate_identifier_response_spec.rb +48 -0
  114. data/spec/models/validate_url_request_full_spec.rb +42 -0
  115. data/spec/models/validate_url_request_syntax_only_spec.rb +42 -0
  116. data/spec/models/validate_url_response_full_spec.rb +66 -0
  117. data/spec/models/validate_url_response_syntax_only_spec.rb +48 -0
  118. data/spec/models/vat_lookup_request_spec.rb +1 -1
  119. data/spec/models/vat_lookup_response_spec.rb +43 -1
  120. data/spec/models/whois_response_spec.rb +67 -1
  121. data/spec/spec_helper.rb +1 -1
  122. metadata +66 -16
@@ -0,0 +1,359 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Result of the lead enrichment process
17
+ class LeadEnrichmentResponse
18
+ # True if the operation was successful, false otherwise
19
+ attr_accessor :successful
20
+
21
+ # The type of the lead; possible types are Junk (a single individual using a disposable/throwaway email address); Individual (a single individual, typically a consumer, not purchasing on behalf of a business); SmallBusiness (a small business, typically with fewer than 100 employees); MediumBusiness (a medium business, larger than 100 employees but fewer than 1000 employees); Enterprise (a large business with greater than 1000 employees); Business (a business customer of unknown size)
22
+ attr_accessor :lead_type
23
+
24
+ # The person's business email address for the lead
25
+ attr_accessor :contact_business_email
26
+
27
+ # The person's first name for the lead
28
+ attr_accessor :contact_first_name
29
+
30
+ # The person's last name for the lead
31
+ attr_accessor :contact_last_name
32
+
33
+ # Gender for contact name; possible values are Male, Female, and Neutral (can be applied to Male or Female). Requires ContactFirstName.
34
+ attr_accessor :contact_gender
35
+
36
+ # Name of the company for the lead
37
+ attr_accessor :company_name
38
+
39
+ # Domain name / website for the lead
40
+ attr_accessor :company_domain_name
41
+
42
+ # House number of the address of the company for the lead
43
+ attr_accessor :company_house_number
44
+
45
+ # Street name of the address of the company for the lead
46
+ attr_accessor :company_street
47
+
48
+ # City of the address of the company for the lead
49
+ attr_accessor :company_city
50
+
51
+ # State or Province of the address of the company for the lead
52
+ attr_accessor :company_state_or_province
53
+
54
+ # Postal Code of the address of the company for the lead
55
+ attr_accessor :company_postal_code
56
+
57
+ # Country Name of the address of the company for the lead
58
+ attr_accessor :company_country
59
+
60
+ # Country Code (2-letter ISO 3166-1) of the address of the company for the lead
61
+ attr_accessor :company_country_code
62
+
63
+ # Telephone of the company office for the lead
64
+ attr_accessor :company_telephone
65
+
66
+ # VAT number of the company for the lead
67
+ attr_accessor :company_vat_number
68
+
69
+ # Count of employees at the company (estimated), if available
70
+ attr_accessor :employee_count
71
+
72
+
73
+ # Attribute mapping from ruby-style variable name to JSON key.
74
+ def self.attribute_map
75
+ {
76
+ :'successful' => :'Successful',
77
+ :'lead_type' => :'LeadType',
78
+ :'contact_business_email' => :'ContactBusinessEmail',
79
+ :'contact_first_name' => :'ContactFirstName',
80
+ :'contact_last_name' => :'ContactLastName',
81
+ :'contact_gender' => :'ContactGender',
82
+ :'company_name' => :'CompanyName',
83
+ :'company_domain_name' => :'CompanyDomainName',
84
+ :'company_house_number' => :'CompanyHouseNumber',
85
+ :'company_street' => :'CompanyStreet',
86
+ :'company_city' => :'CompanyCity',
87
+ :'company_state_or_province' => :'CompanyStateOrProvince',
88
+ :'company_postal_code' => :'CompanyPostalCode',
89
+ :'company_country' => :'CompanyCountry',
90
+ :'company_country_code' => :'CompanyCountryCode',
91
+ :'company_telephone' => :'CompanyTelephone',
92
+ :'company_vat_number' => :'CompanyVATNumber',
93
+ :'employee_count' => :'EmployeeCount'
94
+ }
95
+ end
96
+
97
+ # Attribute type mapping.
98
+ def self.swagger_types
99
+ {
100
+ :'successful' => :'BOOLEAN',
101
+ :'lead_type' => :'String',
102
+ :'contact_business_email' => :'String',
103
+ :'contact_first_name' => :'String',
104
+ :'contact_last_name' => :'String',
105
+ :'contact_gender' => :'String',
106
+ :'company_name' => :'String',
107
+ :'company_domain_name' => :'String',
108
+ :'company_house_number' => :'String',
109
+ :'company_street' => :'String',
110
+ :'company_city' => :'String',
111
+ :'company_state_or_province' => :'String',
112
+ :'company_postal_code' => :'String',
113
+ :'company_country' => :'String',
114
+ :'company_country_code' => :'String',
115
+ :'company_telephone' => :'String',
116
+ :'company_vat_number' => :'String',
117
+ :'employee_count' => :'Integer'
118
+ }
119
+ end
120
+
121
+ # Initializes the object
122
+ # @param [Hash] attributes Model attributes in the form of hash
123
+ def initialize(attributes = {})
124
+ return unless attributes.is_a?(Hash)
125
+
126
+ # convert string to symbol for hash key
127
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
128
+
129
+ if attributes.has_key?(:'Successful')
130
+ self.successful = attributes[:'Successful']
131
+ end
132
+
133
+ if attributes.has_key?(:'LeadType')
134
+ self.lead_type = attributes[:'LeadType']
135
+ end
136
+
137
+ if attributes.has_key?(:'ContactBusinessEmail')
138
+ self.contact_business_email = attributes[:'ContactBusinessEmail']
139
+ end
140
+
141
+ if attributes.has_key?(:'ContactFirstName')
142
+ self.contact_first_name = attributes[:'ContactFirstName']
143
+ end
144
+
145
+ if attributes.has_key?(:'ContactLastName')
146
+ self.contact_last_name = attributes[:'ContactLastName']
147
+ end
148
+
149
+ if attributes.has_key?(:'ContactGender')
150
+ self.contact_gender = attributes[:'ContactGender']
151
+ end
152
+
153
+ if attributes.has_key?(:'CompanyName')
154
+ self.company_name = attributes[:'CompanyName']
155
+ end
156
+
157
+ if attributes.has_key?(:'CompanyDomainName')
158
+ self.company_domain_name = attributes[:'CompanyDomainName']
159
+ end
160
+
161
+ if attributes.has_key?(:'CompanyHouseNumber')
162
+ self.company_house_number = attributes[:'CompanyHouseNumber']
163
+ end
164
+
165
+ if attributes.has_key?(:'CompanyStreet')
166
+ self.company_street = attributes[:'CompanyStreet']
167
+ end
168
+
169
+ if attributes.has_key?(:'CompanyCity')
170
+ self.company_city = attributes[:'CompanyCity']
171
+ end
172
+
173
+ if attributes.has_key?(:'CompanyStateOrProvince')
174
+ self.company_state_or_province = attributes[:'CompanyStateOrProvince']
175
+ end
176
+
177
+ if attributes.has_key?(:'CompanyPostalCode')
178
+ self.company_postal_code = attributes[:'CompanyPostalCode']
179
+ end
180
+
181
+ if attributes.has_key?(:'CompanyCountry')
182
+ self.company_country = attributes[:'CompanyCountry']
183
+ end
184
+
185
+ if attributes.has_key?(:'CompanyCountryCode')
186
+ self.company_country_code = attributes[:'CompanyCountryCode']
187
+ end
188
+
189
+ if attributes.has_key?(:'CompanyTelephone')
190
+ self.company_telephone = attributes[:'CompanyTelephone']
191
+ end
192
+
193
+ if attributes.has_key?(:'CompanyVATNumber')
194
+ self.company_vat_number = attributes[:'CompanyVATNumber']
195
+ end
196
+
197
+ if attributes.has_key?(:'EmployeeCount')
198
+ self.employee_count = attributes[:'EmployeeCount']
199
+ end
200
+
201
+ end
202
+
203
+ # Show invalid properties with the reasons. Usually used together with valid?
204
+ # @return Array for valid properties with the reasons
205
+ def list_invalid_properties
206
+ invalid_properties = Array.new
207
+ return invalid_properties
208
+ end
209
+
210
+ # Check to see if the all the properties in the model are valid
211
+ # @return true if the model is valid
212
+ def valid?
213
+ return true
214
+ end
215
+
216
+ # Checks equality by comparing each attribute.
217
+ # @param [Object] Object to be compared
218
+ def ==(o)
219
+ return true if self.equal?(o)
220
+ self.class == o.class &&
221
+ successful == o.successful &&
222
+ lead_type == o.lead_type &&
223
+ contact_business_email == o.contact_business_email &&
224
+ contact_first_name == o.contact_first_name &&
225
+ contact_last_name == o.contact_last_name &&
226
+ contact_gender == o.contact_gender &&
227
+ company_name == o.company_name &&
228
+ company_domain_name == o.company_domain_name &&
229
+ company_house_number == o.company_house_number &&
230
+ company_street == o.company_street &&
231
+ company_city == o.company_city &&
232
+ company_state_or_province == o.company_state_or_province &&
233
+ company_postal_code == o.company_postal_code &&
234
+ company_country == o.company_country &&
235
+ company_country_code == o.company_country_code &&
236
+ company_telephone == o.company_telephone &&
237
+ company_vat_number == o.company_vat_number &&
238
+ employee_count == o.employee_count
239
+ end
240
+
241
+ # @see the `==` method
242
+ # @param [Object] Object to be compared
243
+ def eql?(o)
244
+ self == o
245
+ end
246
+
247
+ # Calculates hash code according to all attributes.
248
+ # @return [Fixnum] Hash code
249
+ def hash
250
+ [successful, lead_type, contact_business_email, contact_first_name, contact_last_name, contact_gender, company_name, company_domain_name, company_house_number, company_street, company_city, company_state_or_province, company_postal_code, company_country, company_country_code, company_telephone, company_vat_number, employee_count].hash
251
+ end
252
+
253
+ # Builds the object from hash
254
+ # @param [Hash] attributes Model attributes in the form of hash
255
+ # @return [Object] Returns the model itself
256
+ def build_from_hash(attributes)
257
+ return nil unless attributes.is_a?(Hash)
258
+ self.class.swagger_types.each_pair do |key, type|
259
+ if type =~ /\AArray<(.*)>/i
260
+ # check to ensure the input is an array given that the the attribute
261
+ # is documented as an array but the input is not
262
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
263
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
264
+ end
265
+ elsif !attributes[self.class.attribute_map[key]].nil?
266
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
267
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
268
+ end
269
+
270
+ self
271
+ end
272
+
273
+ # Deserializes the data based on type
274
+ # @param string type Data type
275
+ # @param string value Value to be deserialized
276
+ # @return [Object] Deserialized data
277
+ def _deserialize(type, value)
278
+ case type.to_sym
279
+ when :DateTime
280
+ DateTime.parse(value)
281
+ when :Date
282
+ Date.parse(value)
283
+ when :String
284
+ value.to_s
285
+ when :Integer
286
+ value.to_i
287
+ when :Float
288
+ value.to_f
289
+ when :BOOLEAN
290
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
291
+ true
292
+ else
293
+ false
294
+ end
295
+ when :Object
296
+ # generic object (usually a Hash), return directly
297
+ value
298
+ when /\AArray<(?<inner_type>.+)>\z/
299
+ inner_type = Regexp.last_match[:inner_type]
300
+ value.map { |v| _deserialize(inner_type, v) }
301
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
302
+ k_type = Regexp.last_match[:k_type]
303
+ v_type = Regexp.last_match[:v_type]
304
+ {}.tap do |hash|
305
+ value.each do |k, v|
306
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
307
+ end
308
+ end
309
+ else # model
310
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
311
+ temp_model.build_from_hash(value)
312
+ end
313
+ end
314
+
315
+ # Returns the string representation of the object
316
+ # @return [String] String presentation of the object
317
+ def to_s
318
+ to_hash.to_s
319
+ end
320
+
321
+ # to_body is an alias to to_hash (backward compatibility)
322
+ # @return [Hash] Returns the object in the form of hash
323
+ def to_body
324
+ to_hash
325
+ end
326
+
327
+ # Returns the object in the form of hash
328
+ # @return [Hash] Returns the object in the form of hash
329
+ def to_hash
330
+ hash = {}
331
+ self.class.attribute_map.each_pair do |attr, param|
332
+ value = self.send(attr)
333
+ next if value.nil?
334
+ hash[param] = _to_hash(value)
335
+ end
336
+ hash
337
+ end
338
+
339
+ # Outputs non-array value in the form of hash
340
+ # For object, use to_hash. Otherwise, just return the value
341
+ # @param [Object] value Any valid value
342
+ # @return [Hash] Returns the value in the form of hash
343
+ def _to_hash(value)
344
+ if value.is_a?(Array)
345
+ value.compact.map{ |v| _to_hash(v) }
346
+ elsif value.is_a?(Hash)
347
+ {}.tap do |hash|
348
+ value.each { |k, v| hash[k] = _to_hash(v) }
349
+ end
350
+ elsif value.respond_to? :to_hash
351
+ value.to_hash
352
+ else
353
+ value
354
+ end
355
+ end
356
+
357
+ end
358
+
359
+ end
@@ -0,0 +1,199 @@
1
+ =begin
2
+ #validateapi
3
+
4
+ #The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Request to parse an address formatted as a string/free text into a structured address
17
+ class ParseAddressRequest
18
+ # A mailing address or street address formatted as a single text string; this will be parsed into its components
19
+ attr_accessor :address_string
20
+
21
+ # Optional; indicates how the parsed output should be capitalized; default is Title Case; possible values are: \"Uppercase\" will set the capitalization to UPPER CASE; \"Lowercase\" will set the capitalization to lower case; \"Titlecase\" will set the capitalization to Title Case; and \"Originalcase\" will preserve the original casing as much as possible
22
+ attr_accessor :capitalization_mode
23
+
24
+
25
+ # Attribute mapping from ruby-style variable name to JSON key.
26
+ def self.attribute_map
27
+ {
28
+ :'address_string' => :'AddressString',
29
+ :'capitalization_mode' => :'CapitalizationMode'
30
+ }
31
+ end
32
+
33
+ # Attribute type mapping.
34
+ def self.swagger_types
35
+ {
36
+ :'address_string' => :'String',
37
+ :'capitalization_mode' => :'String'
38
+ }
39
+ end
40
+
41
+ # Initializes the object
42
+ # @param [Hash] attributes Model attributes in the form of hash
43
+ def initialize(attributes = {})
44
+ return unless attributes.is_a?(Hash)
45
+
46
+ # convert string to symbol for hash key
47
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
48
+
49
+ if attributes.has_key?(:'AddressString')
50
+ self.address_string = attributes[:'AddressString']
51
+ end
52
+
53
+ if attributes.has_key?(:'CapitalizationMode')
54
+ self.capitalization_mode = attributes[:'CapitalizationMode']
55
+ end
56
+
57
+ end
58
+
59
+ # Show invalid properties with the reasons. Usually used together with valid?
60
+ # @return Array for valid properties with the reasons
61
+ def list_invalid_properties
62
+ invalid_properties = Array.new
63
+ return invalid_properties
64
+ end
65
+
66
+ # Check to see if the all the properties in the model are valid
67
+ # @return true if the model is valid
68
+ def valid?
69
+ return true
70
+ end
71
+
72
+ # Checks equality by comparing each attribute.
73
+ # @param [Object] Object to be compared
74
+ def ==(o)
75
+ return true if self.equal?(o)
76
+ self.class == o.class &&
77
+ address_string == o.address_string &&
78
+ capitalization_mode == o.capitalization_mode
79
+ end
80
+
81
+ # @see the `==` method
82
+ # @param [Object] Object to be compared
83
+ def eql?(o)
84
+ self == o
85
+ end
86
+
87
+ # Calculates hash code according to all attributes.
88
+ # @return [Fixnum] Hash code
89
+ def hash
90
+ [address_string, capitalization_mode].hash
91
+ end
92
+
93
+ # Builds the object from hash
94
+ # @param [Hash] attributes Model attributes in the form of hash
95
+ # @return [Object] Returns the model itself
96
+ def build_from_hash(attributes)
97
+ return nil unless attributes.is_a?(Hash)
98
+ self.class.swagger_types.each_pair do |key, type|
99
+ if type =~ /\AArray<(.*)>/i
100
+ # check to ensure the input is an array given that the the attribute
101
+ # is documented as an array but the input is not
102
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
103
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
104
+ end
105
+ elsif !attributes[self.class.attribute_map[key]].nil?
106
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
107
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
108
+ end
109
+
110
+ self
111
+ end
112
+
113
+ # Deserializes the data based on type
114
+ # @param string type Data type
115
+ # @param string value Value to be deserialized
116
+ # @return [Object] Deserialized data
117
+ def _deserialize(type, value)
118
+ case type.to_sym
119
+ when :DateTime
120
+ DateTime.parse(value)
121
+ when :Date
122
+ Date.parse(value)
123
+ when :String
124
+ value.to_s
125
+ when :Integer
126
+ value.to_i
127
+ when :Float
128
+ value.to_f
129
+ when :BOOLEAN
130
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
131
+ true
132
+ else
133
+ false
134
+ end
135
+ when :Object
136
+ # generic object (usually a Hash), return directly
137
+ value
138
+ when /\AArray<(?<inner_type>.+)>\z/
139
+ inner_type = Regexp.last_match[:inner_type]
140
+ value.map { |v| _deserialize(inner_type, v) }
141
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
142
+ k_type = Regexp.last_match[:k_type]
143
+ v_type = Regexp.last_match[:v_type]
144
+ {}.tap do |hash|
145
+ value.each do |k, v|
146
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
147
+ end
148
+ end
149
+ else # model
150
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
151
+ temp_model.build_from_hash(value)
152
+ end
153
+ end
154
+
155
+ # Returns the string representation of the object
156
+ # @return [String] String presentation of the object
157
+ def to_s
158
+ to_hash.to_s
159
+ end
160
+
161
+ # to_body is an alias to to_hash (backward compatibility)
162
+ # @return [Hash] Returns the object in the form of hash
163
+ def to_body
164
+ to_hash
165
+ end
166
+
167
+ # Returns the object in the form of hash
168
+ # @return [Hash] Returns the object in the form of hash
169
+ def to_hash
170
+ hash = {}
171
+ self.class.attribute_map.each_pair do |attr, param|
172
+ value = self.send(attr)
173
+ next if value.nil?
174
+ hash[param] = _to_hash(value)
175
+ end
176
+ hash
177
+ end
178
+
179
+ # Outputs non-array value in the form of hash
180
+ # For object, use to_hash. Otherwise, just return the value
181
+ # @param [Object] value Any valid value
182
+ # @return [Hash] Returns the value in the form of hash
183
+ def _to_hash(value)
184
+ if value.is_a?(Array)
185
+ value.compact.map{ |v| _to_hash(v) }
186
+ elsif value.is_a?(Hash)
187
+ {}.tap do |hash|
188
+ value.each { |k, v| hash[k] = _to_hash(v) }
189
+ end
190
+ elsif value.respond_to? :to_hash
191
+ value.to_hash
192
+ else
193
+ value
194
+ end
195
+ end
196
+
197
+ end
198
+
199
+ end