diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 17:10:18 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 17:10:18 -0400 |
| commit | 7c33cabfb815ab46e777ea61748e1a4bf5830a22 (patch) | |
| tree | bbeec8cae92d8dd6282dd9f26b0f38d88ab481c9 /status.go | |
| parent | 5b6a50dfb8ea880c4ed77e55020dea3fd0c9a0a2 (diff) | |
| download | lulu-7c33cabfb815ab46e777ea61748e1a4bf5830a22.zip | |
add order ERROR status
Diffstat (limited to 'status.go')
| -rw-r--r-- | status.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ const ( OrderDelivered OrderStatus = "DELIVERED" // Print-Job has been delivered by the carrier. This is supported by USPS, FedEx, and UPS. OrderRejected OrderStatus = "REJECTED" // When there is a problem with the input data or the file, Lulu will reject a Print-Job with a detailed error message. Please contact our experts if you need help in resolving this issue. OrderCanceled OrderStatus = "CANCELED" // You can cancel a Print-Job as long as it is “unpaid” using an API request to the status endpoint. In rare cases, Lulu might also cancel a Print-Job if a problem has surfaced in production and the order cannot be fulfilled. + OrderError OrderStatus = "ERROR" ) type ItemStatus string |