Claim Offer Atom Xdr
data class ClaimOfferAtomXdr(val sellerId: AccountIDXdr, val offerId: Int64Xdr, val assetSold: AssetXdr, val amountSold: Int64Xdr, val assetBought: AssetXdr, val amountBought: Int64Xdr)
XDR Source: struct ClaimOfferAtom { // emitted to identify the offer AccountID sellerID; // Account that owns the offer int64 offerID;
// amount and asset taken from the owner
Asset assetSold;
int64 amountSold;
// amount and asset sent to the owner
Asset assetBought;
int64 amountBought;Content copied to clipboard
};