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 }