Sha256: c517be93bfd5d9c95785768077d5d4d85d6b83ec6c8cd2286c0dddc676006484
Contents?: true
Size: 834 Bytes
Versions: 1
Compression:
Stored size: 834 Bytes
Contents
# Automatically generated on 2015-04-07T10:52:07-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct AllowTrustOp # { # AccountID trustor; # union switch (CurrencyType type) # { # // NATIVE is not allowed # case ISO4217: # opaque currencyCode[4]; # # // add other currency types here in the future # } # currency; # # bool authorize; # }; # # =========================================================================== module Stellar class AllowTrustOp < XDR::Struct include XDR::Namespace autoload :Currency attribute :trustor, AccountID attribute :currency, Currency attribute :authorize, XDR::Bool end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.0.1 | generated/stellar/allow_trust_op.rb |