module KayakoClient::XMLBackend

Public Class Methods

new(document) click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 19
def initialize(document)
    raise NotImplementedError, "not implemented"
end

Public Instance Methods

count() click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 23
def count
    raise NotImplementedError, "not implemented"
end
each(&block) click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 27
def each(&block)
    raise NotImplementedError, "not implemented"
end
error() click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 47
def error
    @error || nil
end
error?() click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 39
def error?
    defined?(@error)
end
notice() click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 43
def notice
    @notice || nil
end
notice?() click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 35
def notice?
    defined?(@notice)
end
to_hash(root = nil) click to toggle source
# File lib/kayako_client/xml/xml_backend.rb, line 31
def to_hash(root = nil)
    raise NotImplementedError, "not implemented"
end