# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct CreateLotOp # { # string lotName<1000>; // name of the lot # uint32 type; # string32 lotCode; # string lotAddress<1000>; # uint32 lotBranch; # string lotLocation<1000>; # uint64 startPrice; # uint32 minStep; # uint32 maxStep; # uint64 published; # uint64 aucStarted; # uint64 duration; # uint64 pledge; # string details<1000>; # AccountID publisherID; # }; # # =========================================================================== module Stellar class CreateLotOp < XDR::Struct 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 :min_step, Uint32 attribute :max_step, Uint32 attribute :published, Uint64 attribute :auc_started, Uint64 attribute :duration, Uint64 attribute :pledge, Uint64 attribute :details, XDR::String[1000] attribute :publisher_id, AccountID end end