class Pohoda::Parsers::Ftr::RequestItemType

Public Instance Methods

filter() click to toggle source
# File lib/pohoda/parsers/ftr/request_item_type.rb, line 7
def filter
  submodel_at(Ftr::FilterExtIdType, 'ftr:filter')
end
to_h() click to toggle source
# File lib/pohoda/parsers/ftr/request_item_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:filter] = filter.to_h if has? 'ftr:filter'

  hash
end