Class: Algolia::Search::RankingInfo
- Inherits:
-
Object
- Object
- Algolia::Search::RankingInfo
- Defined in:
- lib/algolia/models/search/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.
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.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
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 179 180 181 |
# File 'lib/algolia/models/search/ranking_info.rb', line 99 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.
11 12 13 |
# File 'lib/algolia/models/search/ranking_info.rb', line 11 def filters @filters end |
#first_matched_word ⇒ Object
Position of the first matched word in the best matching attribute of the record.
14 15 16 |
# File 'lib/algolia/models/search/ranking_info.rb', line 14 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).
17 18 19 |
# File 'lib/algolia/models/search/ranking_info.rb', line 17 def geo_distance @geo_distance end |
#geo_precision ⇒ Object
Precision used when computing the geo distance, in meters.
20 21 22 |
# File 'lib/algolia/models/search/ranking_info.rb', line 20 def geo_precision @geo_precision end |
#matched_geo_location ⇒ Object
Returns the value of attribute matched_geo_location.
22 23 24 |
# File 'lib/algolia/models/search/ranking_info.rb', line 22 def matched_geo_location @matched_geo_location end |
#nb_exact_words ⇒ Object
Number of exactly matched words.
27 28 29 |
# File 'lib/algolia/models/search/ranking_info.rb', line 27 def nb_exact_words @nb_exact_words end |
#nb_typos ⇒ Object
Number of typos encountered when matching the record.
30 31 32 |
# File 'lib/algolia/models/search/ranking_info.rb', line 30 def nb_typos @nb_typos end |
#personalization ⇒ Object
Returns the value of attribute personalization.
24 25 26 |
# File 'lib/algolia/models/search/ranking_info.rb', line 24 def personalization @personalization end |
#promoted ⇒ Object
Whether the record was promoted by a rule.
33 34 35 |
# File 'lib/algolia/models/search/ranking_info.rb', line 33 def promoted @promoted end |
#promoted_by_re_ranking ⇒ Object
Whether the record is re-ranked.
45 46 47 |
# File 'lib/algolia/models/search/ranking_info.rb', line 45 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.
36 37 38 |
# File 'lib/algolia/models/search/ranking_info.rb', line 36 def proximity_distance @proximity_distance end |
#user_score ⇒ Object
Overall ranking of the record, expressed as a single integer. This attribute is internal.
39 40 41 |
# File 'lib/algolia/models/search/ranking_info.rb', line 39 def user_score @user_score end |
#words ⇒ Object
Number of matched words.
42 43 44 |
# File 'lib/algolia/models/search/ranking_info.rb', line 42 def words @words end |
Class Method Details
._deserialize(type, value) ⇒ Object
Deserializes the data based on type
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'lib/algolia/models/search/ranking_info.rb', line 371 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::Search.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 |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
67 68 69 |
# File 'lib/algolia/models/search/ranking_info.rb', line 67 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/algolia/models/search/ranking_info.rb', line 48 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
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/algolia/models/search/ranking_info.rb', line 344 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
91 92 93 94 95 |
# File 'lib/algolia/models/search/ranking_info.rb', line 91 def self.openapi_nullable Set.new( [] ) end |
.types_mapping ⇒ Object
Attribute type mapping.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/algolia/models/search/ranking_info.rb', line 72 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.
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/algolia/models/search/ranking_info.rb', line 297 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
450 451 452 453 454 455 456 457 458 459 460 461 462 |
# File 'lib/algolia/models/search/ranking_info.rb', line 450 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
317 318 319 |
# File 'lib/algolia/models/search/ranking_info.rb', line 317 def eql?(other) self == other end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
# File 'lib/algolia/models/search/ranking_info.rb', line 323 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)
421 422 423 |
# File 'lib/algolia/models/search/ranking_info.rb', line 421 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
# File 'lib/algolia/models/search/ranking_info.rb', line 431 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
425 426 427 |
# File 'lib/algolia/models/search/ranking_info.rb', line 425 def to_json(*_args) to_hash.to_json end |
#to_s ⇒ String
Returns the string representation of the object
415 416 417 |
# File 'lib/algolia/models/search/ranking_info.rb', line 415 def to_s to_hash.to_s end |