Sha256: e43be2cb6eb928e0b8f49a25b214501a11ae8ee7badeee6944055b9e87798ed1
Contents?: true
Size: 974 Bytes
Versions: 17
Compression:
Stored size: 974 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # union switch (LedgerEntryType type) # { # case ACCOUNT: # AccountEntry account; # case TRUSTLINE: # TrustLineEntry trustLine; # case OFFER: # OfferEntry offer; # case DATA: # DataEntry data; # } # # =========================================================================== module Stellar class LedgerEntry class Data < XDR::Union switch_on LedgerEntryType, :type switch :account, :account switch :trustline, :trust_line switch :offer, :offer switch :data, :data attribute :account, AccountEntry attribute :trust_line, TrustLineEntry attribute :offer, OfferEntry attribute :data, DataEntry end end end
Version data entries
17 entries across 17 versions & 1 rubygems