aylien_news_api 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +67 -0
  4. data/LICENSE +13 -0
  5. data/README.md +133 -0
  6. data/Rakefile +8 -0
  7. data/aylien_news_api.gemspec +33 -0
  8. data/docs/Author.md +10 -0
  9. data/docs/Autocomplete.md +9 -0
  10. data/docs/Autocompletes.md +8 -0
  11. data/docs/Category.md +13 -0
  12. data/docs/CategoryLinks.md +9 -0
  13. data/docs/Coverages.md +12 -0
  14. data/docs/DefaultApi.md +829 -0
  15. data/docs/Entities.md +9 -0
  16. data/docs/Entity.md +12 -0
  17. data/docs/EntityLinks.md +8 -0
  18. data/docs/Error.md +13 -0
  19. data/docs/ErrorLinks.md +8 -0
  20. data/docs/Errors.md +8 -0
  21. data/docs/HistogramInterval.md +9 -0
  22. data/docs/Histograms.md +12 -0
  23. data/docs/Location.md +10 -0
  24. data/docs/Media.md +9 -0
  25. data/docs/RelatedStories.md +11 -0
  26. data/docs/Scope.md +11 -0
  27. data/docs/Sentiment.md +9 -0
  28. data/docs/Sentiments.md +9 -0
  29. data/docs/ShareCount.md +9 -0
  30. data/docs/ShareCounts.md +11 -0
  31. data/docs/Source.md +13 -0
  32. data/docs/Stories.md +10 -0
  33. data/docs/Story.md +27 -0
  34. data/docs/StoryCluster.md +12 -0
  35. data/docs/StoryLinks.md +10 -0
  36. data/docs/Summary.md +8 -0
  37. data/docs/TimeSeries.md +9 -0
  38. data/docs/TimeSeriesList.md +11 -0
  39. data/docs/Trend.md +9 -0
  40. data/docs/Trends.md +9 -0
  41. data/lib/aylien_news_api.rb +74 -0
  42. data/lib/aylien_news_api/api/default_api.rb +1171 -0
  43. data/lib/aylien_news_api/api_client.rb +365 -0
  44. data/lib/aylien_news_api/api_error.rb +38 -0
  45. data/lib/aylien_news_api/configuration.rb +191 -0
  46. data/lib/aylien_news_api/models/author.rb +192 -0
  47. data/lib/aylien_news_api/models/autocomplete.rb +183 -0
  48. data/lib/aylien_news_api/models/autocompletes.rb +176 -0
  49. data/lib/aylien_news_api/models/category.rb +229 -0
  50. data/lib/aylien_news_api/models/category_links.rb +183 -0
  51. data/lib/aylien_news_api/models/coverages.rb +212 -0
  52. data/lib/aylien_news_api/models/entities.rb +187 -0
  53. data/lib/aylien_news_api/models/entity.rb +214 -0
  54. data/lib/aylien_news_api/models/entity_links.rb +174 -0
  55. data/lib/aylien_news_api/models/error.rb +213 -0
  56. data/lib/aylien_news_api/models/error_links.rb +173 -0
  57. data/lib/aylien_news_api/models/errors.rb +175 -0
  58. data/lib/aylien_news_api/models/histogram_interval.rb +183 -0
  59. data/lib/aylien_news_api/models/histograms.rb +211 -0
  60. data/lib/aylien_news_api/models/location.rb +192 -0
  61. data/lib/aylien_news_api/models/media.rb +193 -0
  62. data/lib/aylien_news_api/models/related_stories.rb +203 -0
  63. data/lib/aylien_news_api/models/scope.rb +211 -0
  64. data/lib/aylien_news_api/models/sentiment.rb +193 -0
  65. data/lib/aylien_news_api/models/sentiments.rb +183 -0
  66. data/lib/aylien_news_api/models/share_count.rb +183 -0
  67. data/lib/aylien_news_api/models/share_counts.rb +209 -0
  68. data/lib/aylien_news_api/models/source.rb +223 -0
  69. data/lib/aylien_news_api/models/stories.rb +196 -0
  70. data/lib/aylien_news_api/models/story.rb +353 -0
  71. data/lib/aylien_news_api/models/story_cluster.rb +214 -0
  72. data/lib/aylien_news_api/models/story_links.rb +192 -0
  73. data/lib/aylien_news_api/models/summary.rb +176 -0
  74. data/lib/aylien_news_api/models/time_series.rb +183 -0
  75. data/lib/aylien_news_api/models/time_series_list.rb +203 -0
  76. data/lib/aylien_news_api/models/trend.rb +183 -0
  77. data/lib/aylien_news_api/models/trends.rb +185 -0
  78. data/lib/aylien_news_api/version.rb +17 -0
  79. data/spec/api/default_api_spec.rb +357 -0
  80. data/spec/models/author_spec.rb +66 -0
  81. data/spec/models/autocomplete_spec.rb +56 -0
  82. data/spec/models/autocompletes_spec.rb +46 -0
  83. data/spec/models/category_links_spec.rb +56 -0
  84. data/spec/models/category_spec.rb +96 -0
  85. data/spec/models/coverages_spec.rb +86 -0
  86. data/spec/models/entities_spec.rb +56 -0
  87. data/spec/models/entity_links_spec.rb +46 -0
  88. data/spec/models/entity_spec.rb +86 -0
  89. data/spec/models/error_links_spec.rb +46 -0
  90. data/spec/models/error_spec.rb +96 -0
  91. data/spec/models/errors_spec.rb +46 -0
  92. data/spec/models/histogram_interval_spec.rb +56 -0
  93. data/spec/models/histograms_spec.rb +86 -0
  94. data/spec/models/location_spec.rb +66 -0
  95. data/spec/models/media_spec.rb +56 -0
  96. data/spec/models/related_stories_spec.rb +76 -0
  97. data/spec/models/scope_spec.rb +76 -0
  98. data/spec/models/sentiment_spec.rb +56 -0
  99. data/spec/models/sentiments_spec.rb +56 -0
  100. data/spec/models/share_count_spec.rb +56 -0
  101. data/spec/models/share_counts_spec.rb +76 -0
  102. data/spec/models/source_spec.rb +96 -0
  103. data/spec/models/stories_spec.rb +66 -0
  104. data/spec/models/story_cluster_spec.rb +86 -0
  105. data/spec/models/story_links_spec.rb +66 -0
  106. data/spec/models/story_spec.rb +236 -0
  107. data/spec/models/summary_spec.rb +46 -0
  108. data/spec/models/time_series_list_spec.rb +76 -0
  109. data/spec/models/time_series_spec.rb +56 -0
  110. data/spec/models/trend_spec.rb +56 -0
  111. data/spec/models/trends_spec.rb +56 -0
  112. metadata +391 -0
@@ -0,0 +1,353 @@
1
+ # Copyright 2016 Aylien, Inc. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'date'
16
+
17
+ module AylienNewsApi
18
+ class Story
19
+ # ID of the story which is unique identification
20
+ attr_accessor :id
21
+
22
+ # Title of the story
23
+ attr_accessor :title
24
+
25
+ # Body of the story
26
+ attr_accessor :body
27
+
28
+ # The suggested story summary
29
+ attr_accessor :summary
30
+
31
+ # The story source
32
+ attr_accessor :source
33
+
34
+ # The story author
35
+ attr_accessor :author
36
+
37
+ # Extracted entities from the story title or body
38
+ attr_accessor :entities
39
+
40
+ # Extracted keywords mentioned in the story title or body
41
+ attr_accessor :keywords
42
+
43
+ # An array of suggested Story hashtags
44
+ attr_accessor :hashtags
45
+
46
+ # Characters count of the story body
47
+ attr_accessor :characters_count
48
+
49
+ # Words count of the story body
50
+ attr_accessor :words_count
51
+
52
+ # Sentences count of the story body
53
+ attr_accessor :sentences_count
54
+
55
+ # Paragraphs count of the story body
56
+ attr_accessor :paragraphs_count
57
+
58
+ # Suggested categories for the story
59
+ attr_accessor :categories
60
+
61
+ # Social shares count for the story
62
+ attr_accessor :social_shares_count
63
+
64
+ # An array of extracted media such as images and videos
65
+ attr_accessor :media
66
+
67
+ # Suggested sentiments for the story title or body
68
+ attr_accessor :sentiment
69
+
70
+ # Language of the story
71
+ attr_accessor :language
72
+
73
+ # Published date of the story
74
+ attr_accessor :published_at
75
+
76
+ # Links which is related to the story
77
+ attr_accessor :links
78
+
79
+ # Attribute mapping from ruby-style variable name to JSON key.
80
+ def self.attribute_map
81
+ {
82
+ :'id' => :'id',
83
+ :'title' => :'title',
84
+ :'body' => :'body',
85
+ :'summary' => :'summary',
86
+ :'source' => :'source',
87
+ :'author' => :'author',
88
+ :'entities' => :'entities',
89
+ :'keywords' => :'keywords',
90
+ :'hashtags' => :'hashtags',
91
+ :'characters_count' => :'characters_count',
92
+ :'words_count' => :'words_count',
93
+ :'sentences_count' => :'sentences_count',
94
+ :'paragraphs_count' => :'paragraphs_count',
95
+ :'categories' => :'categories',
96
+ :'social_shares_count' => :'social_shares_count',
97
+ :'media' => :'media',
98
+ :'sentiment' => :'sentiment',
99
+ :'language' => :'language',
100
+ :'published_at' => :'published_at',
101
+ :'links' => :'links'
102
+ }
103
+ end
104
+
105
+ # Attribute type mapping.
106
+ def self.api_types
107
+ {
108
+ :'id' => :'Integer',
109
+ :'title' => :'String',
110
+ :'body' => :'String',
111
+ :'summary' => :'Summary',
112
+ :'source' => :'Source',
113
+ :'author' => :'Author',
114
+ :'entities' => :'Entities',
115
+ :'keywords' => :'Array<String>',
116
+ :'hashtags' => :'Array<String>',
117
+ :'characters_count' => :'Integer',
118
+ :'words_count' => :'Integer',
119
+ :'sentences_count' => :'Integer',
120
+ :'paragraphs_count' => :'Integer',
121
+ :'categories' => :'Array<Category>',
122
+ :'social_shares_count' => :'ShareCounts',
123
+ :'media' => :'Array<Media>',
124
+ :'sentiment' => :'Sentiments',
125
+ :'language' => :'String',
126
+ :'published_at' => :'DateTime',
127
+ :'links' => :'StoryLinks'
128
+ }
129
+ end
130
+
131
+ # Initializes the object
132
+ # @param [Hash] attributes Model attributes in the form of hash
133
+ def initialize(attributes = {})
134
+ return unless attributes.is_a?(Hash)
135
+
136
+ # convert string to symbol for hash key
137
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
138
+
139
+ if attributes[:'id']
140
+ self.id = attributes[:'id']
141
+ end
142
+ if attributes[:'title']
143
+ self.title = attributes[:'title']
144
+ end
145
+ if attributes[:'body']
146
+ self.body = attributes[:'body']
147
+ end
148
+ if attributes[:'summary']
149
+ self.summary = attributes[:'summary']
150
+ end
151
+ if attributes[:'source']
152
+ self.source = attributes[:'source']
153
+ end
154
+ if attributes[:'author']
155
+ self.author = attributes[:'author']
156
+ end
157
+ if attributes[:'entities']
158
+ self.entities = attributes[:'entities']
159
+ end
160
+ if attributes[:'keywords']
161
+ if (value = attributes[:'keywords']).is_a?(Array)
162
+ self.keywords = value
163
+ end
164
+ end
165
+ if attributes[:'hashtags']
166
+ if (value = attributes[:'hashtags']).is_a?(Array)
167
+ self.hashtags = value
168
+ end
169
+ end
170
+ if attributes[:'characters_count']
171
+ self.characters_count = attributes[:'characters_count']
172
+ end
173
+ if attributes[:'words_count']
174
+ self.words_count = attributes[:'words_count']
175
+ end
176
+ if attributes[:'sentences_count']
177
+ self.sentences_count = attributes[:'sentences_count']
178
+ end
179
+ if attributes[:'paragraphs_count']
180
+ self.paragraphs_count = attributes[:'paragraphs_count']
181
+ end
182
+ if attributes[:'categories']
183
+ if (value = attributes[:'categories']).is_a?(Array)
184
+ self.categories = value
185
+ end
186
+ end
187
+ if attributes[:'social_shares_count']
188
+ self.social_shares_count = attributes[:'social_shares_count']
189
+ end
190
+ if attributes[:'media']
191
+ if (value = attributes[:'media']).is_a?(Array)
192
+ self.media = value
193
+ end
194
+ end
195
+ if attributes[:'sentiment']
196
+ self.sentiment = attributes[:'sentiment']
197
+ end
198
+ if attributes[:'language']
199
+ self.language = attributes[:'language']
200
+ end
201
+ if attributes[:'published_at']
202
+ self.published_at = attributes[:'published_at']
203
+ end
204
+ if attributes[:'links']
205
+ self.links = attributes[:'links']
206
+ end
207
+ end
208
+
209
+ # Checks equality by comparing each attribute.
210
+ # @param [Object] Object to be compared
211
+ def ==(o)
212
+ return true if self.equal?(o)
213
+ self.class == o.class &&
214
+ id == o.id &&
215
+ title == o.title &&
216
+ body == o.body &&
217
+ summary == o.summary &&
218
+ source == o.source &&
219
+ author == o.author &&
220
+ entities == o.entities &&
221
+ keywords == o.keywords &&
222
+ hashtags == o.hashtags &&
223
+ characters_count == o.characters_count &&
224
+ words_count == o.words_count &&
225
+ sentences_count == o.sentences_count &&
226
+ paragraphs_count == o.paragraphs_count &&
227
+ categories == o.categories &&
228
+ social_shares_count == o.social_shares_count &&
229
+ media == o.media &&
230
+ sentiment == o.sentiment &&
231
+ language == o.language &&
232
+ published_at == o.published_at &&
233
+ links == o.links
234
+ end
235
+
236
+ # @see the `==` method
237
+ # @param [Object] Object to be compared
238
+ def eql?(o)
239
+ self == o
240
+ end
241
+
242
+ # Calculates hash code according to all attributes.
243
+ # @return [Fixnum] Hash code
244
+ def hash
245
+ [id, title, body, summary, source, author, entities, keywords, hashtags, characters_count, words_count, sentences_count, paragraphs_count, categories, social_shares_count, media, sentiment, language, published_at, links].hash
246
+ end
247
+
248
+ # Builds the object from hash
249
+ # @param [Hash] attributes Model attributes in the form of hash
250
+ # @return [Object] Returns the model itself
251
+ def build_from_hash(attributes)
252
+ return nil unless attributes.is_a?(Hash)
253
+ self.class.api_types.each_pair do |key, type|
254
+ if type =~ /^Array<(.*)>/i
255
+ # check to ensure the input is an array given that the the attribute
256
+ # is documented as an array but the input is not
257
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
258
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
259
+ end
260
+ elsif !attributes[self.class.attribute_map[key]].nil?
261
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
262
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
263
+ end
264
+
265
+ self
266
+ end
267
+
268
+ # Deserializes the data based on type
269
+ # @param string type Data type
270
+ # @param string value Value to be deserialized
271
+ # @return [Object] Deserialized data
272
+ def _deserialize(type, value)
273
+ case type.to_sym
274
+ when :DateTime
275
+ DateTime.parse(value)
276
+ when :Date
277
+ Date.parse(value)
278
+ when :String
279
+ value.to_s
280
+ when :Integer
281
+ value.to_i
282
+ when :Float
283
+ value.to_f
284
+ when :BOOLEAN
285
+ if value.to_s =~ /^(true|t|yes|y|1)$/i
286
+ true
287
+ else
288
+ false
289
+ end
290
+ when :Object
291
+ # generic object (usually a Hash), return directly
292
+ value
293
+ when /\AArray<(?<inner_type>.+)>\z/
294
+ inner_type = Regexp.last_match[:inner_type]
295
+ value.map { |v| _deserialize(inner_type, v) }
296
+ when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
297
+ k_type = Regexp.last_match[:k_type]
298
+ v_type = Regexp.last_match[:v_type]
299
+ {}.tap do |hash|
300
+ value.each do |k, v|
301
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
302
+ end
303
+ end
304
+ else # model
305
+ temp_model = AylienNewsApi.const_get(type).new
306
+ temp_model.build_from_hash(value)
307
+ end
308
+ end
309
+
310
+ # Returns the string representation of the object
311
+ # @return [String] String presentation of the object
312
+ def to_s
313
+ to_hash.to_s
314
+ end
315
+
316
+ # to_body is an alias to to_hash (backward compatibility)
317
+ # @return [Hash] Returns the object in the form of hash
318
+ def to_body
319
+ to_hash
320
+ end
321
+
322
+ # Returns the object in the form of hash
323
+ # @return [Hash] Returns the object in the form of hash
324
+ def to_hash
325
+ hash = {}
326
+ self.class.attribute_map.each_pair do |attr, param|
327
+ value = self.send(attr)
328
+ next if value.nil?
329
+ hash[param] = _to_hash(value)
330
+ end
331
+ hash
332
+ end
333
+
334
+ # Outputs non-array value in the form of hash
335
+ # For object, use to_hash. Otherwise, just return the value
336
+ # @param [Object] value Any valid value
337
+ # @return [Hash] Returns the value in the form of hash
338
+ def _to_hash(value)
339
+ if value.is_a?(Array)
340
+ value.compact.map{ |v| _to_hash(v) }
341
+ elsif value.is_a?(Hash)
342
+ {}.tap do |hash|
343
+ value.each { |k, v| hash[k] = _to_hash(v) }
344
+ end
345
+ elsif value.respond_to? :to_hash
346
+ value.to_hash
347
+ else
348
+ value
349
+ end
350
+ end
351
+
352
+ end
353
+ end
@@ -0,0 +1,214 @@
1
+ # Copyright 2016 Aylien, Inc. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'date'
16
+
17
+ module AylienNewsApi
18
+ class StoryCluster
19
+ # A unique identification for the cluster
20
+ attr_accessor :id
21
+
22
+ # Suggested labels for the cluster
23
+ attr_accessor :phrases
24
+
25
+ # Size of the cluster
26
+ attr_accessor :size
27
+
28
+ # Story ids which are in the cluster
29
+ attr_accessor :stories
30
+
31
+ # The cluster score
32
+ attr_accessor :score
33
+
34
+ # Attribute mapping from ruby-style variable name to JSON key.
35
+ def self.attribute_map
36
+ {
37
+ :'id' => :'id',
38
+ :'phrases' => :'phrases',
39
+ :'size' => :'size',
40
+ :'stories' => :'stories',
41
+ :'score' => :'score'
42
+ }
43
+ end
44
+
45
+ # Attribute type mapping.
46
+ def self.api_types
47
+ {
48
+ :'id' => :'Integer',
49
+ :'phrases' => :'Array<String>',
50
+ :'size' => :'Integer',
51
+ :'stories' => :'Array<Integer>',
52
+ :'score' => :'Float'
53
+ }
54
+ end
55
+
56
+ # Initializes the object
57
+ # @param [Hash] attributes Model attributes in the form of hash
58
+ def initialize(attributes = {})
59
+ return unless attributes.is_a?(Hash)
60
+
61
+ # convert string to symbol for hash key
62
+ attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
63
+
64
+ if attributes[:'id']
65
+ self.id = attributes[:'id']
66
+ end
67
+ if attributes[:'phrases']
68
+ if (value = attributes[:'phrases']).is_a?(Array)
69
+ self.phrases = value
70
+ end
71
+ end
72
+ if attributes[:'size']
73
+ self.size = attributes[:'size']
74
+ end
75
+ if attributes[:'stories']
76
+ if (value = attributes[:'stories']).is_a?(Array)
77
+ self.stories = value
78
+ end
79
+ end
80
+ if attributes[:'score']
81
+ self.score = attributes[:'score']
82
+ end
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ id == o.id &&
91
+ phrases == o.phrases &&
92
+ size == o.size &&
93
+ stories == o.stories &&
94
+ score == o.score
95
+ end
96
+
97
+ # @see the `==` method
98
+ # @param [Object] Object to be compared
99
+ def eql?(o)
100
+ self == o
101
+ end
102
+
103
+ # Calculates hash code according to all attributes.
104
+ # @return [Fixnum] Hash code
105
+ def hash
106
+ [id, phrases, size, stories, score].hash
107
+ end
108
+
109
+ # Builds the object from hash
110
+ # @param [Hash] attributes Model attributes in the form of hash
111
+ # @return [Object] Returns the model itself
112
+ def build_from_hash(attributes)
113
+ return nil unless attributes.is_a?(Hash)
114
+ self.class.api_types.each_pair do |key, type|
115
+ if type =~ /^Array<(.*)>/i
116
+ # check to ensure the input is an array given that the the attribute
117
+ # is documented as an array but the input is not
118
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
119
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
120
+ end
121
+ elsif !attributes[self.class.attribute_map[key]].nil?
122
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
123
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
124
+ end
125
+
126
+ self
127
+ end
128
+
129
+ # Deserializes the data based on type
130
+ # @param string type Data type
131
+ # @param string value Value to be deserialized
132
+ # @return [Object] Deserialized data
133
+ def _deserialize(type, value)
134
+ case type.to_sym
135
+ when :DateTime
136
+ DateTime.parse(value)
137
+ when :Date
138
+ Date.parse(value)
139
+ when :String
140
+ value.to_s
141
+ when :Integer
142
+ value.to_i
143
+ when :Float
144
+ value.to_f
145
+ when :BOOLEAN
146
+ if value.to_s =~ /^(true|t|yes|y|1)$/i
147
+ true
148
+ else
149
+ false
150
+ end
151
+ when :Object
152
+ # generic object (usually a Hash), return directly
153
+ value
154
+ when /\AArray<(?<inner_type>.+)>\z/
155
+ inner_type = Regexp.last_match[:inner_type]
156
+ value.map { |v| _deserialize(inner_type, v) }
157
+ when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
158
+ k_type = Regexp.last_match[:k_type]
159
+ v_type = Regexp.last_match[:v_type]
160
+ {}.tap do |hash|
161
+ value.each do |k, v|
162
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
163
+ end
164
+ end
165
+ else # model
166
+ temp_model = AylienNewsApi.const_get(type).new
167
+ temp_model.build_from_hash(value)
168
+ end
169
+ end
170
+
171
+ # Returns the string representation of the object
172
+ # @return [String] String presentation of the object
173
+ def to_s
174
+ to_hash.to_s
175
+ end
176
+
177
+ # to_body is an alias to to_hash (backward compatibility)
178
+ # @return [Hash] Returns the object in the form of hash
179
+ def to_body
180
+ to_hash
181
+ end
182
+
183
+ # Returns the object in the form of hash
184
+ # @return [Hash] Returns the object in the form of hash
185
+ def to_hash
186
+ hash = {}
187
+ self.class.attribute_map.each_pair do |attr, param|
188
+ value = self.send(attr)
189
+ next if value.nil?
190
+ hash[param] = _to_hash(value)
191
+ end
192
+ hash
193
+ end
194
+
195
+ # Outputs non-array value in the form of hash
196
+ # For object, use to_hash. Otherwise, just return the value
197
+ # @param [Object] value Any valid value
198
+ # @return [Hash] Returns the value in the form of hash
199
+ def _to_hash(value)
200
+ if value.is_a?(Array)
201
+ value.compact.map{ |v| _to_hash(v) }
202
+ elsif value.is_a?(Hash)
203
+ {}.tap do |hash|
204
+ value.each { |k, v| hash[k] = _to_hash(v) }
205
+ end
206
+ elsif value.respond_to? :to_hash
207
+ value.to_hash
208
+ else
209
+ value
210
+ end
211
+ end
212
+
213
+ end
214
+ end