OBJECT

Payment

link GraphQL Schema definition

  • type Payment implements History {
  • id: ID!
  • # Transaction id that this operation is part of
  • transaction_hash: String!
  • # Public key for the source account
  • source_account: String!
  • # Type of history
  • type: String!
  • # Timestamp when the payment was created
  • created_at: Date!
  • # Type of asset
  • asset_type: String!
  • # Alphanumeric code that uniquely identifies the asset
  • asset_code: String
  • # Public key of the acount that issued the asset
  • asset_issuer: String
  • # Public key of the sender of the payment
  • from: String!
  • # Public key of the receiver of the payment
  • to: String!
  • # Amount of the payment
  • amount: String!
  • # Memo attached to the transaction
  • memo: String
  • }

link Require by

This element is not required by anyone