class Pohoda::Parsers::Bal::BalanceHeaderType

Public Instance Methods

date_to() click to toggle source
# File lib/pohoda/parsers/bal/balance_header_type.rb, line 7
def date_to
  at 'bal:dateTo'
end
date_to_attributes() click to toggle source
# File lib/pohoda/parsers/bal/balance_header_type.rb, line 11
def date_to_attributes
  attributes_at 'bal:dateTo'
end
to_h() click to toggle source
# File lib/pohoda/parsers/bal/balance_header_type.rb, line 15
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:date_to] = date_to if has? 'bal:dateTo'
  hash[:date_to_attributes] = date_to_attributes if has? 'bal:dateTo'

  hash
end