generated/stellar/claim_offer_atom.rb in stellar-base-0.1.4 vs generated/stellar/claim_offer_atom.rb in stellar-base-0.2.0
- old
+ new
@@ -6,28 +6,28 @@
# === xdr source ============================================================
#
# struct ClaimOfferAtom
# {
# // emited to identify the offer
-# AccountID offerOwner; // Account that owns the offer
+# AccountID sellerID; // Account that owns the offer
# uint64 offerID;
#
# // amount and asset taken from the owner
-# Asset assetClaimed;
-# int64 amountClaimed;
+# Asset assetSold;
+# int64 amountSold;
#
-# // amount and assetsent to the owner
-# Asset assetSend;
-# int64 amountSend;
+# // amount and asset sent to the owner
+# Asset assetBought;
+# int64 amountBought;
# };
#
# ===========================================================================
module Stellar
class ClaimOfferAtom < XDR::Struct
- attribute :offer_owner, AccountID
- attribute :offer_id, Uint64
- attribute :asset_claimed, Asset
- attribute :amount_claimed, Int64
- attribute :asset_send, Asset
- attribute :amount_send, Int64
+ 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