class Pohoda::Parsers::Lst::ListUserCodeType

Public Instance Methods

item_user_code() click to toggle source
# File lib/pohoda/parsers/lst/list_user_code_type.rb, line 7
def item_user_code
  at 'lst:itemUserCode'
end
item_user_code_attributes() click to toggle source
# File lib/pohoda/parsers/lst/list_user_code_type.rb, line 11
def item_user_code_attributes
  attributes_at 'lst:itemUserCode'
end
to_h() click to toggle source
# File lib/pohoda/parsers/lst/list_user_code_type.rb, line 15
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:item_user_code] = item_user_code if has? 'lst:itemUserCode'
  hash[:item_user_code_attributes] = item_user_code_attributes if has? 'lst:itemUserCode'

  hash
end