Class: MoneyS3::Parsers::StrediskoType

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseParser
Defined in:
lib/money_s3/parsers/stredisko_type.rb

Direct Known Subclasses

Stredisko

Instance Method Summary collapse

Instance Method Details

#nazevObject



14
15
16
# File 'lib/money_s3/parsers/stredisko_type.rb', line 14

def nazev
  at 'Nazev'
end

#nazev_attributesObject



18
19
20
# File 'lib/money_s3/parsers/stredisko_type.rb', line 18

def nazev_attributes
  attributes_at 'Nazev'
end

#poznObject



22
23
24
# File 'lib/money_s3/parsers/stredisko_type.rb', line 22

def pozn
  at 'Pozn'
end

#pozn_attributesObject



26
27
28
# File 'lib/money_s3/parsers/stredisko_type.rb', line 26

def pozn_attributes
  attributes_at 'Pozn'
end

#to_hObject



30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/money_s3/parsers/stredisko_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[:nazev] = nazev if has? 'Nazev'
  hash[:nazev_attributes] = nazev_attributes if has? 'Nazev'
  hash[:pozn] = pozn if has? 'Pozn'
  hash[:pozn_attributes] = pozn_attributes if has? 'Pozn'

  hash
end

#zkratObject



6
7
8
# File 'lib/money_s3/parsers/stredisko_type.rb', line 6

def zkrat
  at 'Zkrat'
end

#zkrat_attributesObject



10
11
12
# File 'lib/money_s3/parsers/stredisko_type.rb', line 10

def zkrat_attributes
  attributes_at 'Zkrat'
end