Sha256: 6b7b4720f9413308224b58267c4a90a79255dcabd250e1e81247b239e2903acd
Contents?: true
Size: 926 Bytes
Versions: 11
Compression:
Stored size: 926 Bytes
Contents
# Automatically generated on 2015-05-13T15:00:04-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct TrustLineEntry # { # AccountID accountID; // account this trustline belongs to # Currency currency; // currency (with issuer) # int64 balance; // how much of this currency the user has. # // Currency defines the unit for this; # # int64 limit; // balance cannot be above this # uint32 flags; // see TrustLineFlags # }; # # =========================================================================== module Stellar class TrustLineEntry < XDR::Struct attribute :account_id, AccountID attribute :currency, Currency attribute :balance, Int64 attribute :limit, Int64 attribute :flags, Uint32 end end
Version data entries
11 entries across 11 versions & 1 rubygems