cloudmersive-validate-api-client 1.3.2 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -9
  3. data/cloudmersive-validate-api-client.gemspec +1 -1
  4. data/docs/AddressApi.md +63 -0
  5. data/docs/AddressGetServersResponse.md +2 -2
  6. data/docs/DomainApi.md +110 -0
  7. data/docs/FullEmailValidationResponse.md +2 -0
  8. data/docs/NameApi.md +55 -0
  9. data/docs/ParseAddressRequest.md +9 -0
  10. data/docs/ParseAddressResponse.md +15 -0
  11. data/docs/UserAgentApi.md +63 -0
  12. data/docs/UserAgentValidateRequest.md +8 -0
  13. data/docs/UserAgentValidateResponse.md +21 -0
  14. data/docs/ValidateIdentifierRequest.md +15 -0
  15. data/docs/ValidateIdentifierResponse.md +9 -0
  16. data/docs/ValidateUrlRequestFull.md +8 -0
  17. data/docs/ValidateUrlRequestSyntaxOnly.md +8 -0
  18. data/docs/ValidateUrlResponseFull.md +12 -0
  19. data/docs/ValidateUrlResponseSyntaxOnly.md +9 -0
  20. data/docs/VatLookupRequest.md +1 -1
  21. data/docs/VatLookupResponse.md +5 -5
  22. data/lib/cloudmersive-validate-api-client.rb +13 -1
  23. data/lib/cloudmersive-validate-api-client/api/address_api.rb +78 -0
  24. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +111 -1
  25. data/lib/cloudmersive-validate-api-client/api/email_api.rb +1 -1
  26. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +1 -1
  27. data/lib/cloudmersive-validate-api-client/api/name_api.rb +56 -1
  28. data/lib/cloudmersive-validate-api-client/api/phone_number_api.rb +1 -1
  29. data/lib/cloudmersive-validate-api-client/api/user_agent_api.rb +78 -0
  30. data/lib/cloudmersive-validate-api-client/api/vat_api.rb +1 -1
  31. data/lib/cloudmersive-validate-api-client/api_client.rb +1 -1
  32. data/lib/cloudmersive-validate-api-client/api_error.rb +1 -1
  33. data/lib/cloudmersive-validate-api-client/configuration.rb +1 -1
  34. data/lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb +3 -1
  35. data/lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb +1 -1
  36. data/lib/cloudmersive-validate-api-client/models/check_response.rb +1 -1
  37. data/lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb +1 -1
  38. data/lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb +1 -1
  39. data/lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb +25 -5
  40. data/lib/cloudmersive-validate-api-client/models/full_name_validation_request.rb +1 -1
  41. data/lib/cloudmersive-validate-api-client/models/full_name_validation_response.rb +1 -1
  42. data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +1 -1
  43. data/lib/cloudmersive-validate-api-client/models/get_gender_request.rb +1 -1
  44. data/lib/cloudmersive-validate-api-client/models/get_gender_response.rb +1 -1
  45. data/lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb +1 -1
  46. data/lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb +1 -1
  47. data/lib/cloudmersive-validate-api-client/models/parse_address_request.rb +199 -0
  48. data/lib/cloudmersive-validate-api-client/models/parse_address_response.rb +259 -0
  49. data/lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb +1 -1
  50. data/lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb +1 -1
  51. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_request.rb +189 -0
  52. data/lib/cloudmersive-validate-api-client/models/user_agent_validate_response.rb +319 -0
  53. data/lib/cloudmersive-validate-api-client/models/validate_identifier_request.rb +259 -0
  54. data/lib/cloudmersive-validate-api-client/models/validate_identifier_response.rb +199 -0
  55. data/lib/cloudmersive-validate-api-client/models/validate_url_request_full.rb +189 -0
  56. data/lib/cloudmersive-validate-api-client/models/validate_url_request_syntax_only.rb +189 -0
  57. data/lib/cloudmersive-validate-api-client/models/validate_url_response_full.rb +229 -0
  58. data/lib/cloudmersive-validate-api-client/models/validate_url_response_syntax_only.rb +199 -0
  59. data/lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb +2 -1
  60. data/lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb +6 -1
  61. data/lib/cloudmersive-validate-api-client/models/whois_response.rb +1 -1
  62. data/lib/cloudmersive-validate-api-client/version.rb +2 -2
  63. data/spec/api/address_api_spec.rb +47 -0
  64. data/spec/api/domain_api_spec.rb +25 -1
  65. data/spec/api/email_api_spec.rb +1 -1
  66. data/spec/api/ip_address_api_spec.rb +1 -1
  67. data/spec/api/name_api_spec.rb +13 -1
  68. data/spec/api/phone_number_api_spec.rb +1 -1
  69. data/spec/api/user_agent_api_spec.rb +47 -0
  70. data/spec/api/vat_api_spec.rb +1 -1
  71. data/spec/api_client_spec.rb +1 -1
  72. data/spec/configuration_spec.rb +1 -1
  73. data/spec/models/address_get_servers_response_spec.rb +1 -1
  74. data/spec/models/address_verify_syntax_only_response_spec.rb +1 -1
  75. data/spec/models/check_response_spec.rb +1 -1
  76. data/spec/models/first_name_validation_request_spec.rb +1 -1
  77. data/spec/models/first_name_validation_response_spec.rb +1 -1
  78. data/spec/models/full_email_validation_response_spec.rb +13 -1
  79. data/spec/models/full_name_validation_request_spec.rb +1 -1
  80. data/spec/models/full_name_validation_response_spec.rb +1 -1
  81. data/spec/models/geolocate_response_spec.rb +1 -1
  82. data/spec/models/get_gender_request_spec.rb +1 -1
  83. data/spec/models/get_gender_response_spec.rb +1 -1
  84. data/spec/models/last_name_validation_request_spec.rb +1 -1
  85. data/spec/models/last_name_validation_response_spec.rb +1 -1
  86. data/spec/models/parse_address_request_spec.rb +48 -0
  87. data/spec/models/parse_address_response_spec.rb +84 -0
  88. data/spec/models/phone_number_validate_request_spec.rb +1 -1
  89. data/spec/models/phone_number_validation_response_spec.rb +1 -1
  90. data/spec/models/user_agent_validate_request_spec.rb +42 -0
  91. data/spec/models/user_agent_validate_response_spec.rb +120 -0
  92. data/spec/models/validate_identifier_request_spec.rb +84 -0
  93. data/spec/models/validate_identifier_response_spec.rb +48 -0
  94. data/spec/models/validate_url_request_full_spec.rb +42 -0
  95. data/spec/models/validate_url_request_syntax_only_spec.rb +42 -0
  96. data/spec/models/validate_url_response_full_spec.rb +66 -0
  97. data/spec/models/validate_url_response_syntax_only_spec.rb +48 -0
  98. data/spec/models/vat_lookup_request_spec.rb +1 -1
  99. data/spec/models/vat_lookup_response_spec.rb +1 -1
  100. data/spec/models/whois_response_spec.rb +1 -1
  101. data/spec/spec_helper.rb +1 -1
  102. metadata +51 -16
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,78 @@
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 "uri"
14
+
15
+ module CloudmersiveValidateApiClient
16
+ class UserAgentApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+
23
+ # Parse an HTTP User-Agent string, identify robots
24
+ # Uses a parsing system and database to parse the User-Agent into its structured component parts, such as Browser, Browser Version, Browser Engine, Operating System, and importantly, Robot identification.
25
+ # @param request Input parse request
26
+ # @param [Hash] opts the optional parameters
27
+ # @return [UserAgentValidateResponse]
28
+ def user_agent_parse(request, opts = {})
29
+ data, _status_code, _headers = user_agent_parse_with_http_info(request, opts)
30
+ return data
31
+ end
32
+
33
+ # Parse an HTTP User-Agent string, identify robots
34
+ # Uses a parsing system and database to parse the User-Agent into its structured component parts, such as Browser, Browser Version, Browser Engine, Operating System, and importantly, Robot identification.
35
+ # @param request Input parse request
36
+ # @param [Hash] opts the optional parameters
37
+ # @return [Array<(UserAgentValidateResponse, Fixnum, Hash)>] UserAgentValidateResponse data, response status code and response headers
38
+ def user_agent_parse_with_http_info(request, opts = {})
39
+ if @api_client.config.debugging
40
+ @api_client.config.logger.debug "Calling API: UserAgentApi.user_agent_parse ..."
41
+ end
42
+ # verify the required parameter 'request' is set
43
+ if @api_client.config.client_side_validation && request.nil?
44
+ fail ArgumentError, "Missing the required parameter 'request' when calling UserAgentApi.user_agent_parse"
45
+ end
46
+ # resource path
47
+ local_var_path = "/validate/useragent/parse"
48
+
49
+ # query parameters
50
+ query_params = {}
51
+
52
+ # header parameters
53
+ header_params = {}
54
+ # HTTP header 'Accept' (if needed)
55
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
56
+ # HTTP header 'Content-Type'
57
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'text/json', 'application/xml', 'text/xml', 'application/x-www-form-urlencoded'])
58
+
59
+ # form parameters
60
+ form_params = {}
61
+
62
+ # http body (model)
63
+ post_body = @api_client.object_to_http_body(request)
64
+ auth_names = ['Apikey']
65
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
66
+ :header_params => header_params,
67
+ :query_params => query_params,
68
+ :form_params => form_params,
69
+ :body => post_body,
70
+ :auth_names => auth_names,
71
+ :return_type => 'UserAgentValidateResponse')
72
+ if @api_client.config.debugging
73
+ @api_client.config.logger.debug "API called: UserAgentApi#user_agent_parse\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
74
+ end
75
+ return data, status_code, headers
76
+ end
77
+ end
78
+ end
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -15,8 +15,10 @@ require 'date'
15
15
  module CloudmersiveValidateApiClient
16
16
  # Result of a partial email address validation
17
17
  class AddressGetServersResponse
18
+ # True if partial address validation was successufl, false otherwise
18
19
  attr_accessor :success
19
20
 
21
+ # Email servers for this email address
20
22
  attr_accessor :servers
21
23
 
22
24
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -36,6 +36,12 @@ module CloudmersiveValidateApiClient
36
36
  # Domain name of the email address
37
37
  attr_accessor :domain
38
38
 
39
+ # True if the email domain name is a free provider (typically a free to sign up web email provider for consumers / personal use), false otherwise.
40
+ attr_accessor :is_free_email_provider
41
+
42
+ # True if the email address is a disposable email address, false otherwise; these disposable providers are not typically used to receive email and so will have a low likelihood of opening mail sent there.
43
+ attr_accessor :is_disposable
44
+
39
45
 
40
46
  # Attribute mapping from ruby-style variable name to JSON key.
41
47
  def self.attribute_map
@@ -46,7 +52,9 @@ module CloudmersiveValidateApiClient
46
52
  :'valid_domain' => :'Valid_Domain',
47
53
  :'valid_smtp' => :'Valid_SMTP',
48
54
  :'is_catchall_domain' => :'IsCatchallDomain',
49
- :'domain' => :'Domain'
55
+ :'domain' => :'Domain',
56
+ :'is_free_email_provider' => :'IsFreeEmailProvider',
57
+ :'is_disposable' => :'IsDisposable'
50
58
  }
51
59
  end
52
60
 
@@ -59,7 +67,9 @@ module CloudmersiveValidateApiClient
59
67
  :'valid_domain' => :'BOOLEAN',
60
68
  :'valid_smtp' => :'BOOLEAN',
61
69
  :'is_catchall_domain' => :'BOOLEAN',
62
- :'domain' => :'String'
70
+ :'domain' => :'String',
71
+ :'is_free_email_provider' => :'BOOLEAN',
72
+ :'is_disposable' => :'BOOLEAN'
63
73
  }
64
74
  end
65
75
 
@@ -99,6 +109,14 @@ module CloudmersiveValidateApiClient
99
109
  self.domain = attributes[:'Domain']
100
110
  end
101
111
 
112
+ if attributes.has_key?(:'IsFreeEmailProvider')
113
+ self.is_free_email_provider = attributes[:'IsFreeEmailProvider']
114
+ end
115
+
116
+ if attributes.has_key?(:'IsDisposable')
117
+ self.is_disposable = attributes[:'IsDisposable']
118
+ end
119
+
102
120
  end
103
121
 
104
122
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -125,7 +143,9 @@ module CloudmersiveValidateApiClient
125
143
  valid_domain == o.valid_domain &&
126
144
  valid_smtp == o.valid_smtp &&
127
145
  is_catchall_domain == o.is_catchall_domain &&
128
- domain == o.domain
146
+ domain == o.domain &&
147
+ is_free_email_provider == o.is_free_email_provider &&
148
+ is_disposable == o.is_disposable
129
149
  end
130
150
 
131
151
  # @see the `==` method
@@ -137,7 +157,7 @@ module CloudmersiveValidateApiClient
137
157
  # Calculates hash code according to all attributes.
138
158
  # @return [Fixnum] Hash code
139
159
  def hash
140
- [valid_address, mail_server_used_for_validation, valid_syntax, valid_domain, valid_smtp, is_catchall_domain, domain].hash
160
+ [valid_address, mail_server_used_for_validation, valid_syntax, valid_domain, valid_smtp, is_catchall_domain, domain, is_free_email_provider, is_disposable].hash
141
161
  end
142
162
 
143
163
  # Builds the object from hash
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: unset
9
+ Swagger Codegen version: 2.3.1
10
10
 
11
11
  =end
12
12
 
@@ -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