Class: NPR::Entity::Parent
- Includes:
- Concern::LinksAssociation
- Defined in:
- lib/npr/entity/parent.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(json) ⇒ Parent
constructor
——————-.
Methods included from Concern::LinksAssociation
Methods included from Concern::ShallowAttributes
Methods included from Concern::Relation
Constructor Details
#initialize(json) ⇒ Parent
14 15 16 17 18 19 20 |
# File 'lib/npr/entity/parent.rb', line 14 def initialize(json) @id = json["id"].to_i @type = json["type"] extract_shallow_attributes(json) create_relations(json) end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
9 10 11 |
# File 'lib/npr/entity/parent.rb', line 9 def id @id end |
#type ⇒ Object
Returns the value of attribute type.
9 10 11 |
# File 'lib/npr/entity/parent.rb', line 9 def type @type end |