PaymentOperationResponse constructor

PaymentOperationResponse(
  1. String amount,
  2. String assetType,
  3. String assetCode,
  4. String assetIssuer,
  5. KeyPair from,
  6. KeyPair to
)

Implementation

PaymentOperationResponse(String amount, String assetType, String assetCode,
    String assetIssuer, KeyPair from, KeyPair to) {
  this.amount = amount;
  this.assetType = assetType;
  this.assetCode = assetCode;
  this.assetIssuer = assetIssuer;
  this.from = from;
  this.to = to;
}