Sha256: 284f14fbf92b3769cfa9357c73a52e346485e5c5cdb38301a31fd04f6afd00b1
Contents?: true
Size: 1.1 KB
Versions: 21
Compression:
Stored size: 1.1 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct TrustLineEntry # { # AccountID accountID; // account this trustline belongs to # Asset asset; // type of asset (with issuer) # int64 balance; // how much of this asset the user has. # // Asset defines the unit for this; # # int64 limit; // balance cannot be above this # uint32 flags; // see TrustLineFlags # # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class TrustLineEntry < XDR::Struct include XDR::Namespace autoload :Ext attribute :account_id, AccountID attribute :asset, Asset attribute :balance, Int64 attribute :limit, Int64 attribute :flags, Uint32 attribute :ext, Ext end end
Version data entries
21 entries across 21 versions & 3 rubygems