module Pohoda::Parsers::Typ::Groups::MyGroupOfRound

Public Instance Methods

price_round_sum() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 14
def price_round_sum
  at 'typ:priceRoundSum'
end
price_round_sum_attributes() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 18
def price_round_sum_attributes
  attributes_at 'typ:priceRoundSum'
end
price_round_sum_vat() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 22
def price_round_sum_vat
  at 'typ:priceRoundSumVAT'
end
price_round_sum_vat_attributes() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 26
def price_round_sum_vat_attributes
  attributes_at 'typ:priceRoundSumVAT'
end
rate_va_tround() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 6
def rate_va_tround
  at 'typ:rateVATround'
end
rate_va_tround_attributes() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 10
def rate_va_tround_attributes
  attributes_at 'typ:rateVATround'
end
to_h() click to toggle source
# File lib/pohoda/parsers/typ/groups/my_group_of_round.rb, line 30
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:rate_va_tround] = rate_va_tround if has? 'typ:rateVATround'
  hash[:rate_va_tround_attributes] = rate_va_tround_attributes if has? 'typ:rateVATround'
  hash[:price_round_sum] = price_round_sum if has? 'typ:priceRoundSum'
  hash[:price_round_sum_attributes] = price_round_sum_attributes if has? 'typ:priceRoundSum'
  hash[:price_round_sum_vat] = price_round_sum_vat if has? 'typ:priceRoundSumVAT'
  hash[:price_round_sum_vat_attributes] = price_round_sum_vat_attributes if has? 'typ:priceRoundSumVAT'

  hash
end