class Nis::Struct::ExplorerViewModelTransaction
@attr [Array <Nis::Struct::Transaction>] txes @attr [String] block @attr [String] hash @see nemproject.github.io/#explorerViewModelTransaction
Attributes
block[RW]
hash[RW]
txes[RW]
Public Class Methods
build(attrs)
click to toggle source
# File lib/nis/struct/explorer_view_model_transaction.rb, line 10 def self.build(attrs) attrs[:txes] = attrs[:txes].map { |tx| Transaction.build(tx) } attrs[:block] = Block.build(attrs[:block]) new(attrs) end