module Pohoda::Parsers::Ftr::Groups::DeleteFilter

Public Instance Methods

filter() click to toggle source
# File lib/pohoda/parsers/ftr/groups/delete_filter.rb, line 6
def filter
  submodel_at(Ftr::FilterDocsDeleteType, 'ftr:filter')
end
to_h() click to toggle source
# File lib/pohoda/parsers/ftr/groups/delete_filter.rb, line 10
def to_h
  hash = {}
  hash[:attributes] = attributes

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

  hash
end