class Pohoda::Parsers::Lst::ListCategoryRequestType

Public Instance Methods

request_category() click to toggle source
# File lib/pohoda/parsers/lst/list_category_request_type.rb, line 7
def request_category
  at 'lst:requestCategory'
end
request_category_attributes() click to toggle source
# File lib/pohoda/parsers/lst/list_category_request_type.rb, line 11
def request_category_attributes
  attributes_at 'lst:requestCategory'
end
to_h() click to toggle source
# File lib/pohoda/parsers/lst/list_category_request_type.rb, line 15
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:request_category] = request_category if has? 'lst:requestCategory'
  hash[:request_category_attributes] = request_category_attributes if has? 'lst:requestCategory'

  hash
end