diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-11 16:45:09 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-11 16:45:09 -0400 |
| commit | 329257be8d9fb05d3dcea49823acea0f878ed52c (patch) | |
| tree | 8d51639a3fd9184e1c56fa0f11dc614230fe7d38 /cost.go | |
| parent | 6f2c582f691c6984d5296b714ae41477a102a77b (diff) | |
| download | lulu-329257be8d9fb05d3dcea49823acea0f878ed52c.zip | |
validate email and phone number
Diffstat (limited to 'cost.go')
| -rw-r--r-- | cost.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -19,12 +19,12 @@ type PrintJobCostLineItem struct { } type printJobCostReqShipAddr struct { - City string `json:"city"` - Country string `json:"country_code"` - PostCode string `json:"postcode"` - State string `json:"state_code"` - Street1 string `json:"street1"` - Phone string `json:"phone_number"` + City string `json:"city"` + Country string `json:"country_code"` + PostCode string `json:"postcode"` + State string `json:"state_code"` + Street1 string `json:"street1"` + Phone PhoneNumber `json:"phone_number"` } // PrintJobCost is the response from /print-job-cost-calculations/. |