class MoneyS3::Parsers::VyrobniCisloType

Public Instance Methods

carovy_kod() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 22
def carovy_kod
  at 'CarovyKod'
end
carovy_kod_attributes() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 26
def carovy_kod_attributes
  attributes_at 'CarovyKod'
end
datum_vyrob() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 14
def datum_vyrob
  at 'DatumVyrob'
end
datum_vyrob_attributes() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 18
def datum_vyrob_attributes
  attributes_at 'DatumVyrob'
end
to_h() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 30
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:vyrobni_cis] = vyrobni_cis if has? 'VyrobniCis'
  hash[:vyrobni_cis_attributes] = vyrobni_cis_attributes if has? 'VyrobniCis'
  hash[:datum_vyrob] = datum_vyrob if has? 'DatumVyrob'
  hash[:datum_vyrob_attributes] = datum_vyrob_attributes if has? 'DatumVyrob'
  hash[:carovy_kod] = carovy_kod if has? 'CarovyKod'
  hash[:carovy_kod_attributes] = carovy_kod_attributes if has? 'CarovyKod'

  hash
end
vyrobni_cis() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 6
def vyrobni_cis
  at 'VyrobniCis'
end
vyrobni_cis_attributes() click to toggle source
# File lib/money_s3/parsers/vyrobni_cislo_type.rb, line 10
def vyrobni_cis_attributes
  attributes_at 'VyrobniCis'
end