44uk/nis-ruby

View on GitHub
lib/nis/struct/multisig_signature_transaction.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Nis::Struct
  # @attr [String] other_hash
  # @attr [String] other_account
  class MultisigSignatureTransaction < Transaction
    attr_accessor :otherHash, :otherAccount

    alias :other_hash :otherHash
    alias :other_hash= :otherHash=
    alias :other_account :otherAccount
    alias :other_account= :otherAccount=
  end
end