class Pohoda::Parsers::Stk::IntParameterValuesType

Public Instance Methods

int_parameter_value() click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_values_type.rb, line 7
def int_parameter_value
  array_of_at(Stk::IntParameterValueType, ['stk:intParameterValue'])
end
to_h() click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_values_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:int_parameter_value] = int_parameter_value.map(&:to_h) if has? 'stk:intParameterValue'

  hash
end