OBJECT

RefundRequestNote

Note on a refund request

link GraphQL Schema definition

  • type RefundRequestNote implements Node {
  • # The admin who recorded the note.
  • admin: Admin
  • # Receipts, documentation or photos related to the package received.
  • attachments: [Image!]!
  • id: ID!
  • # IP address of the person adding this note.
  • ipAddress: String
  • # When this note was recorded, the status that the refund request or refund
  • # request line item was transitioned to.
  • newStatus: RefundRequestNoteStatusEnum!
  • # Text of the note.
  • note: String
  • # The refund request for which this is a note.
  • refundRequest: RefundRequest!
  • # The refund request line item for which this is a note.
  • refundRequestLineItem: RefundRequestLineItem
  • # Timestamp of when this note was recorded
  • timestamp: ISO8601DateTime!
  • # The customer who recorded the note.
  • user: User
  • }