Class: ONEAccess::DataObject::ProductGroup
- Inherits:
-
Object
- Object
- ONEAccess::DataObject::ProductGroup
- Defined in:
- lib/oneaccess/data_object/product_group.rb
Instance Attribute Summary collapse
-
#contributor_org_id ⇒ Object
Returns the value of attribute contributor_org_id.
-
#description ⇒ Object
Returns the value of attribute description.
-
#id ⇒ Object
Returns the value of attribute id.
-
#is_default ⇒ Object
(also: #is_default?, #default?)
Returns the value of attribute is_default.
-
#name ⇒ Object
Returns the value of attribute name.
-
#status ⇒ Object
Returns the value of attribute status.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #active? ⇒ Boolean
- #events? ⇒ Boolean
- #inactive? ⇒ Boolean
- #models? ⇒ Boolean
- #private_events? ⇒ Boolean
- #research? ⇒ Boolean
Instance Attribute Details
#contributor_org_id ⇒ Object
Returns the value of attribute contributor_org_id.
11 12 13 |
# File 'lib/oneaccess/data_object/product_group.rb', line 11 def contributor_org_id @contributor_org_id end |
#description ⇒ Object
Returns the value of attribute description.
9 10 11 |
# File 'lib/oneaccess/data_object/product_group.rb', line 9 def description @description end |
#id ⇒ Object
Returns the value of attribute id.
7 8 9 |
# File 'lib/oneaccess/data_object/product_group.rb', line 7 def id @id end |
#is_default ⇒ Object Also known as: is_default?, default?
Returns the value of attribute is_default.
13 14 15 |
# File 'lib/oneaccess/data_object/product_group.rb', line 13 def is_default @is_default end |
#name ⇒ Object
Returns the value of attribute name.
8 9 10 |
# File 'lib/oneaccess/data_object/product_group.rb', line 8 def name @name end |
#status ⇒ Object
Returns the value of attribute status.
10 11 12 |
# File 'lib/oneaccess/data_object/product_group.rb', line 10 def status @status end |
#type ⇒ Object
Returns the value of attribute type.
12 13 14 |
# File 'lib/oneaccess/data_object/product_group.rb', line 12 def type @type end |
Instance Method Details
#active? ⇒ Boolean
18 19 20 |
# File 'lib/oneaccess/data_object/product_group.rb', line 18 def active? status == ProductGroupStatus::ACTIVE end |
#events? ⇒ Boolean
34 35 36 |
# File 'lib/oneaccess/data_object/product_group.rb', line 34 def events? type == ProductType::EVENT end |
#inactive? ⇒ Boolean
22 23 24 |
# File 'lib/oneaccess/data_object/product_group.rb', line 22 def inactive? status == ProductGroupStatus::INACTIVE end |
#models? ⇒ Boolean
38 39 40 |
# File 'lib/oneaccess/data_object/product_group.rb', line 38 def models? type == ProductType::MODEL end |
#private_events? ⇒ Boolean
30 31 32 |
# File 'lib/oneaccess/data_object/product_group.rb', line 30 def private_events? type == ProductType::PRIVATE_EVENT end |
#research? ⇒ Boolean
26 27 28 |
# File 'lib/oneaccess/data_object/product_group.rb', line 26 def research? type == ProductType::RESEARCH end |