Sha256: 99bb8d9b08e86dcb64c618e20296e7bed0dc5be3093595f1ae5875f94a79bedc

Contents?: true

Size: 943 Bytes

Versions: 5

Compression:

Stored size: 943 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 asset taken from the owner
#       Asset assetClaimed;
#       int64 amountClaimed;
#   
#       // amount and assetsent to the owner
#       Asset assetSend;
#       int64 amountSend;
#   };
#
# ===========================================================================
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
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stellar-base-0.1.4 generated/stellar/claim_offer_atom.rb
stellar-base-0.1.3 generated/stellar/claim_offer_atom.rb
stellar-base-0.1.2 generated/stellar/claim_offer_atom.rb
stellar-base-0.1.1 generated/stellar/claim_offer_atom.rb
stellar-base-0.1.0 generated/stellar/claim_offer_atom.rb