Sha256: 5cafe74029f4df402634ba87c52ed710d525a36a2fc73054c59e70f329b3bfde

Contents?: true

Size: 1.02 KB

Versions: 11

Compression:

Stored size: 1.02 KB

Contents

# This code was automatically generated using xdrgen
# DO NOT EDIT or your changes may be overwritten

require 'xdr'

# === xdr source ============================================================
#
#   struct LedgerEntry
#   {
#       uint32 lastModifiedLedgerSeq; // ledger the LedgerEntry was last changed
#   
#       union switch (LedgerEntryType type)
#       {
#       case ACCOUNT:
#           AccountEntry account;
#       case TRUSTLINE:
#           TrustLineEntry trustLine;
#       case OFFER:
#           OfferEntry offer;
#       }
#       data;
#   
#       // reserved for future use
#       union switch (int v)
#       {
#       case 0:
#           void;
#       }
#       ext;
#   };
#
# ===========================================================================
module Stellar
  class LedgerEntry < XDR::Struct
    include XDR::Namespace

    autoload :Data
    autoload :Ext

    attribute :last_modified_ledger_seq, Uint32
    attribute :data,                     Data
    attribute :ext,                      Ext
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
stellar-base-0.10.0 generated/stellar/ledger_entry.rb
stellar-base-0.9.0 generated/stellar/ledger_entry.rb
stellar-base-0.8.0 generated/stellar/ledger_entry.rb
stellar-base-0.7.0 generated/stellar/ledger_entry.rb
stellar-base-0.6.1 generated/stellar/ledger_entry.rb
stellar-base-0.6.0 generated/stellar/ledger_entry.rb
stellar-base-0.5.0 generated/stellar/ledger_entry.rb
stellar-base-0.4.0 generated/stellar/ledger_entry.rb
open-core-0.3.0 generated/stellar/ledger_entry.rb
stellar-base-0.3.0 generated/stellar/ledger_entry.rb
stellar-base-0.2.0 generated/stellar/ledger_entry.rb