cloudmersive-nlp-api-client 2.0.7 → 3.0.3
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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +16 -8
- data/cloudmersive-nlp-api-client.gemspec +3 -3
- data/docs/AnalyticsApi.md +113 -3
- data/docs/ExtractEntitiesApi.md +1 -1
- data/docs/HateSpeechAnalysisRequest.md +8 -0
- data/docs/HateSpeechAnalysisResponse.md +10 -0
- data/docs/LanguageDetectionApi.md +1 -1
- data/docs/LanguageTranslationApi.md +114 -4
- data/docs/ParseApi.md +1 -1
- data/docs/PosTaggerApi.md +6 -6
- data/docs/RephraseApi.md +1 -1
- data/docs/SegmentationApi.md +2 -2
- data/docs/SimilarityAnalysisRequest.md +9 -0
- data/docs/SimilarityAnalysisResponse.md +10 -0
- data/docs/SpellcheckApi.md +2 -2
- data/lib/cloudmersive-nlp-api-client.rb +5 -1
- data/lib/cloudmersive-nlp-api-client/api/analytics_api.rb +120 -15
- data/lib/cloudmersive-nlp-api-client/api/extract_entities_api.rb +6 -7
- data/lib/cloudmersive-nlp-api-client/api/language_detection_api.rb +6 -7
- data/lib/cloudmersive-nlp-api-client/api/language_translation_api.rb +124 -20
- data/lib/cloudmersive-nlp-api-client/api/parse_api.rb +6 -7
- data/lib/cloudmersive-nlp-api-client/api/pos_tagger_api.rb +26 -32
- data/lib/cloudmersive-nlp-api-client/api/rephrase_api.rb +6 -7
- data/lib/cloudmersive-nlp-api-client/api/segmentation_api.rb +10 -12
- data/lib/cloudmersive-nlp-api-client/api/spellcheck_api.rb +10 -12
- data/lib/cloudmersive-nlp-api-client/api_client.rb +11 -9
- data/lib/cloudmersive-nlp-api-client/api_error.rb +1 -1
- data/lib/cloudmersive-nlp-api-client/configuration.rb +2 -2
- data/lib/cloudmersive-nlp-api-client/models/check_sentence_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/check_sentence_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/check_word_request.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/models/check_word_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/correct_word_in_sentence.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/entity.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/models/extract_entities_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/extract_entities_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/get_words_request.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/models/get_words_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/hate_speech_analysis_request.rb +186 -0
- data/lib/cloudmersive-nlp-api-client/models/hate_speech_analysis_response.rb +206 -0
- data/lib/cloudmersive-nlp-api-client/models/language_detection_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/language_detection_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/language_translation_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/language_translation_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/parse_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/parse_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/pos_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/pos_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/pos_sentence.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/pos_tagged_word.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/profanity_analysis_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/profanity_analysis_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/rephrase_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/rephrase_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/rephrased_sentence.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/rephrased_sentence_option.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/sentence_segmentation_request.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/models/sentence_segmentation_response.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/models/sentiment_analysis_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/sentiment_analysis_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/similarity_analysis_request.rb +196 -0
- data/lib/cloudmersive-nlp-api-client/models/similarity_analysis_response.rb +206 -0
- data/lib/cloudmersive-nlp-api-client/models/subjectivity_analysis_request.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/subjectivity_analysis_response.rb +7 -10
- data/lib/cloudmersive-nlp-api-client/models/word_position.rb +7 -11
- data/lib/cloudmersive-nlp-api-client/version.rb +2 -2
- data/spec/api/analytics_api_spec.rb +28 -4
- data/spec/api/extract_entities_api_spec.rb +2 -2
- data/spec/api/language_detection_api_spec.rb +2 -2
- data/spec/api/language_translation_api_spec.rb +29 -5
- data/spec/api/parse_api_spec.rb +2 -2
- data/spec/api/pos_tagger_api_spec.rb +7 -7
- data/spec/api/rephrase_api_spec.rb +2 -2
- data/spec/api/segmentation_api_spec.rb +3 -3
- data/spec/api/spellcheck_api_spec.rb +3 -3
- data/spec/api_client_spec.rb +52 -35
- data/spec/configuration_spec.rb +9 -9
- data/spec/models/check_sentence_request_spec.rb +2 -3
- data/spec/models/check_sentence_response_spec.rb +3 -4
- data/spec/models/check_word_request_spec.rb +2 -3
- data/spec/models/check_word_response_spec.rb +3 -4
- data/spec/models/correct_word_in_sentence_spec.rb +4 -5
- data/spec/models/entity_spec.rb +3 -4
- data/spec/models/extract_entities_request_spec.rb +2 -3
- data/spec/models/extract_entities_response_spec.rb +3 -4
- data/spec/models/get_words_request_spec.rb +2 -3
- data/spec/models/get_words_response_spec.rb +2 -3
- data/spec/models/hate_speech_analysis_request_spec.rb +41 -0
- data/spec/models/hate_speech_analysis_response_spec.rb +53 -0
- data/spec/models/language_detection_request_spec.rb +2 -3
- data/spec/models/language_detection_response_spec.rb +4 -5
- data/spec/models/language_translation_request_spec.rb +2 -3
- data/spec/models/language_translation_response_spec.rb +4 -5
- data/spec/models/parse_request_spec.rb +2 -3
- data/spec/models/parse_response_spec.rb +2 -3
- data/spec/models/pos_request_spec.rb +2 -3
- data/spec/models/pos_response_spec.rb +2 -3
- data/spec/models/pos_sentence_spec.rb +2 -3
- data/spec/models/pos_tagged_word_spec.rb +3 -4
- data/spec/models/profanity_analysis_request_spec.rb +2 -3
- data/spec/models/profanity_analysis_response_spec.rb +4 -5
- data/spec/models/rephrase_request_spec.rb +3 -4
- data/spec/models/rephrase_response_spec.rb +4 -5
- data/spec/models/rephrased_sentence_option_spec.rb +3 -4
- data/spec/models/rephrased_sentence_spec.rb +4 -5
- data/spec/models/sentence_segmentation_request_spec.rb +2 -3
- data/spec/models/sentence_segmentation_response_spec.rb +4 -5
- data/spec/models/sentiment_analysis_request_spec.rb +2 -3
- data/spec/models/sentiment_analysis_response_spec.rb +5 -6
- data/spec/models/similarity_analysis_request_spec.rb +47 -0
- data/spec/models/similarity_analysis_response_spec.rb +53 -0
- data/spec/models/subjectivity_analysis_request_spec.rb +2 -3
- data/spec/models/subjectivity_analysis_response_spec.rb +4 -5
- data/spec/models/word_position_spec.rb +5 -6
- data/spec/spec_helper.rb +1 -1
- metadata +14 -2
|
@@ -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: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -24,7 +24,6 @@ module CloudmersiveNlpApiClient
|
|
|
24
24
|
# Rephrasing text options, candidates of the original input sentence, in order - with best candidate first
|
|
25
25
|
attr_accessor :rephrasings
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
29
28
|
def self.attribute_map
|
|
30
29
|
{
|
|
@@ -49,7 +48,7 @@ module CloudmersiveNlpApiClient
|
|
|
49
48
|
return unless attributes.is_a?(Hash)
|
|
50
49
|
|
|
51
50
|
# convert string to symbol for hash key
|
|
52
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
51
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
53
52
|
|
|
54
53
|
if attributes.has_key?(:'SentenceIndex')
|
|
55
54
|
self.sentence_index = attributes[:'SentenceIndex']
|
|
@@ -64,20 +63,19 @@ module CloudmersiveNlpApiClient
|
|
|
64
63
|
self.rephrasings = value
|
|
65
64
|
end
|
|
66
65
|
end
|
|
67
|
-
|
|
68
66
|
end
|
|
69
67
|
|
|
70
68
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
71
69
|
# @return Array for valid properties with the reasons
|
|
72
70
|
def list_invalid_properties
|
|
73
71
|
invalid_properties = Array.new
|
|
74
|
-
|
|
72
|
+
invalid_properties
|
|
75
73
|
end
|
|
76
74
|
|
|
77
75
|
# Check to see if the all the properties in the model are valid
|
|
78
76
|
# @return true if the model is valid
|
|
79
77
|
def valid?
|
|
80
|
-
|
|
78
|
+
true
|
|
81
79
|
end
|
|
82
80
|
|
|
83
81
|
# Checks equality by comparing each attribute.
|
|
@@ -109,10 +107,10 @@ module CloudmersiveNlpApiClient
|
|
|
109
107
|
return nil unless attributes.is_a?(Hash)
|
|
110
108
|
self.class.swagger_types.each_pair do |key, type|
|
|
111
109
|
if type =~ /\AArray<(.*)>/i
|
|
112
|
-
# check to ensure the input is an array given that the
|
|
110
|
+
# check to ensure the input is an array given that the attribute
|
|
113
111
|
# is documented as an array but the input is not
|
|
114
112
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
115
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
113
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
116
114
|
end
|
|
117
115
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
118
116
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -194,7 +192,7 @@ module CloudmersiveNlpApiClient
|
|
|
194
192
|
# @return [Hash] Returns the value in the form of hash
|
|
195
193
|
def _to_hash(value)
|
|
196
194
|
if value.is_a?(Array)
|
|
197
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
195
|
+
value.compact.map { |v| _to_hash(v) }
|
|
198
196
|
elsif value.is_a?(Hash)
|
|
199
197
|
{}.tap do |hash|
|
|
200
198
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -207,5 +205,4 @@ module CloudmersiveNlpApiClient
|
|
|
207
205
|
end
|
|
208
206
|
|
|
209
207
|
end
|
|
210
|
-
|
|
211
208
|
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: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -21,7 +21,6 @@ module CloudmersiveNlpApiClient
|
|
|
21
21
|
# One sentence of output rephrased text of original input sentence
|
|
22
22
|
attr_accessor :rephrased_sentence_text
|
|
23
23
|
|
|
24
|
-
|
|
25
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
26
25
|
def self.attribute_map
|
|
27
26
|
{
|
|
@@ -44,7 +43,7 @@ module CloudmersiveNlpApiClient
|
|
|
44
43
|
return unless attributes.is_a?(Hash)
|
|
45
44
|
|
|
46
45
|
# convert string to symbol for hash key
|
|
47
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
46
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
48
47
|
|
|
49
48
|
if attributes.has_key?(:'RephrasedOptionIndex')
|
|
50
49
|
self.rephrased_option_index = attributes[:'RephrasedOptionIndex']
|
|
@@ -53,20 +52,19 @@ module CloudmersiveNlpApiClient
|
|
|
53
52
|
if attributes.has_key?(:'RephrasedSentenceText')
|
|
54
53
|
self.rephrased_sentence_text = attributes[:'RephrasedSentenceText']
|
|
55
54
|
end
|
|
56
|
-
|
|
57
55
|
end
|
|
58
56
|
|
|
59
57
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
60
58
|
# @return Array for valid properties with the reasons
|
|
61
59
|
def list_invalid_properties
|
|
62
60
|
invalid_properties = Array.new
|
|
63
|
-
|
|
61
|
+
invalid_properties
|
|
64
62
|
end
|
|
65
63
|
|
|
66
64
|
# Check to see if the all the properties in the model are valid
|
|
67
65
|
# @return true if the model is valid
|
|
68
66
|
def valid?
|
|
69
|
-
|
|
67
|
+
true
|
|
70
68
|
end
|
|
71
69
|
|
|
72
70
|
# Checks equality by comparing each attribute.
|
|
@@ -97,10 +95,10 @@ module CloudmersiveNlpApiClient
|
|
|
97
95
|
return nil unless attributes.is_a?(Hash)
|
|
98
96
|
self.class.swagger_types.each_pair do |key, type|
|
|
99
97
|
if type =~ /\AArray<(.*)>/i
|
|
100
|
-
# check to ensure the input is an array given that the
|
|
98
|
+
# check to ensure the input is an array given that the attribute
|
|
101
99
|
# is documented as an array but the input is not
|
|
102
100
|
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) }
|
|
101
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
104
102
|
end
|
|
105
103
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
106
104
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -182,7 +180,7 @@ module CloudmersiveNlpApiClient
|
|
|
182
180
|
# @return [Hash] Returns the value in the form of hash
|
|
183
181
|
def _to_hash(value)
|
|
184
182
|
if value.is_a?(Array)
|
|
185
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
183
|
+
value.compact.map { |v| _to_hash(v) }
|
|
186
184
|
elsif value.is_a?(Hash)
|
|
187
185
|
{}.tap do |hash|
|
|
188
186
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -195,5 +193,4 @@ module CloudmersiveNlpApiClient
|
|
|
195
193
|
end
|
|
196
194
|
|
|
197
195
|
end
|
|
198
|
-
|
|
199
196
|
end
|
|
@@ -6,18 +6,16 @@
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module CloudmersiveNlpApiClient
|
|
16
|
-
|
|
17
16
|
class SentenceSegmentationRequest
|
|
18
17
|
attr_accessor :input_string
|
|
19
18
|
|
|
20
|
-
|
|
21
19
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
22
20
|
def self.attribute_map
|
|
23
21
|
{
|
|
@@ -38,25 +36,24 @@ module CloudmersiveNlpApiClient
|
|
|
38
36
|
return unless attributes.is_a?(Hash)
|
|
39
37
|
|
|
40
38
|
# convert string to symbol for hash key
|
|
41
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
39
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
42
40
|
|
|
43
41
|
if attributes.has_key?(:'InputString')
|
|
44
42
|
self.input_string = attributes[:'InputString']
|
|
45
43
|
end
|
|
46
|
-
|
|
47
44
|
end
|
|
48
45
|
|
|
49
46
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
50
47
|
# @return Array for valid properties with the reasons
|
|
51
48
|
def list_invalid_properties
|
|
52
49
|
invalid_properties = Array.new
|
|
53
|
-
|
|
50
|
+
invalid_properties
|
|
54
51
|
end
|
|
55
52
|
|
|
56
53
|
# Check to see if the all the properties in the model are valid
|
|
57
54
|
# @return true if the model is valid
|
|
58
55
|
def valid?
|
|
59
|
-
|
|
56
|
+
true
|
|
60
57
|
end
|
|
61
58
|
|
|
62
59
|
# Checks equality by comparing each attribute.
|
|
@@ -86,10 +83,10 @@ module CloudmersiveNlpApiClient
|
|
|
86
83
|
return nil unless attributes.is_a?(Hash)
|
|
87
84
|
self.class.swagger_types.each_pair do |key, type|
|
|
88
85
|
if type =~ /\AArray<(.*)>/i
|
|
89
|
-
# check to ensure the input is an array given that the
|
|
86
|
+
# check to ensure the input is an array given that the attribute
|
|
90
87
|
# is documented as an array but the input is not
|
|
91
88
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
92
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
89
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
93
90
|
end
|
|
94
91
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
95
92
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -171,7 +168,7 @@ module CloudmersiveNlpApiClient
|
|
|
171
168
|
# @return [Hash] Returns the value in the form of hash
|
|
172
169
|
def _to_hash(value)
|
|
173
170
|
if value.is_a?(Array)
|
|
174
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
171
|
+
value.compact.map { |v| _to_hash(v) }
|
|
175
172
|
elsif value.is_a?(Hash)
|
|
176
173
|
{}.tap do |hash|
|
|
177
174
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -184,5 +181,4 @@ module CloudmersiveNlpApiClient
|
|
|
184
181
|
end
|
|
185
182
|
|
|
186
183
|
end
|
|
187
|
-
|
|
188
184
|
end
|
|
@@ -6,14 +6,13 @@
|
|
|
6
6
|
OpenAPI spec version: v1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module CloudmersiveNlpApiClient
|
|
16
|
-
|
|
17
16
|
class SentenceSegmentationResponse
|
|
18
17
|
attr_accessor :successful
|
|
19
18
|
|
|
@@ -21,7 +20,6 @@ module CloudmersiveNlpApiClient
|
|
|
21
20
|
|
|
22
21
|
attr_accessor :sentence_count
|
|
23
22
|
|
|
24
|
-
|
|
25
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
26
24
|
def self.attribute_map
|
|
27
25
|
{
|
|
@@ -46,7 +44,7 @@ module CloudmersiveNlpApiClient
|
|
|
46
44
|
return unless attributes.is_a?(Hash)
|
|
47
45
|
|
|
48
46
|
# convert string to symbol for hash key
|
|
49
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
47
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
50
48
|
|
|
51
49
|
if attributes.has_key?(:'Successful')
|
|
52
50
|
self.successful = attributes[:'Successful']
|
|
@@ -61,20 +59,19 @@ module CloudmersiveNlpApiClient
|
|
|
61
59
|
if attributes.has_key?(:'SentenceCount')
|
|
62
60
|
self.sentence_count = attributes[:'SentenceCount']
|
|
63
61
|
end
|
|
64
|
-
|
|
65
62
|
end
|
|
66
63
|
|
|
67
64
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
68
65
|
# @return Array for valid properties with the reasons
|
|
69
66
|
def list_invalid_properties
|
|
70
67
|
invalid_properties = Array.new
|
|
71
|
-
|
|
68
|
+
invalid_properties
|
|
72
69
|
end
|
|
73
70
|
|
|
74
71
|
# Check to see if the all the properties in the model are valid
|
|
75
72
|
# @return true if the model is valid
|
|
76
73
|
def valid?
|
|
77
|
-
|
|
74
|
+
true
|
|
78
75
|
end
|
|
79
76
|
|
|
80
77
|
# Checks equality by comparing each attribute.
|
|
@@ -106,10 +103,10 @@ module CloudmersiveNlpApiClient
|
|
|
106
103
|
return nil unless attributes.is_a?(Hash)
|
|
107
104
|
self.class.swagger_types.each_pair do |key, type|
|
|
108
105
|
if type =~ /\AArray<(.*)>/i
|
|
109
|
-
# check to ensure the input is an array given that the
|
|
106
|
+
# check to ensure the input is an array given that the attribute
|
|
110
107
|
# is documented as an array but the input is not
|
|
111
108
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
112
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
109
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
113
110
|
end
|
|
114
111
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
115
112
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -191,7 +188,7 @@ module CloudmersiveNlpApiClient
|
|
|
191
188
|
# @return [Hash] Returns the value in the form of hash
|
|
192
189
|
def _to_hash(value)
|
|
193
190
|
if value.is_a?(Array)
|
|
194
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
191
|
+
value.compact.map { |v| _to_hash(v) }
|
|
195
192
|
elsif value.is_a?(Hash)
|
|
196
193
|
{}.tap do |hash|
|
|
197
194
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -204,5 +201,4 @@ module CloudmersiveNlpApiClient
|
|
|
204
201
|
end
|
|
205
202
|
|
|
206
203
|
end
|
|
207
|
-
|
|
208
204
|
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: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,6 @@ module CloudmersiveNlpApiClient
|
|
|
18
18
|
# Text to analyze
|
|
19
19
|
attr_accessor :text_to_analyze
|
|
20
20
|
|
|
21
|
-
|
|
22
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
23
22
|
def self.attribute_map
|
|
24
23
|
{
|
|
@@ -39,25 +38,24 @@ module CloudmersiveNlpApiClient
|
|
|
39
38
|
return unless attributes.is_a?(Hash)
|
|
40
39
|
|
|
41
40
|
# convert string to symbol for hash key
|
|
42
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
41
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
43
42
|
|
|
44
43
|
if attributes.has_key?(:'TextToAnalyze')
|
|
45
44
|
self.text_to_analyze = attributes[:'TextToAnalyze']
|
|
46
45
|
end
|
|
47
|
-
|
|
48
46
|
end
|
|
49
47
|
|
|
50
48
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
51
49
|
# @return Array for valid properties with the reasons
|
|
52
50
|
def list_invalid_properties
|
|
53
51
|
invalid_properties = Array.new
|
|
54
|
-
|
|
52
|
+
invalid_properties
|
|
55
53
|
end
|
|
56
54
|
|
|
57
55
|
# Check to see if the all the properties in the model are valid
|
|
58
56
|
# @return true if the model is valid
|
|
59
57
|
def valid?
|
|
60
|
-
|
|
58
|
+
true
|
|
61
59
|
end
|
|
62
60
|
|
|
63
61
|
# Checks equality by comparing each attribute.
|
|
@@ -87,10 +85,10 @@ module CloudmersiveNlpApiClient
|
|
|
87
85
|
return nil unless attributes.is_a?(Hash)
|
|
88
86
|
self.class.swagger_types.each_pair do |key, type|
|
|
89
87
|
if type =~ /\AArray<(.*)>/i
|
|
90
|
-
# check to ensure the input is an array given that the
|
|
88
|
+
# check to ensure the input is an array given that the attribute
|
|
91
89
|
# is documented as an array but the input is not
|
|
92
90
|
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) }
|
|
91
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
94
92
|
end
|
|
95
93
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
96
94
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -172,7 +170,7 @@ module CloudmersiveNlpApiClient
|
|
|
172
170
|
# @return [Hash] Returns the value in the form of hash
|
|
173
171
|
def _to_hash(value)
|
|
174
172
|
if value.is_a?(Array)
|
|
175
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
173
|
+
value.compact.map { |v| _to_hash(v) }
|
|
176
174
|
elsif value.is_a?(Hash)
|
|
177
175
|
{}.tap do |hash|
|
|
178
176
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -185,5 +183,4 @@ module CloudmersiveNlpApiClient
|
|
|
185
183
|
end
|
|
186
184
|
|
|
187
185
|
end
|
|
188
|
-
|
|
189
186
|
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: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,7 +27,6 @@ module CloudmersiveNlpApiClient
|
|
|
27
27
|
# Number of sentences in input text
|
|
28
28
|
attr_accessor :sentence_count
|
|
29
29
|
|
|
30
|
-
|
|
31
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
32
31
|
def self.attribute_map
|
|
33
32
|
{
|
|
@@ -54,7 +53,7 @@ module CloudmersiveNlpApiClient
|
|
|
54
53
|
return unless attributes.is_a?(Hash)
|
|
55
54
|
|
|
56
55
|
# convert string to symbol for hash key
|
|
57
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
56
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
58
57
|
|
|
59
58
|
if attributes.has_key?(:'Successful')
|
|
60
59
|
self.successful = attributes[:'Successful']
|
|
@@ -71,20 +70,19 @@ module CloudmersiveNlpApiClient
|
|
|
71
70
|
if attributes.has_key?(:'SentenceCount')
|
|
72
71
|
self.sentence_count = attributes[:'SentenceCount']
|
|
73
72
|
end
|
|
74
|
-
|
|
75
73
|
end
|
|
76
74
|
|
|
77
75
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
78
76
|
# @return Array for valid properties with the reasons
|
|
79
77
|
def list_invalid_properties
|
|
80
78
|
invalid_properties = Array.new
|
|
81
|
-
|
|
79
|
+
invalid_properties
|
|
82
80
|
end
|
|
83
81
|
|
|
84
82
|
# Check to see if the all the properties in the model are valid
|
|
85
83
|
# @return true if the model is valid
|
|
86
84
|
def valid?
|
|
87
|
-
|
|
85
|
+
true
|
|
88
86
|
end
|
|
89
87
|
|
|
90
88
|
# Checks equality by comparing each attribute.
|
|
@@ -117,10 +115,10 @@ module CloudmersiveNlpApiClient
|
|
|
117
115
|
return nil unless attributes.is_a?(Hash)
|
|
118
116
|
self.class.swagger_types.each_pair do |key, type|
|
|
119
117
|
if type =~ /\AArray<(.*)>/i
|
|
120
|
-
# check to ensure the input is an array given that the
|
|
118
|
+
# check to ensure the input is an array given that the attribute
|
|
121
119
|
# is documented as an array but the input is not
|
|
122
120
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
123
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
121
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
124
122
|
end
|
|
125
123
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
126
124
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -202,7 +200,7 @@ module CloudmersiveNlpApiClient
|
|
|
202
200
|
# @return [Hash] Returns the value in the form of hash
|
|
203
201
|
def _to_hash(value)
|
|
204
202
|
if value.is_a?(Array)
|
|
205
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
203
|
+
value.compact.map { |v| _to_hash(v) }
|
|
206
204
|
elsif value.is_a?(Hash)
|
|
207
205
|
{}.tap do |hash|
|
|
208
206
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -215,5 +213,4 @@ module CloudmersiveNlpApiClient
|
|
|
215
213
|
end
|
|
216
214
|
|
|
217
215
|
end
|
|
218
|
-
|
|
219
216
|
end
|