class Pohoda::Parsers::Lst::ListVoucherRequestType

Public Instance Methods

request_voucher() click to toggle source
# File lib/pohoda/parsers/lst/list_voucher_request_type.rb, line 7
def request_voucher
  submodel_at(Ftr::RequestVoucherType, 'lst:requestVoucher')
end
to_h() click to toggle source
# File lib/pohoda/parsers/lst/list_voucher_request_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:request_voucher] = request_voucher.to_h if has? 'lst:requestVoucher'

  hash
end