class Pohoda::Parsers::LCen::ListRequestCentreType

Public Instance Methods

request_centre() click to toggle source
# File lib/pohoda/parsers/l_cen/list_request_centre_type.rb, line 7
def request_centre
  at 'lCen:requestCentre'
end
request_centre_attributes() click to toggle source
# File lib/pohoda/parsers/l_cen/list_request_centre_type.rb, line 11
def request_centre_attributes
  attributes_at 'lCen:requestCentre'
end
to_h() click to toggle source
# File lib/pohoda/parsers/l_cen/list_request_centre_type.rb, line 15
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:request_centre] = request_centre if has? 'lCen:requestCentre'
  hash[:request_centre_attributes] = request_centre_attributes if has? 'lCen:requestCentre'

  hash
end