OBJECT

PathPaymentOperation

link GraphQL Schema definition

  • type PathPaymentOperation implements Operation {
  • # Operation id, assigned by Horizon
  • id: String!
  • type: OperationType!
  • # Account on which behalf operation was executed
  • sourceAccount: Account!
  • # When operations was executed
  • dateTime: DateTime!
  • # Transaction that contains this operation
  • transaction: Transaction!
  • # Max send amount
  • sendMax: String!
  • # Amount of `sourceAsset` sent by the source account. Can be empty for the failed
  • # transaction
  • amountSent: String
  • # Amount of `destinationAsset` received by the destination account. Can be empty
  • # for the failed transaction
  • amountReceived: String
  • # What asset sender wants receiver to receive in the end
  • destinationAsset: Asset!
  • # What asset sender wants to send
  • sourceAsset: Asset!
  • # Payment receiver account
  • destinationAccount: Account!
  • # The assets (other than send asset and destination asset) involved in the offers
  • # the path takes
  • path: [Asset]
  • }

link Require by

This element is not required by anyone