Sha256: 60bbdda49a166b47dcbe6b73ee69598c01789b6dfb04a003fff55d91409fe759
Contents?: true
Size: 979 Bytes
Versions: 2
Compression:
Stored size: 979 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct ClaimOfferAtom # { # // emited to identify the offer # AccountID offerOwner; // Account that owns the offer # uint64 offerID; # # // amount and currency taken from the owner # Currency currencyClaimed; # int64 amountClaimed; # # // amount and currencysent to the owner # Currency currencySend; # int64 amountSend; # }; # # =========================================================================== module Stellar class ClaimOfferAtom < XDR::Struct attribute :offer_owner, AccountID attribute :offer_id, Uint64 attribute :currency_claimed, Currency attribute :amount_claimed, Int64 attribute :currency_send, Currency attribute :amount_send, Int64 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.0.20 | generated/stellar/claim_offer_atom.rb |
stellar-base-0.0.19 | generated/stellar/claim_offer_atom.rb |