class Nem::Model::NodeMetadata
Attributes
application[R]
features[R]
network[R]
network_id[R]
platform[R]
version[R]
Public Class Methods
new_from_metadata(hash)
click to toggle source
# File lib/nem/model/node.rb, line 13 def self.new_from_metadata(hash) new( features: hash[:features], application: hash[:application], network_id: hash[:networkId], version: hash[:version], platform: hash[:platform] ) end