class MoneyS3::Parsers::MenaType

Public Instance Methods

kod() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 6
def kod
  at 'Kod'
end
kod_attributes() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 10
def kod_attributes
  attributes_at 'Kod'
end
kurs() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 22
def kurs
  at 'Kurs'
end
kurs_attributes() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 26
def kurs_attributes
  attributes_at 'Kurs'
end
mnozstvi() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 14
def mnozstvi
  at 'Mnozstvi'
end
mnozstvi_attributes() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 18
def mnozstvi_attributes
  attributes_at 'Mnozstvi'
end
to_h() click to toggle source
# File lib/money_s3/parsers/mena_type.rb, line 30
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:kod] = kod if has? 'Kod'
  hash[:kod_attributes] = kod_attributes if has? 'Kod'
  hash[:mnozstvi] = mnozstvi if has? 'Mnozstvi'
  hash[:mnozstvi_attributes] = mnozstvi_attributes if has? 'Mnozstvi'
  hash[:kurs] = kurs if has? 'Kurs'
  hash[:kurs_attributes] = kurs_attributes if has? 'Kurs'

  hash
end