Class: MoneyS3::Parsers::ParametrType
- Inherits:
-
Object
- Object
- MoneyS3::Parsers::ParametrType
- Includes:
- ParserCore::BaseParser
- Defined in:
- lib/money_s3/parsers/parametr_type.rb
Instance Method Summary collapse
- #druh ⇒ Object
- #druh_attributes ⇒ Object
- #hodnoty ⇒ Object
- #hodnoty_attributes ⇒ Object
- #id ⇒ Object
- #id_attributes ⇒ Object
- #mj ⇒ Object
- #mj_attributes ⇒ Object
- #nazev ⇒ Object
- #nazev_attributes ⇒ Object
- #to_h ⇒ Object
- #typ ⇒ Object
- #typ_attributes ⇒ Object
- #uziv_code ⇒ Object
- #uziv_code_attributes ⇒ Object
Instance Method Details
#druh ⇒ Object
22 23 24 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 22 def druh at 'Druh' end |
#druh_attributes ⇒ Object
26 27 28 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 26 def druh_attributes attributes_at 'Druh' end |
#hodnoty ⇒ Object
54 55 56 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 54 def hodnoty at 'Hodnoty' end |
#hodnoty_attributes ⇒ Object
58 59 60 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 58 def hodnoty_attributes attributes_at 'Hodnoty' end |
#id ⇒ Object
6 7 8 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 6 def id at 'ID' end |
#id_attributes ⇒ Object
10 11 12 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 10 def id_attributes attributes_at 'ID' end |
#mj ⇒ Object
38 39 40 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 38 def mj at 'MJ' end |
#mj_attributes ⇒ Object
42 43 44 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 42 def mj_attributes attributes_at 'MJ' end |
#nazev ⇒ Object
14 15 16 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 14 def nazev at 'Nazev' end |
#nazev_attributes ⇒ Object
18 19 20 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 18 def nazev_attributes attributes_at 'Nazev' end |
#to_h ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 62 def to_h hash = {} hash[:attributes] = attributes hash[:id] = id if has? 'ID' hash[:id_attributes] = id_attributes if has? 'ID' hash[:nazev] = nazev if has? 'Nazev' hash[:nazev_attributes] = nazev_attributes if has? 'Nazev' hash[:druh] = druh if has? 'Druh' hash[:druh_attributes] = druh_attributes if has? 'Druh' hash[:typ] = typ if has? 'Typ' hash[:typ_attributes] = typ_attributes if has? 'Typ' hash[:mj] = mj if has? 'MJ' hash[:mj_attributes] = mj_attributes if has? 'MJ' hash[:uziv_code] = uziv_code if has? 'UzivCode' hash[:uziv_code_attributes] = uziv_code_attributes if has? 'UzivCode' hash[:hodnoty] = hodnoty if has? 'Hodnoty' hash[:hodnoty_attributes] = hodnoty_attributes if has? 'Hodnoty' hash end |
#typ ⇒ Object
30 31 32 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 30 def typ at 'Typ' end |
#typ_attributes ⇒ Object
34 35 36 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 34 def typ_attributes attributes_at 'Typ' end |
#uziv_code ⇒ Object
46 47 48 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 46 def uziv_code at 'UzivCode' end |
#uziv_code_attributes ⇒ Object
50 51 52 |
# File 'lib/money_s3/parsers/parametr_type.rb', line 50 def uziv_code_attributes attributes_at 'UzivCode' end |