OBJECT

RemittanceAdvice

Remittance advice

link GraphQL Schema definition

  • type RemittanceAdvice implements Node {
  • # Supporting documents relating to actions taken on the remittance advice.
  • attachments: [Image!]!
  • # The total value of the commission within this remittance advice. Denominated in
  • # cents.
  • commissionAmountTotalCents: Int
  • # The total value of the commission within this remittance advice. In string with
  • # currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • commissionAmountTotalFormatted(currency: String): String
  • # The date the remittance advice was created.
  • createdAt: ISO8601DateTime
  • id: ID!
  • # The id used to identify the remittance advice.
  • legacyId: Int!
  • # The date the remittance advice was paid.
  • paidAt: ISO8601DateTime
  • # External payment reference for the payment of the remittance advice.
  • paymentReference: String
  • remittanceActions: [RemittanceAction!]!
  • remittances: [Remittance!]!
  • seller: Seller!
  • # The total amount of the remittance advice Denominated in cents.
  • totalCents: Int!
  • # The total amount of the remittance advice In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • totalFormatted(currency: String): String!
  • # The total amount paid on the remittance advice Denominated in cents.
  • totalPaidCents: Int
  • # The total amount paid on the remittance advice In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • totalPaidFormatted(currency: String): String
  • }