aboutsummaryrefslogtreecommitdiffstats
path: root/print.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-05-09 15:45:32 -0400
committerSam Anthony <sam@samanthony.xyz>2026-05-09 15:45:32 -0400
commit5319e2af4c4a11c90323db7359e8edced6edc1fc (patch)
treeb4bd6f09db3adf2d0174e175b466c59f445b0c9b /print.go
parent8e1e1b0b71cea0705bb2ab7ed9b4c25379b92a77 (diff)
downloadlulu-5319e2af4c4a11c90323db7359e8edced6edc1fc.zip
unmarshal /print-job-cost-calculations response
Diffstat (limited to 'print.go')
-rw-r--r--print.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/print.go b/print.go
deleted file mode 100644
index 829a5ef..0000000
--- a/print.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package lulu
-
-// printJobCostReq is the json body of a /print-job-cost-calculations/ request.
-type printJobCostReq struct {
- LineItems []CostCalcLineItem `json:"line_items"`
- ShipAddr ShippingAddress `json:"shipping_address"`
- ShipOpt ShippingLevel `json:"shipping_option"`
-}
-
-type CostCalcLineItem struct {
- NPages uint `json:"page_count"`
- Mfg PkgId `json:"pod_package_id"`
- Quantity uint
-}