class Pohoda::Parsers::Stk::IntParameterValueType
Public Instance Methods
parameter_order()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 23 def parameter_order at 'stk:parameterOrder' end
parameter_order_attributes()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 27 def parameter_order_attributes attributes_at 'stk:parameterOrder' end
parameter_value()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 15 def parameter_value at 'stk:parameterValue' end
parameter_value_attributes()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 19 def parameter_value_attributes attributes_at 'stk:parameterValue' end
parameter_value_id()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 7 def parameter_value_id at 'stk:parameterValueID' end
parameter_value_id_attributes()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 11 def parameter_value_id_attributes attributes_at 'stk:parameterValueID' end
to_h()
click to toggle source
# File lib/pohoda/parsers/stk/int_parameter_value_type.rb, line 31 def to_h hash = {} hash[:attributes] = attributes hash[:parameter_value_id] = parameter_value_id if has? 'stk:parameterValueID' hash[:parameter_value_id_attributes] = parameter_value_id_attributes if has? 'stk:parameterValueID' hash[:parameter_value] = parameter_value if has? 'stk:parameterValue' hash[:parameter_value_attributes] = parameter_value_attributes if has? 'stk:parameterValue' hash[:parameter_order] = parameter_order if has? 'stk:parameterOrder' hash[:parameter_order_attributes] = parameter_order_attributes if has? 'stk:parameterOrder' hash end