Class: BigDoor::Profile
- Inherits:
-
ResourceEndUser
- Object
- OpenStruct
- Resource
- ResourceEndUser
- BigDoor::Profile
- Defined in:
- lib/big_door/profile.rb
Overview
This module provides Profile Resource object corresponding to /end_user/id/profile BigDoor API end point
Instance Method Summary collapse
-
#initialize(hash = {}) ⇒ Profile
constructor
Initialize new Profile object with optional Hash.
Methods inherited from ResourceEndUser
all, end_point, #end_point, parent_end_point, #parent_id_attr
Methods inherited from Resource
all, #delete, #end_point, end_point, end_point_from_classname, #get_id, #instance_to_payload, #load, #response_to_instance, #save
Constructor Details
#initialize(hash = {}) ⇒ Profile
Initialize new Profile object with optional Hash
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/big_door/profile.rb', line 13 def initialize( hash = {} ) $log.debug( "Profile init with hash = #{hash.inspect}") default_values = { 'provider' => 'publisher', 'email' => '', 'first_name' => '', 'last_name' => '', 'display_name' => '', 'profile_photo' => '', } default_values.merge!( hash ) $log.debug( "Profile default_values = #{default_values.inspect}") super( default_values ) end |