Sha256: 06e46bcac717581768ad6663be7d87e462a4a1ef35b158fa73a5b78b9e8be3a2
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct PathPaymentStrictSendOp # { # Asset sendAsset; // asset we pay with # int64 sendAmount; // amount of sendAsset to send (excluding fees) # # AccountID destination; // recipient of the payment # Asset destAsset; // what they end up with # int64 destMin; // the minimum amount of dest asset to # // be received # // The operation will fail if it can't be met # # Asset path<5>; // additional hops it must go through to get there # }; # # =========================================================================== module Stellar class PathPaymentStrictSendOp < XDR::Struct attribute :send_asset, Asset attribute :send_amount, Int64 attribute :destination, AccountID attribute :dest_asset, Asset attribute :dest_min, Int64 attribute :path, XDR::VarArray[Asset, 5] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.22.0 | generated/stellar/path_payment_strict_send_op.rb |
stellar-base-0.21.0 | generated/stellar/path_payment_strict_send_op.rb |