Sha256: 60b808628ce501955b9b97ded064d5682edebce32fe44866ebc3a7f22e4bd2bc
Contents?: true
Size: 892 Bytes
Versions: 9
Compression:
Stored size: 892 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct AccountEntryExtensionV2 # { # uint32 numSponsored; # uint32 numSponsoring; # SponsorshipDescriptor signerSponsoringIDs<MAX_SIGNERS>; # # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class AccountEntryExtensionV2 < XDR::Struct include XDR::Namespace autoload :Ext attribute :num_sponsored, Uint32 attribute :num_sponsoring, Uint32 attribute :signer_sponsoring_i_ds, XDR::VarArray[SponsorshipDescriptor, MAX_SIGNERS] attribute :ext, Ext end end
Version data entries
9 entries across 9 versions & 1 rubygems