OBJECT

InvoicePayment

link GraphQL Schema definition

  • type InvoicePayment {
  • invoicePaymentId: Int
  • invoiceId: Int
  • amount: Float @deprecated( reason: "This field will no longer be used. Please use `currencyAmount.amount` instead" )
  • currencyId: Int @deprecated( reason: "This field will no longer be used. Please use `currencyAmount.currencyId` instead" )
  • currencyAmount: CurrencyAmount
  • paymentMethodTypeId: Int
  • processingFeeAmount: Float
  • datePaid: DateTime @deprecated( reason: "This field will no longer be used. Please use `paidAt` instead" )
  • paidAt: DateTime
  • created: DateTime
  • updated: DateTime
  • currency: Currency @deprecated( reason: "This field will no longer be used. Please use `currencyAmount.currency` instead" )
  • }