module OpenEhr module AM module Archetype module Archetype_Description class ARCHETYPE_DESCRIPTION attr_accessor :archetype_package_uri, :lifecycle_state, :original_author, :other_contributors, :other_details, :details def initialize(args ={ }) @details = args[:details] @lifecycle_state = args[:lifecycle_state] @original_author = args[:original_author] @other_contributors = args[:other_contributors] @other_details = args[:other_details] @archetype_package_uri = args[:archetype_package_uri] end end class ARCHETYPE_DESCRIPTION_ITEM attr_accessor :archetype_package_uri, :lifecycle_state, :original_author, :other_contributors, :other_details end end end end end