generated/stellar/claim_offer_atom.rb in stellar-base-0.0.15 vs generated/stellar/claim_offer_atom.rb in stellar-base-0.0.16
- old
+ new
@@ -1,6 +1,6 @@
-# Automatically generated on 2015-05-13T15:00:04-07:00
+# Automatically generated on 2015-06-09T15:04:05-07:00
# DO NOT EDIT or your changes may be overwritten
require 'xdr'
# === xdr source ============================================================
@@ -13,17 +13,21 @@
#
# // amount and currency taken from the owner
# Currency currencyClaimed;
# int64 amountClaimed;
#
-# // should we also include the amount that the owner gets in return?
+# // 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