Sha256: e8c71e501c35cb7c5e336240366d90e20bc9acf62ddb8f71aa5b7ccb7ecd343e
Contents?: true
Size: 1.1 KB
Versions: 15
Compression:
Stored size: 1.1 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct PathPaymentStrictReceiveOp # { # Asset sendAsset; // asset we pay with # int64 sendMax; // the maximum amount of sendAsset to # // send (excluding fees). # // The operation will fail if can't be met # # MuxedAccount destination; // recipient of the payment # Asset destAsset; // what they end up with # int64 destAmount; // amount they end up with # # Asset path<5>; // additional hops it must go through to get there # }; # # =========================================================================== module Stellar class PathPaymentStrictReceiveOp < XDR::Struct attribute :send_asset, Asset attribute :send_max, Int64 attribute :destination, MuxedAccount attribute :dest_asset, Asset attribute :dest_amount, Int64 attribute :path, XDR::VarArray[Asset, 5] end end
Version data entries
15 entries across 15 versions & 1 rubygems