class Pohoda::Parsers::Lst::ListIntParamRequestType

Public Instance Methods

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

  hash[:request_int_param] = request_int_param if has? 'lst:requestIntParam'
  hash[:request_int_param_attributes] = request_int_param_attributes if has? 'lst:requestIntParam'

  hash
end