module Braintree::Xml

Constants

CONTENT_ROOT

Public Class Methods

hash_from_xml(xml) click to toggle source
# File lib/braintree/xml.rb, line 3
def self.hash_from_xml(xml)
  Parser.hash_from_xml(xml)
end
hash_to_xml(hash) click to toggle source
# File lib/braintree/xml.rb, line 7
def self.hash_to_xml(hash)
  Generator.hash_to_xml(hash)
end