cloudmersive-validate-api-client 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -4
  3. data/docs/AddressApi.md +55 -0
  4. data/docs/DateTimeApi.md +222 -0
  5. data/docs/DateTimeNaturalLanguageParseRequest.md +8 -0
  6. data/docs/DateTimeNowResult.md +10 -0
  7. data/docs/DateTimeStandardizedParseRequest.md +9 -0
  8. data/docs/DateTimeStandardizedParseResponse.md +16 -0
  9. data/docs/DomainApi.md +3 -3
  10. data/docs/EmailApi.md +3 -3
  11. data/docs/GetPublicHolidaysRequest.md +9 -0
  12. data/docs/IPAddressApi.md +4 -4
  13. data/docs/NormalizeAddressResponse.md +18 -0
  14. data/docs/PublicHolidayOccurrence.md +12 -0
  15. data/docs/PublicHolidaysResponse.md +9 -0
  16. data/docs/TextInputApi.md +2 -2
  17. data/lib/cloudmersive-validate-api-client.rb +9 -0
  18. data/lib/cloudmersive-validate-api-client/api/address_api.rb +54 -0
  19. data/lib/cloudmersive-validate-api-client/api/date_time_api.rb +231 -0
  20. data/lib/cloudmersive-validate-api-client/api/domain_api.rb +3 -3
  21. data/lib/cloudmersive-validate-api-client/api/email_api.rb +3 -3
  22. data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +4 -4
  23. data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +2 -2
  24. data/lib/cloudmersive-validate-api-client/models/date_time_natural_language_parse_request.rb +186 -0
  25. data/lib/cloudmersive-validate-api-client/models/date_time_now_result.rb +206 -0
  26. data/lib/cloudmersive-validate-api-client/models/date_time_standardized_parse_request.rb +196 -0
  27. data/lib/cloudmersive-validate-api-client/models/date_time_standardized_parse_response.rb +266 -0
  28. data/lib/cloudmersive-validate-api-client/models/get_public_holidays_request.rb +196 -0
  29. data/lib/cloudmersive-validate-api-client/models/normalize_address_response.rb +286 -0
  30. data/lib/cloudmersive-validate-api-client/models/public_holiday_occurrence.rb +226 -0
  31. data/lib/cloudmersive-validate-api-client/models/public_holidays_response.rb +198 -0
  32. data/lib/cloudmersive-validate-api-client/version.rb +1 -1
  33. data/spec/api/address_api_spec.rb +12 -0
  34. data/spec/api/date_time_api_spec.rb +82 -0
  35. data/spec/models/date_time_natural_language_parse_request_spec.rb +41 -0
  36. data/spec/models/date_time_now_result_spec.rb +53 -0
  37. data/spec/models/date_time_standardized_parse_request_spec.rb +47 -0
  38. data/spec/models/date_time_standardized_parse_response_spec.rb +89 -0
  39. data/spec/models/get_public_holidays_request_spec.rb +47 -0
  40. data/spec/models/normalize_address_response_spec.rb +101 -0
  41. data/spec/models/public_holiday_occurrence_spec.rb +65 -0
  42. data/spec/models/public_holidays_response_spec.rb +47 -0
  43. metadata +29 -2
@@ -0,0 +1,226 @@
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.4.14
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Public holiday occurrence
17
+ class PublicHolidayOccurrence
18
+ # Name of the holiday in English
19
+ attr_accessor :english_name
20
+
21
+ # Local name of the holiday
22
+ attr_accessor :local_name
23
+
24
+ # Date of the holiday (start time)
25
+ attr_accessor :occurrence_date
26
+
27
+ # Type of the holiday; possible values are: Public, Bank, School, Authorities, Optional, Observance
28
+ attr_accessor :holiday_type
29
+
30
+ # True if the holiday is celebrated in all locales in the country, false otherwise
31
+ attr_accessor :nationwaide
32
+
33
+ # Attribute mapping from ruby-style variable name to JSON key.
34
+ def self.attribute_map
35
+ {
36
+ :'english_name' => :'EnglishName',
37
+ :'local_name' => :'LocalName',
38
+ :'occurrence_date' => :'OccurrenceDate',
39
+ :'holiday_type' => :'HolidayType',
40
+ :'nationwaide' => :'Nationwaide'
41
+ }
42
+ end
43
+
44
+ # Attribute type mapping.
45
+ def self.swagger_types
46
+ {
47
+ :'english_name' => :'String',
48
+ :'local_name' => :'String',
49
+ :'occurrence_date' => :'DateTime',
50
+ :'holiday_type' => :'String',
51
+ :'nationwaide' => :'BOOLEAN'
52
+ }
53
+ end
54
+
55
+ # Initializes the object
56
+ # @param [Hash] attributes Model attributes in the form of hash
57
+ def initialize(attributes = {})
58
+ return unless attributes.is_a?(Hash)
59
+
60
+ # convert string to symbol for hash key
61
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
62
+
63
+ if attributes.has_key?(:'EnglishName')
64
+ self.english_name = attributes[:'EnglishName']
65
+ end
66
+
67
+ if attributes.has_key?(:'LocalName')
68
+ self.local_name = attributes[:'LocalName']
69
+ end
70
+
71
+ if attributes.has_key?(:'OccurrenceDate')
72
+ self.occurrence_date = attributes[:'OccurrenceDate']
73
+ end
74
+
75
+ if attributes.has_key?(:'HolidayType')
76
+ self.holiday_type = attributes[:'HolidayType']
77
+ end
78
+
79
+ if attributes.has_key?(:'Nationwaide')
80
+ self.nationwaide = attributes[:'Nationwaide']
81
+ end
82
+ end
83
+
84
+ # Show invalid properties with the reasons. Usually used together with valid?
85
+ # @return Array for valid properties with the reasons
86
+ def list_invalid_properties
87
+ invalid_properties = Array.new
88
+ invalid_properties
89
+ end
90
+
91
+ # Check to see if the all the properties in the model are valid
92
+ # @return true if the model is valid
93
+ def valid?
94
+ true
95
+ end
96
+
97
+ # Checks equality by comparing each attribute.
98
+ # @param [Object] Object to be compared
99
+ def ==(o)
100
+ return true if self.equal?(o)
101
+ self.class == o.class &&
102
+ english_name == o.english_name &&
103
+ local_name == o.local_name &&
104
+ occurrence_date == o.occurrence_date &&
105
+ holiday_type == o.holiday_type &&
106
+ nationwaide == o.nationwaide
107
+ end
108
+
109
+ # @see the `==` method
110
+ # @param [Object] Object to be compared
111
+ def eql?(o)
112
+ self == o
113
+ end
114
+
115
+ # Calculates hash code according to all attributes.
116
+ # @return [Fixnum] Hash code
117
+ def hash
118
+ [english_name, local_name, occurrence_date, holiday_type, nationwaide].hash
119
+ end
120
+
121
+ # Builds the object from hash
122
+ # @param [Hash] attributes Model attributes in the form of hash
123
+ # @return [Object] Returns the model itself
124
+ def build_from_hash(attributes)
125
+ return nil unless attributes.is_a?(Hash)
126
+ self.class.swagger_types.each_pair do |key, type|
127
+ if type =~ /\AArray<(.*)>/i
128
+ # check to ensure the input is an array given that the attribute
129
+ # is documented as an array but the input is not
130
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
131
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
132
+ end
133
+ elsif !attributes[self.class.attribute_map[key]].nil?
134
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
135
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
136
+ end
137
+
138
+ self
139
+ end
140
+
141
+ # Deserializes the data based on type
142
+ # @param string type Data type
143
+ # @param string value Value to be deserialized
144
+ # @return [Object] Deserialized data
145
+ def _deserialize(type, value)
146
+ case type.to_sym
147
+ when :DateTime
148
+ DateTime.parse(value)
149
+ when :Date
150
+ Date.parse(value)
151
+ when :String
152
+ value.to_s
153
+ when :Integer
154
+ value.to_i
155
+ when :Float
156
+ value.to_f
157
+ when :BOOLEAN
158
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
159
+ true
160
+ else
161
+ false
162
+ end
163
+ when :Object
164
+ # generic object (usually a Hash), return directly
165
+ value
166
+ when /\AArray<(?<inner_type>.+)>\z/
167
+ inner_type = Regexp.last_match[:inner_type]
168
+ value.map { |v| _deserialize(inner_type, v) }
169
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
170
+ k_type = Regexp.last_match[:k_type]
171
+ v_type = Regexp.last_match[:v_type]
172
+ {}.tap do |hash|
173
+ value.each do |k, v|
174
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
175
+ end
176
+ end
177
+ else # model
178
+ temp_model = CloudmersiveValidateApiClient.const_get(type).new
179
+ temp_model.build_from_hash(value)
180
+ end
181
+ end
182
+
183
+ # Returns the string representation of the object
184
+ # @return [String] String presentation of the object
185
+ def to_s
186
+ to_hash.to_s
187
+ end
188
+
189
+ # to_body is an alias to to_hash (backward compatibility)
190
+ # @return [Hash] Returns the object in the form of hash
191
+ def to_body
192
+ to_hash
193
+ end
194
+
195
+ # Returns the object in the form of hash
196
+ # @return [Hash] Returns the object in the form of hash
197
+ def to_hash
198
+ hash = {}
199
+ self.class.attribute_map.each_pair do |attr, param|
200
+ value = self.send(attr)
201
+ next if value.nil?
202
+ hash[param] = _to_hash(value)
203
+ end
204
+ hash
205
+ end
206
+
207
+ # Outputs non-array value in the form of hash
208
+ # For object, use to_hash. Otherwise, just return the value
209
+ # @param [Object] value Any valid value
210
+ # @return [Hash] Returns the value in the form of hash
211
+ def _to_hash(value)
212
+ if value.is_a?(Array)
213
+ value.compact.map { |v| _to_hash(v) }
214
+ elsif value.is_a?(Hash)
215
+ {}.tap do |hash|
216
+ value.each { |k, v| hash[k] = _to_hash(v) }
217
+ end
218
+ elsif value.respond_to? :to_hash
219
+ value.to_hash
220
+ else
221
+ value
222
+ end
223
+ end
224
+
225
+ end
226
+ end
@@ -0,0 +1,198 @@
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.4.14
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CloudmersiveValidateApiClient
16
+ # Result of performing a get public holidays request operation
17
+ class PublicHolidaysResponse
18
+ # True if successful, false otherwise
19
+ attr_accessor :successful
20
+
21
+ # Public holidays in the requested country and year
22
+ attr_accessor :public_holidays
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'successful' => :'Successful',
28
+ :'public_holidays' => :'PublicHolidays'
29
+ }
30
+ end
31
+
32
+ # Attribute type mapping.
33
+ def self.swagger_types
34
+ {
35
+ :'successful' => :'BOOLEAN',
36
+ :'public_holidays' => :'Array<PublicHolidayOccurrence>'
37
+ }
38
+ end
39
+
40
+ # Initializes the object
41
+ # @param [Hash] attributes Model attributes in the form of hash
42
+ def initialize(attributes = {})
43
+ return unless attributes.is_a?(Hash)
44
+
45
+ # convert string to symbol for hash key
46
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
47
+
48
+ if attributes.has_key?(:'Successful')
49
+ self.successful = attributes[:'Successful']
50
+ end
51
+
52
+ if attributes.has_key?(:'PublicHolidays')
53
+ if (value = attributes[:'PublicHolidays']).is_a?(Array)
54
+ self.public_holidays = value
55
+ end
56
+ end
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
+ 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
+ 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
+ successful == o.successful &&
78
+ public_holidays == o.public_holidays
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
+ [successful, public_holidays].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 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
+ end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module CloudmersiveValidateApiClient
14
- VERSION = '2.1.1'
14
+ VERSION = '2.1.2'
15
15
  end
@@ -115,6 +115,18 @@ describe 'AddressApi' do
115
115
  end
116
116
  end
117
117
 
118
+ # unit tests for address_normalize_address
119
+ # Normalize a street address
120
+ # Normalizes an input structured street address is valid or invalid. If the address is valid, also returns the latitude and longitude of the address. Supports all major international addresses.
121
+ # @param input Input parse request
122
+ # @param [Hash] opts the optional parameters
123
+ # @return [NormalizeAddressResponse]
124
+ describe 'address_normalize_address test' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
+ end
128
+ end
129
+
118
130
  # unit tests for address_parse_string
119
131
  # Parse an unstructured input text string into an international, formatted address
120
132
  # Uses machine learning and Natural Language Processing (NLP) to handle a wide array of cases, including non-standard and unstructured address strings across a wide array of countries and address formatting norms.