From 329257be8d9fb05d3dcea49823acea0f878ed52c Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Mon, 11 May 2026 16:45:09 -0400 Subject: validate email and phone number --- cost.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cost.go') diff --git a/cost.go b/cost.go index ab605ce..c0d340a 100644 --- a/cost.go +++ b/cost.go @@ -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/. -- cgit v1.2.3