lib/attune/models/ranking_params.rb in attune-1.0.7 vs lib/attune/models/ranking_params.rb in attune-1.0.8
- old
+ new
@@ -1,66 +1,66 @@
module Attune
module Model
# Inputs for ranking a set of ids for a particular user.
#
- # @attr [String] entity_type
- # @attr [Array<String>] ids
# @attr [Array<Attune::Model::ScopeEntry>] scope
- # @attr [String] user_agent
- # @attr [String] anonymous
+ # @attr [String] view
# @attr [String] ip
+ # @attr [String] user_agent
+ # @attr [String] entity_type
+ # @attr [Array<String>] ids
# @attr [String] customer
- # @attr [String] view
+ # @attr [String] anonymous
class RankingParams
- attr_accessor :entity_type
+ attr_accessor :scope
- attr_accessor :ids
+ attr_accessor :view
- attr_accessor :scope
+ attr_accessor :ip
attr_accessor :user_agent
- attr_accessor :anonymous
+ attr_accessor :entity_type
- attr_accessor :ip
+ attr_accessor :ids
attr_accessor :customer
- attr_accessor :view
+ attr_accessor :anonymous
def initialize(attributes = {})
return if attributes.empty?
- # Workaround since JSON.parse has accessors as strings rather than symbols
- @entity_type = attributes["entityType"] || attributes[:"entity_type"]
- value = attributes["ids"] || attributes[:"ids"]
- if value.is_a?(Array)
- @ids = value
-
- end
value = attributes["scope"] || attributes[:"scope"]
if value.is_a?(Array)
@scope = value.map{ |v| ScopeEntry.new(v) }
end
# Workaround since JSON.parse has accessors as strings rather than symbols
- @user_agent = attributes["userAgent"] || attributes[:"user_agent"]
+ @view = attributes["view"] || attributes[:"view"]
# Workaround since JSON.parse has accessors as strings rather than symbols
- @anonymous = attributes["anonymous"] || attributes[:"anonymous"]
- # Workaround since JSON.parse has accessors as strings rather than symbols
@ip = attributes["ip"] || attributes[:"ip"]
# Workaround since JSON.parse has accessors as strings rather than symbols
+ @user_agent = attributes["userAgent"] || attributes[:"user_agent"]
+ # Workaround since JSON.parse has accessors as strings rather than symbols
+ @entity_type = attributes["entityType"] || attributes[:"entity_type"]
+ value = attributes["ids"] || attributes[:"ids"]
+ if value.is_a?(Array)
+ @ids = value
+
+ end
+ # Workaround since JSON.parse has accessors as strings rather than symbols
@customer = attributes["customer"] || attributes[:"customer"]
# Workaround since JSON.parse has accessors as strings rather than symbols
- @view = attributes["view"] || attributes[:"view"]
+ @anonymous = attributes["anonymous"] || attributes[:"anonymous"]
end
def to_body
@@ -75,17 +75,17 @@
end
private
# :internal => :external
ATTRIBUTE_MAP = {
- :entity_type => :entityType,
- :ids => :ids,
:scope => :scope,
- :user_agent => :userAgent,
- :anonymous => :anonymous,
+ :view => :view,
:ip => :ip,
+ :user_agent => :userAgent,
+ :entity_type => :entityType,
+ :ids => :ids,
:customer => :customer,
- :view => :view
+ :anonymous => :anonymous
}
end
end
end