class Pohoda::Parsers::Lst::ListInvoiceRequestType

Public Instance Methods

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

  hash[:request_invoice] = request_invoice.to_h if has? 'lst:requestInvoice'

  hash
end