class MoneyS3::Parsers::PreprDoplnUdajType

Public Instance Methods

popis() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 14
def popis
  at 'Popis'
end
popis_attributes() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 18
def popis_attributes
  attributes_at 'Popis'
end
poznamka() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 22
def poznamka
  at 'Poznamka'
end
poznamka_attributes() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 26
def poznamka_attributes
  attributes_at 'Poznamka'
end
to_h() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 30
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:zkrat] = zkrat if has? 'Zkrat'
  hash[:zkrat_attributes] = zkrat_attributes if has? 'Zkrat'
  hash[:popis] = popis if has? 'Popis'
  hash[:popis_attributes] = popis_attributes if has? 'Popis'
  hash[:poznamka] = poznamka if has? 'Poznamka'
  hash[:poznamka_attributes] = poznamka_attributes if has? 'Poznamka'

  hash
end
zkrat() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 6
def zkrat
  at 'Zkrat'
end
zkrat_attributes() click to toggle source
# File lib/money_s3/parsers/prepr_dopln_udaj_type.rb, line 10
def zkrat_attributes
  attributes_at 'Zkrat'
end