INPUT_OBJECT

RefundRequestApproveInput

link GraphQL Schema definition

  • input RefundRequestApproveInput {
  • # The ID of the refund request to be approved. Supply only refund requests with
  • # status PROCESSED.
  • refundRequestId: ID!
  • # An optional input field allowing the storage of both a text string comment and
  • # attachments.
  • note: RefundRequestNoteInput
  • # LineItemPriceBreakdowns should be used if you intend to provide a price
  • # breakdown for all elements of that
  • #
  • # line item, otherwise don't supply this object and default values from the
  • # original invoice will be used
  • #
  • # for lineItems that are not provided.
  • lineItemPriceBreakdowns: [RefundRequestLineItemApproveInput!]
  • # To be used when creating new custom line items that are not associated with an
  • # invoice line item.
  • newCustomLineItemPriceBreakdowns: [RefundRequestCustomLineItemApproveInput!]
  • }