Sha256: ea782abde80c4095ee115bebc94fb9edc5237692d387aa58ad19097a7ed8f469
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct LotEntry # { # AccountID organizerID; # uint64 lotID; # string lotName<1000>; # uint32 type; # string32 lotCode; # string lotAddress<1000>; # uint32 lotBranch; # string lotLocation<1000>; # uint64 startPrice; # uint64 bestPrice; # uint32 minStep; # uint32 maxStep; # uint64 published; # uint64 aucStarted; # uint64 duration; # uint64 pledge; # AccountID publisherID; # string details<1000>; # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class LotEntry < XDR::Struct include XDR::Namespace autoload :Ext attribute :organizer_id, AccountID attribute :lot_id, Uint64 attribute :lot_name, XDR::String[1000] attribute :type, Uint32 attribute :lot_code, String32 attribute :lot_address, XDR::String[1000] attribute :lot_branch, Uint32 attribute :lot_location, XDR::String[1000] attribute :start_price, Uint64 attribute :best_price, Uint64 attribute :min_step, Uint32 attribute :max_step, Uint32 attribute :published, Uint64 attribute :auc_started, Uint64 attribute :duration, Uint64 attribute :pledge, Uint64 attribute :publisher_id, AccountID attribute :details, XDR::String[1000] attribute :ext, Ext end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
auction-ruby-base-0.1.3 | generated/stellar/lot_entry.rb |
auction-ruby-base-0.1.2 | generated/stellar/lot_entry.rb |
auction-ruby-base-0.1.1 | generated/stellar/lot_entry.rb |