class MoneyS3::Parsers::NepPlatidloType

Public Instance Methods

kod() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 6
def kod
  at 'Kod'
end
kod_attributes() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 10
def kod_attributes
  attributes_at 'Kod'
end
popis() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 14
def popis
  at 'Popis'
end
popis_attributes() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 18
def popis_attributes
  attributes_at 'Popis'
end
to_h() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_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[:popis] = popis if has? 'Popis'
  hash[:popis_attributes] = popis_attributes if has? 'Popis'
  hash[:var_symb] = var_symb if has? 'VarSymb'
  hash[:var_symb_attributes] = var_symb_attributes if has? 'VarSymb'

  hash
end
var_symb() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 22
def var_symb
  at 'VarSymb'
end
var_symb_attributes() click to toggle source
# File lib/money_s3/parsers/nep_platidlo_type.rb, line 26
def var_symb_attributes
  attributes_at 'VarSymb'
end