Sha256: 25c3f78039fe0b44adba3d7fa0d1d51923b66b67d4444d4d7dee46ba9ff44d75

Contents?: true

Size: 879 Bytes

Versions: 2

Compression:

Stored size: 879 Bytes

Contents

# Automatically generated on 2015-04-26T19:13:29-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

2 entries across 2 versions & 1 rubygems

Version Path
stellar-base-0.0.3 generated/stellar/claim_offer_atom.rb
stellar-base-0.0.2 generated/stellar/claim_offer_atom.rb