Class: MoneyS3::Parsers::PreprDoplnUdajType
- Inherits:
-
Object
- Object
- MoneyS3::Parsers::PreprDoplnUdajType
- Includes:
- ParserCore::BaseParser
- Defined in:
- lib/money_s3/parsers/prepr_dopln_udaj_type.rb
Instance Method Summary collapse
- #popis ⇒ Object
- #popis_attributes ⇒ Object
- #poznamka ⇒ Object
- #poznamka_attributes ⇒ Object
- #to_h ⇒ Object
- #zkrat ⇒ Object
- #zkrat_attributes ⇒ Object
Instance Method Details
#popis ⇒ Object
14 15 16 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 14 def popis at 'Popis' end |
#popis_attributes ⇒ Object
18 19 20 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 18 def popis_attributes attributes_at 'Popis' end |
#poznamka ⇒ Object
22 23 24 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 22 def poznamka at 'Poznamka' end |
#poznamka_attributes ⇒ Object
26 27 28 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 26 def poznamka_attributes attributes_at 'Poznamka' end |
#to_h ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_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[:popis] = popis if has? 'Popis' hash[:popis_attributes] = popis_attributes if has? 'Popis' hash[:poznamka] = poznamka if has? 'Poznamka' hash[:poznamka_attributes] = poznamka_attributes if has? 'Poznamka' hash end |
#zkrat ⇒ Object
6 7 8 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 6 def zkrat at 'Zkrat' end |
#zkrat_attributes ⇒ Object
10 11 12 |
# File 'lib/money_s3/parsers/prepr_dopln_udaj_type.rb', line 10 def zkrat_attributes attributes_at 'Zkrat' end |