Module: Dcc::Base::List

Included in:
V2::List, V3::List
Defined in:
lib/dcc/base/list.rb

Overview

dcc:listType — recursive list of quantities or sub-lists. Same ancillary sections as Quantity (usedMethods, usedSoftware, etc.).

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/dcc/base/list.rb', line 8

def self.included(klass)
  klass.class_eval do
    attribute :id, :string
    attribute :ref_id, :string
    attribute :ref_type, :string
    attribute :table_dimension, :integer
    attribute :name, :text
    attribute :date_time, :date_time
    attribute :quantity, :quantity, collection: true
    attribute :list, :list, collection: true
    attribute :used_methods, :usedMethods
    attribute :used_software, :softwareList
    attribute :influence_conditions, :influenceConditions
    attribute :measurement_meta_data, :measurementMetaData

    xml do
      namespace ::Dcc::Namespace::Dcc
      element "list"
      ordered
      map_attribute "id", to: :id
      map_attribute "refId", to: :ref_id
      map_attribute "refType", to: :ref_type
      map_attribute "tableDimension", to: :table_dimension
      map_element "name", to: :name
      map_element "dateTime", to: :date_time
      map_element "quantity", to: :quantity
      map_element "list", to: :list
      map_element "usedMethods", to: :used_methods
      map_element "usedSoftware", to: :used_software
      map_element "influenceConditions", to: :influence_conditions
      map_element "measurementMetaData", to: :measurement_meta_data
    end
  end
end