Sha256: df8f8084662735b4d054edce4d585f9816eaeef8f91e3ff8a0c3d89ecab9e790
Contents?: true
Size: 933 Bytes
Versions: 18
Compression:
Stored size: 933 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct ClaimOfferAtom # { # // emitted to identify the offer # AccountID sellerID; // Account that owns the offer # int64 offerID; # # // amount and asset taken from the owner # Asset assetSold; # int64 amountSold; # # // amount and asset sent to the owner # Asset assetBought; # int64 amountBought; # }; # # =========================================================================== module Stellar class ClaimOfferAtom < XDR::Struct attribute :seller_id, AccountID attribute :offer_id, Int64 attribute :asset_sold, Asset attribute :amount_sold, Int64 attribute :asset_bought, Asset attribute :amount_bought, Int64 end end
Version data entries
18 entries across 18 versions & 1 rubygems