Sha256: b22745aedbfd2db3f7b024ea5008cd35548702c00a472c4aad47a386b23e7171
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct ClaimableBalanceEntry # { # // Unique identifier for this ClaimableBalanceEntry # ClaimableBalanceID balanceID; # # // List of claimants with associated predicate # Claimant claimants<10>; # # // Any asset including native # Asset asset; # # // Amount of asset # int64 amount; # # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class ClaimableBalanceEntry < XDR::Struct include XDR::Namespace autoload :Ext attribute :balance_id, ClaimableBalanceID attribute :claimants, XDR::VarArray[Claimant, 10] attribute :asset, Asset attribute :amount, Int64 attribute :ext, Ext end end
Version data entries
4 entries across 4 versions & 1 rubygems