Sha256: b0bd45f9876f80ee88497e5e7b468ef1c84205d7205462113603243e9c823209
Contents?: true
Size: 701 Bytes
Versions: 11
Compression:
Stored size: 701 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 ============================================================ # # union BucketEntry switch (BucketEntryType type) # { # case LIVEENTRY: # LedgerEntry liveEntry; # # case DEADENTRY: # LedgerKey deadEntry; # }; # # =========================================================================== module Stellar class BucketEntry < XDR::Union switch_on BucketEntryType, :type switch :liveentry, :live_entry switch :deadentry, :dead_entry attribute :live_entry, LedgerEntry attribute :dead_entry, LedgerKey end end
Version data entries
11 entries across 11 versions & 1 rubygems