class Sumac::Message::Exchange::Base

Public Class Methods

from_json_structure(connection, json_structure) click to toggle source
# File lib/sumac/message/exchange/base.rb, line 6
def self.from_json_structure(connection, json_structure)
  object = new(connection)
  object.parse_json_structure(json_structure)
  object
end