cloudmersive-validate-api-client 1.2.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/README.md +118 -0
  4. data/Rakefile +8 -0
  5. data/cloudmersive-validate-api-client.gemspec +45 -0
  6. data/docs/AddressGetServersResponse.md +9 -0
  7. data/docs/AddressVerifySyntaxOnlyResponse.md +8 -0
  8. data/docs/CheckResponse.md +8 -0
  9. data/docs/DomainApi.md +118 -0
  10. data/docs/EmailApi.md +173 -0
  11. data/docs/FullEmailValidationResponse.md +9 -0
  12. data/docs/GeolocateResponse.md +16 -0
  13. data/docs/IPAddressApi.md +63 -0
  14. data/docs/PhoneNumberApi.md +63 -0
  15. data/docs/PhoneNumberValidateRequest.md +9 -0
  16. data/docs/PhoneNumberValidationResponse.md +15 -0
  17. data/docs/VatApi.md +63 -0
  18. data/docs/VatLookupRequest.md +8 -0
  19. data/docs/VatLookupResponse.md +12 -0
  20. data/docs/WhoisResponse.md +11 -0
  21. data/git_push.sh +55 -0
  22. data/lib/cloudmersive-validate-api-client.rb +54 -0
  23. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +133 -0
  24. data/lib/cloudmersive-validate-api-client/api/email_api.rb +188 -0
  25. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +78 -0
  26. data/lib/cloudmersive-validate-api-client/api/phone_number_api.rb +78 -0
  27. data/lib/cloudmersive-validate-api-client/api/vat_api.rb +78 -0
  28. data/lib/cloudmersive-validate-api-client/api_client.rb +389 -0
  29. data/lib/cloudmersive-validate-api-client/api_error.rb +38 -0
  30. data/lib/cloudmersive-validate-api-client/configuration.rb +209 -0
  31. data/lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb +199 -0
  32. data/lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb +189 -0
  33. data/lib/cloudmersive-validate-api-client/models/check_response.rb +189 -0
  34. data/lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb +199 -0
  35. data/lib/cloudmersive-validate-api-client/models/geolocate_response.rb +269 -0
  36. data/lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb +199 -0
  37. data/lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb +259 -0
  38. data/lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb +188 -0
  39. data/lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb +224 -0
  40. data/lib/cloudmersive-validate-api-client/models/whois_response.rb +219 -0
  41. data/lib/cloudmersive-validate-api-client/version.rb +15 -0
  42. data/spec/api/domain_api_spec.rb +59 -0
  43. data/spec/api/email_api_spec.rb +71 -0
  44. data/spec/api/ip_address_api_spec.rb +47 -0
  45. data/spec/api/phone_number_api_spec.rb +47 -0
  46. data/spec/api/vat_api_spec.rb +47 -0
  47. data/spec/api_client_spec.rb +226 -0
  48. data/spec/configuration_spec.rb +42 -0
  49. data/spec/models/address_get_servers_response_spec.rb +48 -0
  50. data/spec/models/address_verify_syntax_only_response_spec.rb +42 -0
  51. data/spec/models/check_response_spec.rb +42 -0
  52. data/spec/models/full_email_validation_response_spec.rb +48 -0
  53. data/spec/models/geolocate_response_spec.rb +90 -0
  54. data/spec/models/phone_number_validate_request_spec.rb +48 -0
  55. data/spec/models/phone_number_validation_response_spec.rb +84 -0
  56. data/spec/models/vat_lookup_request_spec.rb +42 -0
  57. data/spec/models/vat_lookup_response_spec.rb +66 -0
  58. data/spec/models/whois_response_spec.rb +60 -0
  59. data/spec/spec_helper.rb +111 -0
  60. metadata +284 -0
@@ -0,0 +1,189 @@
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: unset
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Result of a validation operation
17
+ class CheckResponse
18
+ # True if the domain name was valid, false if it is not
19
+ attr_accessor :valid_domain
20
+
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'valid_domain' => :'ValidDomain'
26
+ }
27
+ end
28
+
29
+ # Attribute type mapping.
30
+ def self.swagger_types
31
+ {
32
+ :'valid_domain' => :'BOOLEAN'
33
+ }
34
+ end
35
+
36
+ # Initializes the object
37
+ # @param [Hash] attributes Model attributes in the form of hash
38
+ def initialize(attributes = {})
39
+ return unless attributes.is_a?(Hash)
40
+
41
+ # convert string to symbol for hash key
42
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
43
+
44
+ if attributes.has_key?(:'ValidDomain')
45
+ self.valid_domain = attributes[:'ValidDomain']
46
+ end
47
+
48
+ end
49
+
50
+ # Show invalid properties with the reasons. Usually used together with valid?
51
+ # @return Array for valid properties with the reasons
52
+ def list_invalid_properties
53
+ invalid_properties = Array.new
54
+ return invalid_properties
55
+ end
56
+
57
+ # Check to see if the all the properties in the model are valid
58
+ # @return true if the model is valid
59
+ def valid?
60
+ return true
61
+ end
62
+
63
+ # Checks equality by comparing each attribute.
64
+ # @param [Object] Object to be compared
65
+ def ==(o)
66
+ return true if self.equal?(o)
67
+ self.class == o.class &&
68
+ valid_domain == o.valid_domain
69
+ end
70
+
71
+ # @see the `==` method
72
+ # @param [Object] Object to be compared
73
+ def eql?(o)
74
+ self == o
75
+ end
76
+
77
+ # Calculates hash code according to all attributes.
78
+ # @return [Fixnum] Hash code
79
+ def hash
80
+ [valid_domain].hash
81
+ end
82
+
83
+ # Builds the object from hash
84
+ # @param [Hash] attributes Model attributes in the form of hash
85
+ # @return [Object] Returns the model itself
86
+ def build_from_hash(attributes)
87
+ return nil unless attributes.is_a?(Hash)
88
+ self.class.swagger_types.each_pair do |key, type|
89
+ if type =~ /\AArray<(.*)>/i
90
+ # check to ensure the input is an array given that the the attribute
91
+ # is documented as an array but the input is not
92
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
93
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
94
+ end
95
+ elsif !attributes[self.class.attribute_map[key]].nil?
96
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
97
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
98
+ end
99
+
100
+ self
101
+ end
102
+
103
+ # Deserializes the data based on type
104
+ # @param string type Data type
105
+ # @param string value Value to be deserialized
106
+ # @return [Object] Deserialized data
107
+ def _deserialize(type, value)
108
+ case type.to_sym
109
+ when :DateTime
110
+ DateTime.parse(value)
111
+ when :Date
112
+ Date.parse(value)
113
+ when :String
114
+ value.to_s
115
+ when :Integer
116
+ value.to_i
117
+ when :Float
118
+ value.to_f
119
+ when :BOOLEAN
120
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
121
+ true
122
+ else
123
+ false
124
+ end
125
+ when :Object
126
+ # generic object (usually a Hash), return directly
127
+ value
128
+ when /\AArray<(?<inner_type>.+)>\z/
129
+ inner_type = Regexp.last_match[:inner_type]
130
+ value.map { |v| _deserialize(inner_type, v) }
131
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
132
+ k_type = Regexp.last_match[:k_type]
133
+ v_type = Regexp.last_match[:v_type]
134
+ {}.tap do |hash|
135
+ value.each do |k, v|
136
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
137
+ end
138
+ end
139
+ else # model
140
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
141
+ temp_model.build_from_hash(value)
142
+ end
143
+ end
144
+
145
+ # Returns the string representation of the object
146
+ # @return [String] String presentation of the object
147
+ def to_s
148
+ to_hash.to_s
149
+ end
150
+
151
+ # to_body is an alias to to_hash (backward compatibility)
152
+ # @return [Hash] Returns the object in the form of hash
153
+ def to_body
154
+ to_hash
155
+ end
156
+
157
+ # Returns the object in the form of hash
158
+ # @return [Hash] Returns the object in the form of hash
159
+ def to_hash
160
+ hash = {}
161
+ self.class.attribute_map.each_pair do |attr, param|
162
+ value = self.send(attr)
163
+ next if value.nil?
164
+ hash[param] = _to_hash(value)
165
+ end
166
+ hash
167
+ end
168
+
169
+ # Outputs non-array value in the form of hash
170
+ # For object, use to_hash. Otherwise, just return the value
171
+ # @param [Object] value Any valid value
172
+ # @return [Hash] Returns the value in the form of hash
173
+ def _to_hash(value)
174
+ if value.is_a?(Array)
175
+ value.compact.map{ |v| _to_hash(v) }
176
+ elsif value.is_a?(Hash)
177
+ {}.tap do |hash|
178
+ value.each { |k, v| hash[k] = _to_hash(v) }
179
+ end
180
+ elsif value.respond_to? :to_hash
181
+ value.to_hash
182
+ else
183
+ value
184
+ end
185
+ end
186
+
187
+ end
188
+
189
+ 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: unset
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Full email addresss validation result
17
+ class FullEmailValidationResponse
18
+ # True if the email address is valid, false otherwise
19
+ attr_accessor :valid_address
20
+
21
+ # Email server connected to for verification
22
+ attr_accessor :mail_server_used_for_validation
23
+
24
+
25
+ # Attribute mapping from ruby-style variable name to JSON key.
26
+ def self.attribute_map
27
+ {
28
+ :'valid_address' => :'ValidAddress',
29
+ :'mail_server_used_for_validation' => :'MailServerUsedForValidation'
30
+ }
31
+ end
32
+
33
+ # Attribute type mapping.
34
+ def self.swagger_types
35
+ {
36
+ :'valid_address' => :'BOOLEAN',
37
+ :'mail_server_used_for_validation' => :'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?(:'ValidAddress')
50
+ self.valid_address = attributes[:'ValidAddress']
51
+ end
52
+
53
+ if attributes.has_key?(:'MailServerUsedForValidation')
54
+ self.mail_server_used_for_validation = attributes[:'MailServerUsedForValidation']
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
+ valid_address == o.valid_address &&
78
+ mail_server_used_for_validation == o.mail_server_used_for_validation
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
+ [valid_address, mail_server_used_for_validation].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
@@ -0,0 +1,269 @@
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: unset
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Geolocation result
17
+ class GeolocateResponse
18
+ # Two-letter country code of IP address
19
+ attr_accessor :country_code
20
+
21
+ # Country name of IP address
22
+ attr_accessor :country_name
23
+
24
+ # City of IP address
25
+ attr_accessor :city
26
+
27
+ # State/region code of IP address
28
+ attr_accessor :region_code
29
+
30
+ # State/region of IP address
31
+ attr_accessor :region_name
32
+
33
+ # Zip or postal code of IP address
34
+ attr_accessor :zip_code
35
+
36
+ # Timezone of IP address
37
+ attr_accessor :timezone_standard_name
38
+
39
+ # Latitude of IP address
40
+ attr_accessor :latitude
41
+
42
+ # Longitude of IP address
43
+ attr_accessor :longitude
44
+
45
+
46
+ # Attribute mapping from ruby-style variable name to JSON key.
47
+ def self.attribute_map
48
+ {
49
+ :'country_code' => :'CountryCode',
50
+ :'country_name' => :'CountryName',
51
+ :'city' => :'City',
52
+ :'region_code' => :'RegionCode',
53
+ :'region_name' => :'RegionName',
54
+ :'zip_code' => :'ZipCode',
55
+ :'timezone_standard_name' => :'TimezoneStandardName',
56
+ :'latitude' => :'Latitude',
57
+ :'longitude' => :'Longitude'
58
+ }
59
+ end
60
+
61
+ # Attribute type mapping.
62
+ def self.swagger_types
63
+ {
64
+ :'country_code' => :'String',
65
+ :'country_name' => :'String',
66
+ :'city' => :'String',
67
+ :'region_code' => :'String',
68
+ :'region_name' => :'String',
69
+ :'zip_code' => :'String',
70
+ :'timezone_standard_name' => :'String',
71
+ :'latitude' => :'Float',
72
+ :'longitude' => :'Float'
73
+ }
74
+ end
75
+
76
+ # Initializes the object
77
+ # @param [Hash] attributes Model attributes in the form of hash
78
+ def initialize(attributes = {})
79
+ return unless attributes.is_a?(Hash)
80
+
81
+ # convert string to symbol for hash key
82
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
83
+
84
+ if attributes.has_key?(:'CountryCode')
85
+ self.country_code = attributes[:'CountryCode']
86
+ end
87
+
88
+ if attributes.has_key?(:'CountryName')
89
+ self.country_name = attributes[:'CountryName']
90
+ end
91
+
92
+ if attributes.has_key?(:'City')
93
+ self.city = attributes[:'City']
94
+ end
95
+
96
+ if attributes.has_key?(:'RegionCode')
97
+ self.region_code = attributes[:'RegionCode']
98
+ end
99
+
100
+ if attributes.has_key?(:'RegionName')
101
+ self.region_name = attributes[:'RegionName']
102
+ end
103
+
104
+ if attributes.has_key?(:'ZipCode')
105
+ self.zip_code = attributes[:'ZipCode']
106
+ end
107
+
108
+ if attributes.has_key?(:'TimezoneStandardName')
109
+ self.timezone_standard_name = attributes[:'TimezoneStandardName']
110
+ end
111
+
112
+ if attributes.has_key?(:'Latitude')
113
+ self.latitude = attributes[:'Latitude']
114
+ end
115
+
116
+ if attributes.has_key?(:'Longitude')
117
+ self.longitude = attributes[:'Longitude']
118
+ end
119
+
120
+ end
121
+
122
+ # Show invalid properties with the reasons. Usually used together with valid?
123
+ # @return Array for valid properties with the reasons
124
+ def list_invalid_properties
125
+ invalid_properties = Array.new
126
+ return invalid_properties
127
+ end
128
+
129
+ # Check to see if the all the properties in the model are valid
130
+ # @return true if the model is valid
131
+ def valid?
132
+ return true
133
+ end
134
+
135
+ # Checks equality by comparing each attribute.
136
+ # @param [Object] Object to be compared
137
+ def ==(o)
138
+ return true if self.equal?(o)
139
+ self.class == o.class &&
140
+ country_code == o.country_code &&
141
+ country_name == o.country_name &&
142
+ city == o.city &&
143
+ region_code == o.region_code &&
144
+ region_name == o.region_name &&
145
+ zip_code == o.zip_code &&
146
+ timezone_standard_name == o.timezone_standard_name &&
147
+ latitude == o.latitude &&
148
+ longitude == o.longitude
149
+ end
150
+
151
+ # @see the `==` method
152
+ # @param [Object] Object to be compared
153
+ def eql?(o)
154
+ self == o
155
+ end
156
+
157
+ # Calculates hash code according to all attributes.
158
+ # @return [Fixnum] Hash code
159
+ def hash
160
+ [country_code, country_name, city, region_code, region_name, zip_code, timezone_standard_name, latitude, longitude].hash
161
+ end
162
+
163
+ # Builds the object from hash
164
+ # @param [Hash] attributes Model attributes in the form of hash
165
+ # @return [Object] Returns the model itself
166
+ def build_from_hash(attributes)
167
+ return nil unless attributes.is_a?(Hash)
168
+ self.class.swagger_types.each_pair do |key, type|
169
+ if type =~ /\AArray<(.*)>/i
170
+ # check to ensure the input is an array given that the the attribute
171
+ # is documented as an array but the input is not
172
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
173
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
174
+ end
175
+ elsif !attributes[self.class.attribute_map[key]].nil?
176
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
177
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
178
+ end
179
+
180
+ self
181
+ end
182
+
183
+ # Deserializes the data based on type
184
+ # @param string type Data type
185
+ # @param string value Value to be deserialized
186
+ # @return [Object] Deserialized data
187
+ def _deserialize(type, value)
188
+ case type.to_sym
189
+ when :DateTime
190
+ DateTime.parse(value)
191
+ when :Date
192
+ Date.parse(value)
193
+ when :String
194
+ value.to_s
195
+ when :Integer
196
+ value.to_i
197
+ when :Float
198
+ value.to_f
199
+ when :BOOLEAN
200
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
201
+ true
202
+ else
203
+ false
204
+ end
205
+ when :Object
206
+ # generic object (usually a Hash), return directly
207
+ value
208
+ when /\AArray<(?<inner_type>.+)>\z/
209
+ inner_type = Regexp.last_match[:inner_type]
210
+ value.map { |v| _deserialize(inner_type, v) }
211
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
212
+ k_type = Regexp.last_match[:k_type]
213
+ v_type = Regexp.last_match[:v_type]
214
+ {}.tap do |hash|
215
+ value.each do |k, v|
216
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
217
+ end
218
+ end
219
+ else # model
220
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
221
+ temp_model.build_from_hash(value)
222
+ end
223
+ end
224
+
225
+ # Returns the string representation of the object
226
+ # @return [String] String presentation of the object
227
+ def to_s
228
+ to_hash.to_s
229
+ end
230
+
231
+ # to_body is an alias to to_hash (backward compatibility)
232
+ # @return [Hash] Returns the object in the form of hash
233
+ def to_body
234
+ to_hash
235
+ end
236
+
237
+ # Returns the object in the form of hash
238
+ # @return [Hash] Returns the object in the form of hash
239
+ def to_hash
240
+ hash = {}
241
+ self.class.attribute_map.each_pair do |attr, param|
242
+ value = self.send(attr)
243
+ next if value.nil?
244
+ hash[param] = _to_hash(value)
245
+ end
246
+ hash
247
+ end
248
+
249
+ # Outputs non-array value in the form of hash
250
+ # For object, use to_hash. Otherwise, just return the value
251
+ # @param [Object] value Any valid value
252
+ # @return [Hash] Returns the value in the form of hash
253
+ def _to_hash(value)
254
+ if value.is_a?(Array)
255
+ value.compact.map{ |v| _to_hash(v) }
256
+ elsif value.is_a?(Hash)
257
+ {}.tap do |hash|
258
+ value.each { |k, v| hash[k] = _to_hash(v) }
259
+ end
260
+ elsif value.respond_to? :to_hash
261
+ value.to_hash
262
+ else
263
+ value
264
+ end
265
+ end
266
+
267
+ end
268
+
269
+ end