Sha256: bd62bb6d30e3fa2846d662868b55f3b7c03fc124b64aa5da78471aebc511565f
Contents?: true
Size: 810 Bytes
Versions: 27
Compression:
Stored size: 810 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct DataEntry # { # AccountID accountID; // account this data belongs to # string64 dataName; # DataValue dataValue; # # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class DataEntry < XDR::Struct include XDR::Namespace autoload :Ext attribute :account_id, AccountID attribute :data_name, String64 attribute :data_value, DataValue attribute :ext, Ext end end
Version data entries
27 entries across 27 versions & 1 rubygems