Sha256: b7a4bb3c0077c0412bdaa168c108c585fef93d2f9b51512a838ae8c1356b202c

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

# 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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
auction-ruby-base-0.1.3 generated/stellar/create_lot_op.rb
auction-ruby-base-0.1.2 generated/stellar/create_lot_op.rb
auction-ruby-base-0.1.1 generated/stellar/create_lot_op.rb