Sha256: 8af703686418f83e6cc04736ee31979443bc5d8833088724fae4f2f09a8c3919
Contents?: true
Size: 935 Bytes
Versions: 14
Compression:
Stored size: 935 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 # uint64 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, Uint64 attribute :asset_sold, Asset attribute :amount_sold, Int64 attribute :asset_bought, Asset attribute :amount_bought, Int64 end end
Version data entries
14 entries across 14 versions & 2 rubygems