Sha256: 20232d1d296b077caa188e0ef3fc260866bac9dbb097da81c1a168fe7fba7cee

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 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;
#       case 1:
#           ClaimableBalanceEntryExtensionV1 v1;
#       }
#       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

6 entries across 6 versions & 1 rubygems

Version Path
stellar-base-0.32.0 generated/stellar/claimable_balance_entry.rb
stellar-base-0.31.0 generated/stellar/claimable_balance_entry.rb
stellar-base-0.30.0 generated/stellar/claimable_balance_entry.rb
stellar-base-0.29.0 generated/stellar/claimable_balance_entry.rb
stellar-base-0.28.0 generated/stellar/claimable_balance_entry.rb
stellar-base-0.27.0 generated/stellar/claimable_balance_entry.rb