Sha256: e79abb4a6088162cdc26b679ed371aa52fda6925f9ee1fe0f4edf534c5c1394b

Contents?: true

Size: 879 Bytes

Versions: 8

Compression:

Stored size: 879 Bytes

Contents

# Automatically generated on 2015-05-13T15:00:04-07:00
# 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;
#   
#       // should we also include the amount that the owner gets in return?
#   };
#
# ===========================================================================
module Stellar
  class ClaimOfferAtom < XDR::Struct
    attribute :offer_owner,      AccountID
    attribute :offer_id,         Uint64
    attribute :currency_claimed, Currency
    attribute :amount_claimed,   Int64
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
stellar-base-0.0.15 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.14 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.13 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.12 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.11 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.10 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.9 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.8 generated/stellar/claim_offer_atom.rb