View Source StellarBase.XDR.Operations.PathPaymentStrictReceive (Elixir Stellar Base v0.16.0)

Representation of Stellar PathPaymentStrictReceive type.

Summary

Types

@type t() :: %StellarBase.XDR.Operations.PathPaymentStrictReceive{
  dest_amount: StellarBase.XDR.Int64.t(),
  dest_asset: StellarBase.XDR.Asset.t(),
  destination: StellarBase.XDR.MuxedAccount.t(),
  path: StellarBase.XDR.Assets.t(),
  send_asset: StellarBase.XDR.Asset.t(),
  send_max: StellarBase.XDR.Int64.t()
}

Functions

Link to this function

new(send_asset, send_max, destination, dest_asset, dest_amount, path)

View Source
@spec new(
  send_asset :: StellarBase.XDR.Asset.t(),
  send_max :: StellarBase.XDR.Int64.t(),
  destination :: StellarBase.XDR.MuxedAccount.t(),
  dest_asset :: StellarBase.XDR.Asset.t(),
  dest_amount :: StellarBase.XDR.Int64.t(),
  path :: StellarBase.XDR.Assets.t()
) :: t()