class Zomato2::User
Attributes
foodie_color[R]
foodie_level[R]
foodie_level_num[R]
name[R]
profile_deeplink[R]
profile_image[R]
profile_url[R]
zomato_handle[R]
Public Class Methods
new(zom_conn, attributes)
click to toggle source
Calls superclass method
Zomato2::EntityBase::new
# File lib/zomato2/user.rb, line 7 def initialize(zom_conn, attributes) super(zom_conn) self.instance_variables.each do |att| if att === :@zom_conn next else self.instance_variable_set attributes[att] end end end
Public Instance Methods
to_s()
click to toggle source
Calls superclass method
Zomato2::EntityBase#to_s
# File lib/zomato2/user.rb, line 18 def to_s; super; end