FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: receipt-options.md
# Receipt Options Describes receipt action fields. ## Structure `ReceiptOptions` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `paymentId` | `string` | Required | The reference to the Square payment ID for the receipt. | getPaymentId(): string | setPaymentId(string paymentId): void | | `printOnly` | `?bool` | Optional | Instructs the device to print the receipt without displaying the receipt selection screen.<br>Requires `printer_enabled` set to true.<br>Defaults to false. | getPrintOnly(): ?bool | setPrintOnly(?bool printOnly): void | | `isDuplicate` | `?bool` | Optional | Identify the receipt as a reprint rather than an original receipt.<br>Defaults to false. | getIsDuplicate(): ?bool | setIsDuplicate(?bool isDuplicate): void | ## Example (as JSON) ```json { "payment_id": "payment_id6", "print_only": false, "is_duplicate": false } ```
Save
Back