Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
32 lines (20 loc) · 1.4 KB

Refund.md

File metadata and controls

32 lines (20 loc) · 1.4 KB

SquareConnect.Refund

Properties

Name Type Description Notes
id String The refund's unique ID.
location_id String The ID of the refund's associated location.
transaction_id String The ID of the transaction that the refunded tender is part of.
tender_id String The ID of the refunded tender.
created_at String The time when the refund was created, in RFC 3339 format. [optional]
reason String The reason for the refund being issued.
amount_money Money The amount of money refunded to the buyer.
status String The current status of the refund (`PENDING`, `APPROVED`, `REJECTED`, or `FAILED`).
processing_fee_money Money The amount of Square processing fee money refunded to the merchant. [optional]
additional_recipients [AdditionalRecipient] Additional recipients (other than the merchant) receiving a portion of this refund. For example, fees assessed on a refund of a purchase by a third party integration. [optional]

Enum: StatusEnum

  • PENDING (value: "PENDING")

  • APPROVED (value: "APPROVED")

  • REJECTED (value: "REJECTED")

  • FAILED (value: "FAILED")