# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct MessageEntry # { # uint64 messageID; # AccountID accountID; # string text<1000>; # uint64 lotID; # uint64 refMessageID; # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class MessageEntry < XDR::Struct include XDR::Namespace autoload :Ext attribute :message_id, Uint64 attribute :account_id, AccountID attribute :text, XDR::String[1000] attribute :lot_id, Uint64 attribute :ref_message_id, Uint64 attribute :ext, Ext end end