Class: Nis::Struct::MultisigTransaction

Inherits:
Transaction show all
Defined in:
lib/nis/struct/multisig_transaction.rb

Instance Attribute Summary collapse

Attributes inherited from Transaction

#deadline, #fee, #signer, #timeStamp, #type, #version

Class Method Summary collapse

Methods included from Util::Assignable

#[], #initialize, #to_hash, #to_json

Instance Attribute Details

#other_accountString

Returns the current value of other_account.

Returns:

  • (String)

    the current value of other_account



4
5
6
# File 'lib/nis/struct/multisig_transaction.rb', line 4

def 
  @other_account
end

#other_hashString

Returns the current value of other_hash.

Returns:

  • (String)

    the current value of other_hash



4
5
6
# File 'lib/nis/struct/multisig_transaction.rb', line 4

def other_hash
  @other_hash
end

#otherTransObject Also known as: other_trans

Returns the value of attribute otherTrans.



5
6
7
# File 'lib/nis/struct/multisig_transaction.rb', line 5

def otherTrans
  @otherTrans
end

Class Method Details

.build(attrs) ⇒ Object



10
11
12
13
# File 'lib/nis/struct/multisig_transaction.rb', line 10

def self.build(attrs)
  attrs[:otherTrans] = Nis::Struct::TransactionMetaDataPair.build_transaction_struct(attrs[:otherTrans])
  new(attrs)
end