Sha256: e1ace27356b934dd99b7402196b1b2d129df76d7986b950fce1d77d1c880570a

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 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;
#       case DATA:
#           DataEntry data;
#       case CLAIMABLE_BALANCE:
#           ClaimableBalanceEntry claimableBalance;
#       }
#       data;
#   
#       // reserved for future use
#       union switch (int v)
#       {
#       case 0:
#           void;
#       case 1:
#           LedgerEntryExtensionV1 v1;
#       }
#       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

7 entries across 7 versions & 1 rubygems

Version Path
stellar-base-0.29.0 generated/stellar/ledger_entry.rb
stellar-base-0.28.0 generated/stellar/ledger_entry.rb
stellar-base-0.27.0 generated/stellar/ledger_entry.rb
stellar-base-0.26.0 generated/stellar/ledger_entry.rb
stellar-base-0.25.0 generated/stellar/ledger_entry.rb
stellar-base-0.24.0 generated/stellar/ledger_entry.rb
stellar-base-0.24.0.pre.1 generated/stellar/ledger_entry.rb