Class: Nis::Struct::MultisigTransaction
- Inherits:
-
Transaction
- Object
- Transaction
- Nis::Struct::MultisigTransaction
- Defined in:
- lib/nis/struct/multisig_transaction.rb
Instance Attribute Summary collapse
-
#other_account ⇒ String
The current value of other_account.
-
#other_hash ⇒ String
The current value of other_hash.
-
#otherTrans ⇒ Object
(also: #other_trans)
Returns the value of attribute otherTrans.
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_account ⇒ String
Returns the current value of other_account.
4 5 6 |
# File 'lib/nis/struct/multisig_transaction.rb', line 4 def other_account @other_account end |
#other_hash ⇒ String
Returns the current value of other_hash.
4 5 6 |
# File 'lib/nis/struct/multisig_transaction.rb', line 4 def other_hash @other_hash end |
#otherTrans ⇒ Object 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 |