Class PaymentOp

java.lang.Object
org.stellar.sdk.xdr.PaymentOp
All Implemented Interfaces:
XdrElement

public class PaymentOp extends Object implements XdrElement
PaymentOp's original definition in the XDR file is:
 struct PaymentOp
 {
     MuxedAccount destination; // recipient of the payment
     Asset asset;              // what they end up with
     int64 amount;             // amount they end up with
 };
 
  • Constructor Details

    • PaymentOp

      public PaymentOp()
    • PaymentOp

      public PaymentOp(MuxedAccount destination, Asset asset, Int64 amount)
      Creates a new PaymentOp instance.
      Parameters:
      destination - the destination field value
      asset - the asset field value
      amount - the amount field value
  • Method Details