Sha256: 0e0faee3a9dccf7093f27e6d8177ab3f67d706ccae35b0f999cfb8d1d4f263af
Contents?: true
Size: 700 Bytes
Versions: 12
Compression:
Stored size: 700 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct CreatePassiveSellOfferOp # { # Asset selling; // A # Asset buying; // B # int64 amount; // amount taker gets. if set to 0, delete the offer # Price price; // cost of A in terms of B # }; # # =========================================================================== module Stellar class CreatePassiveSellOfferOp < XDR::Struct attribute :selling, Asset attribute :buying, Asset attribute :amount, Int64 attribute :price, Price end end
Version data entries
12 entries across 12 versions & 1 rubygems