class Pohoda::Parsers::Lst::ListOfferRequestType

Public Instance Methods

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

  hash[:request_offer] = request_offer.to_h if has? 'lst:requestOffer'

  hash
end