Class: OpenEHR::RM::Common::Resource::ResourceDescriptionItem
- Inherits:
-
Object
- Object
- OpenEHR::RM::Common::Resource::ResourceDescriptionItem
- Defined in:
- lib/open_ehr/rm/common/resource.rb
Instance Attribute Summary collapse
-
#copyright ⇒ Object
Returns the value of attribute copyright.
-
#keywords ⇒ Object
Returns the value of attribute keywords.
-
#language ⇒ Object
Returns the value of attribute language.
-
#misuse ⇒ Object
Returns the value of attribute misuse.
-
#original_resource_uri ⇒ Object
Returns the value of attribute original_resource_uri.
-
#other_details ⇒ Object
Returns the value of attribute other_details.
-
#purpose ⇒ Object
Returns the value of attribute purpose.
-
#use ⇒ Object
Returns the value of attribute use.
Instance Method Summary collapse
-
#initialize(args = { }) ⇒ ResourceDescriptionItem
constructor
A new instance of ResourceDescriptionItem.
Constructor Details
#initialize(args = { }) ⇒ ResourceDescriptionItem
Returns a new instance of ResourceDescriptionItem.
107 108 109 110 111 112 113 114 115 116 |
# File 'lib/open_ehr/rm/common/resource.rb', line 107 def initialize(args = { }) self.language = args[:language] self.purpose = args[:purpose] self.keywords = args[:keywords] self.use = args[:use] self.misuse = args[:misuse] self.copyright = args[:copyright] self.original_resource_uri = args[:original_resource_uri] self.other_details = args[:other_details] end |
Instance Attribute Details
#copyright ⇒ Object
Returns the value of attribute copyright.
104 105 106 |
# File 'lib/open_ehr/rm/common/resource.rb', line 104 def copyright @copyright end |
#keywords ⇒ Object
Returns the value of attribute keywords.
105 106 107 |
# File 'lib/open_ehr/rm/common/resource.rb', line 105 def keywords @keywords end |
#language ⇒ Object
Returns the value of attribute language.
104 105 106 |
# File 'lib/open_ehr/rm/common/resource.rb', line 104 def language @language end |
#misuse ⇒ Object
Returns the value of attribute misuse.
104 105 106 |
# File 'lib/open_ehr/rm/common/resource.rb', line 104 def misuse @misuse end |
#original_resource_uri ⇒ Object
Returns the value of attribute original_resource_uri.
105 106 107 |
# File 'lib/open_ehr/rm/common/resource.rb', line 105 def original_resource_uri @original_resource_uri end |
#other_details ⇒ Object
Returns the value of attribute other_details.
105 106 107 |
# File 'lib/open_ehr/rm/common/resource.rb', line 105 def other_details @other_details end |
#purpose ⇒ Object
Returns the value of attribute purpose.
104 105 106 |
# File 'lib/open_ehr/rm/common/resource.rb', line 104 def purpose @purpose end |
#use ⇒ Object
Returns the value of attribute use.
104 105 106 |
# File 'lib/open_ehr/rm/common/resource.rb', line 104 def use @use end |