diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-08 17:44:16 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-08 17:44:16 -0400 |
| commit | 8e1e1b0b71cea0705bb2ab7ed9b4c25379b92a77 (patch) | |
| tree | 130a8e83d94ceef4a239336a32fa1a8b9ee7f697 /cover.go | |
| parent | ace7694bad5752aa38fec3a13c071cf7b2bebfce (diff) | |
| download | lulu-8e1e1b0b71cea0705bb2ab7ed9b4c25379b92a77.zip | |
shipping address and speed
Diffstat (limited to 'cover.go')
| -rw-r--r-- | cover.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,7 +38,7 @@ func (s CoverValidationStatus) IsFinal() bool { // coverDimensionsReq is the json body of a /cover-dimensions/ request. type coverDimensionsReq struct { - PkgId PkgId `json:"pod_package_id"` + Mfg PkgId `json:"pod_package_id"` NPages uint `json:"interior_page_count"` Unit Unit `json:"unit"` } @@ -46,7 +46,7 @@ type coverDimensionsReq struct { // validateCoverReq is the json body of a /validate-cover/ request. type validateCoverReq struct { SrcUrl string `json:"source_url"` - PkgId PkgId `json:"pod_package_id"` + Mfg PkgId `json:"pod_package_id"` NPages uint `json:"interior_page_count"` } |