Class: Algolia::Recommend::RankingInfo
- Inherits:
-
Object
- Object
- Algolia::Recommend::RankingInfo
- Defined in:
- lib/algolia/models/recommend/ranking_info.rb
Overview
Object with detailed information about the record’s ranking.
Instance Attribute Summary collapse
-
#filters ⇒ Object
Whether a filter matched the query.
-
#first_matched_word ⇒ Object
Position of the first matched word in the best matching attribute of the record.
-
#geo_distance ⇒ Object
Distance between the geo location in the search query and the best matching geo location in the record, divided by the geo precision (in meters).
-
#geo_precision ⇒ Object
Precision used when computing the geo distance, in meters.
-
#matched_geo_location ⇒ Object
Returns the value of attribute matched_geo_location.
-
#nb_exact_words ⇒ Object
Number of exactly matched words.
-
#nb_typos ⇒ Object
Number of typos encountered when matching the record.
-
#personalization ⇒ Object
Returns the value of attribute personalization.
-
#promoted ⇒ Object
Whether the record was promoted by a rule.
-
#promoted_by_re_ranking ⇒ Object
Whether the record is re-ranked.
-
#proximity_distance ⇒ Object
Number of words between multiple matches in the query plus 1.
-
#user_score ⇒ Object
Overall ranking of the record, expressed as a single integer.
-
#words ⇒ Object
Number of matched words.
Class Method Summary collapse
-
._deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.types_mapping ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ RankingInfo
constructor
Initializes the object.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
- #to_json(*_args) ⇒ Object
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ RankingInfo
Initializes the object
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 96 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) raise( ArgumentError, "The input argument (attributes) must be a hash in `Algolia::RankingInfo` initialize method" ) end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) raise( ArgumentError, "`#{k}` is not a valid attribute in `Algolia::RankingInfo`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect ) end h[k.to_sym] = v } if attributes.key?(:filters) self.filters = attributes[:filters] end if attributes.key?(:first_matched_word) self.first_matched_word = attributes[:first_matched_word] else self.first_matched_word = nil end if attributes.key?(:geo_distance) self.geo_distance = attributes[:geo_distance] else self.geo_distance = nil end if attributes.key?(:geo_precision) self.geo_precision = attributes[:geo_precision] end if attributes.key?(:matched_geo_location) self.matched_geo_location = attributes[:matched_geo_location] end if attributes.key?(:personalization) self.personalization = attributes[:personalization] end if attributes.key?(:nb_exact_words) self.nb_exact_words = attributes[:nb_exact_words] else self.nb_exact_words = nil end if attributes.key?(:nb_typos) self.nb_typos = attributes[:nb_typos] else self.nb_typos = nil end if attributes.key?(:promoted) self.promoted = attributes[:promoted] end if attributes.key?(:proximity_distance) self.proximity_distance = attributes[:proximity_distance] end if attributes.key?(:user_score) self.user_score = attributes[:user_score] else self.user_score = nil end if attributes.key?(:words) self.words = attributes[:words] end if attributes.key?(:promoted_by_re_ranking) self.promoted_by_re_ranking = attributes[:promoted_by_re_ranking] end end |
Instance Attribute Details
#filters ⇒ Object
Whether a filter matched the query.
13 14 15 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 13 def filters @filters end |
#first_matched_word ⇒ Object
Position of the first matched word in the best matching attribute of the record.
16 17 18 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 16 def first_matched_word @first_matched_word end |
#geo_distance ⇒ Object
Distance between the geo location in the search query and the best matching geo location in the record, divided by the geo precision (in meters).
19 20 21 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 19 def geo_distance @geo_distance end |
#geo_precision ⇒ Object
Precision used when computing the geo distance, in meters.
22 23 24 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 22 def geo_precision @geo_precision end |
#matched_geo_location ⇒ Object
Returns the value of attribute matched_geo_location.
24 25 26 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 24 def matched_geo_location @matched_geo_location end |
#nb_exact_words ⇒ Object
Number of exactly matched words.
29 30 31 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 29 def nb_exact_words @nb_exact_words end |
#nb_typos ⇒ Object
Number of typos encountered when matching the record.
32 33 34 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 32 def nb_typos @nb_typos end |
#personalization ⇒ Object
Returns the value of attribute personalization.
26 27 28 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 26 def personalization @personalization end |
#promoted ⇒ Object
Whether the record was promoted by a rule.
35 36 37 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 35 def promoted @promoted end |
#promoted_by_re_ranking ⇒ Object
Whether the record is re-ranked.
47 48 49 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 47 def promoted_by_re_ranking @promoted_by_re_ranking end |
#proximity_distance ⇒ Object
Number of words between multiple matches in the query plus 1. For single word queries, ‘proximityDistance` is 0.
38 39 40 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 38 def proximity_distance @proximity_distance end |
#user_score ⇒ Object
Overall ranking of the record, expressed as a single integer. This attribute is internal.
41 42 43 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 41 def user_score @user_score end |
#words ⇒ Object
Number of matched words.
44 45 46 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 44 def words @words end |
Class Method Details
._deserialize(type, value) ⇒ Object
Deserializes the data based on type
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 256 def self._deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end # model else # models (e.g. Pet) or oneOf klass = Algolia::Recommend.const_get(type) klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass .build_from_hash(value) end end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 50 def self.attribute_map { :filters => :filters, :first_matched_word => :firstMatchedWord, :geo_distance => :geoDistance, :geo_precision => :geoPrecision, :matched_geo_location => :matchedGeoLocation, :personalization => :personalization, :nb_exact_words => :nbExactWords, :nb_typos => :nbTypos, :promoted => :promoted, :proximity_distance => :proximityDistance, :user_score => :userScore, :words => :words, :promoted_by_re_ranking => :promotedByReRanking } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 229 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} types_mapping.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash[key.to_sym] = nil elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[attribute_map[key]].is_a?(Array) transformed_hash[key.to_sym] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash[key.to_sym] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
88 89 90 91 92 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 88 def self.openapi_nullable Set.new( [] ) end |
.types_mapping ⇒ Object
Attribute type mapping.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 69 def self.types_mapping { :filters => :"Integer", :first_matched_word => :"Integer", :geo_distance => :"Integer", :geo_precision => :"Integer", :matched_geo_location => :"MatchedGeoLocation", :personalization => :"Personalization", :nb_exact_words => :"Integer", :nb_typos => :"Integer", :promoted => :"Boolean", :proximity_distance => :"Integer", :user_score => :"Integer", :words => :"Integer", :promoted_by_re_ranking => :"Boolean" } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 182 def ==(other) return true if self.equal?(other) self.class == other.class && filters == other.filters && first_matched_word == other.first_matched_word && geo_distance == other.geo_distance && geo_precision == other.geo_precision && matched_geo_location == other.matched_geo_location && personalization == other.personalization && nb_exact_words == other.nb_exact_words && nb_typos == other.nb_typos && promoted == other.promoted && proximity_distance == other.proximity_distance && user_score == other.user_score && words == other.words && promoted_by_re_ranking == other.promoted_by_re_ranking end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
335 336 337 338 339 340 341 342 343 344 345 346 347 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 335 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to?(:to_hash) value.to_hash else value end end |
#eql?(other) ⇒ Boolean
202 203 204 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 202 def eql?(other) self == other end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 208 def hash [ filters, first_matched_word, geo_distance, geo_precision, matched_geo_location, personalization, nb_exact_words, nb_typos, promoted, proximity_distance, user_score, words, promoted_by_re_ranking ].hash end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
306 307 308 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 306 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 316 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_json(*_args) ⇒ Object
310 311 312 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 310 def to_json(*_args) to_hash.to_json end |
#to_s ⇒ String
Returns the string representation of the object
300 301 302 |
# File 'lib/algolia/models/recommend/ranking_info.rb', line 300 def to_s to_hash.to_s end |