class MoneyS3::Parsers::SkupinaFiremType

Public Instance Methods

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

  hash[:zkratka] = zkratka if has? 'Zkratka'
  hash[:zkratka_attributes] = zkratka_attributes if has? 'Zkratka'
  hash[:nazev] = nazev if has? 'Nazev'
  hash[:nazev_attributes] = nazev_attributes if has? 'Nazev'
  hash[:poznamka] = poznamka if has? 'Poznamka'
  hash[:poznamka_attributes] = poznamka_attributes if has? 'Poznamka'

  hash
end
zkratka() click to toggle source
# File lib/money_s3/parsers/skupina_firem_type.rb, line 6
def zkratka
  at 'Zkratka'
end
zkratka_attributes() click to toggle source
# File lib/money_s3/parsers/skupina_firem_type.rb, line 10
def zkratka_attributes
  attributes_at 'Zkratka'
end