-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresponse.go
399 lines (347 loc) · 12.1 KB
/
response.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
package ups
type TrackResponse struct {
Response struct {
ResponseStatusCode string `xml:"ResponseStatusCode"`
ResponseStatusDescription string `xml:"ResponseStatusDescription"`
TransactionReference struct {
CustomerContext string `xml:"CustomerContext"`
XpciVersion string `xml:"XpciVersion"`
} `xml:"TransactionReference"`
Error struct {
ErrorSeverity string `xml:"ErrorSeverity"`
ErrorCode string `xml:"ErrorCode"`
ErrorDescription string `xml:"ErrorDescription"`
MinimumRetrySeconds string `xml:"MinimumRetrySeconds"`
ErrorDigest string `xml:"ErrorDigest"`
ErrorLocation struct {
ErrorLocationElementName string `xml:"ErrorLocationElementName"`
ErrorLocationAttributeName string `xml:"ErrorLocationAttributeName"`
} `xml:"ErrorLocation"`
} `xml:"Error"`
} `xml:"Response"`
Shipment Shipment `xml:"Shipment"`
}
type Shipment struct {
ShipmentIdentificationNumber string `xml:"ShipmentIdentificationNumber"`
CandidateBookmark string `xml:"CandidateBookmark"`
PickupDate string `xml:"PickupDate"`
BillToName string `xml:"BillToName"`
NumberOfPieces string `xml:"NumberOfPieces"`
NumberOfPallets string `xml:"NumberOfPallets"`
SignedForByName string `xml:"SignedForByName"`
DescriptionOfGoods string `xml:"DescriptionOfGoods"`
GraphicImage string `xml:"GraphicImage"`
ScheduledDeliveryDate string `xml:"ScheduledDeliveryDate"`
ScheduledDeliveryTime string `xml:"ScheduledDeliveryTime"`
FileNumber string `xml:"FileNumber"`
ReferenceNumber struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
Value string `xml:"Value"`
} `xml:"ReferenceNumber"`
CurrentStatus struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"CurrentStatus"`
InquiryNumber struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
Value string `xml:"Value"`
} `xml:"InquiryNumber"`
ShipmentType struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"ShipmentType"`
Shipper Shipper `xml:"Shipper"`
ShipTo ShipTo `xml:"ShipTo"`
ShipmentWeight struct {
Weight string `xml:"Weight"`
UnitOfMeasurement struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"UnitOfMeasurement"`
} `xml:"ShipmentWeight"`
DeliveryDetails struct {
DeliveryDate struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"DeliveryDate"`
ServiceCenter struct {
City string `xml:"City"`
StateProvinceCode string `xml:"StateProvinceCode"`
} `xml:"ServiceCenter"`
} `xml:"DeliveryDetails"`
DeliveryDateTime struct {
Date string `xml:"Date"`
Type struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"Type"`
} `xml:"DeliveryDateTime"`
Volume struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
Value string `xml:"Value"`
} `xml:"Volume"`
PickUpServiceCenter struct {
City string `xml:"City"`
StateProvinceCode string `xml:"StateProvinceCode"`
} `xml:"PickUpServiceCenter"`
ShipmentServiceOptions struct {
COD struct {
CODAmount struct {
CurrencyCode string `xml:"CurrencyCode"`
MonetaryValue string `xml:"MonetaryValue"`
} `xml:"CODAmount"`
} `xml:"COD"`
} `xml:"ShipmentServiceOptions"`
EstimatedDeliveryDetails struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
ServiceCenter struct {
City string `xml:"City"`
StateProvinceCode string `xml:"StateProvinceCode"`
} `xml:"ServiceCenter"`
} `xml:"EstimatedDeliveryDetails"`
Service struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"Service"`
Activity struct {
Description string `xml:"Description"`
Date string `xml:"Date"`
Time string `xml:"Time"`
Trailer string `xml:"Trailer"`
ActivityLocation struct {
Address struct {
City string `xml:"City"`
PostalCode string `xml:"PostalCode"`
StateProvinceCode string `xml:"StateProvinceCode"`
CountryCode string `xml:"CountryCode"`
} `xml:"Address"`
} `xml:"ActivityLocation"`
} `xml:"Activity"`
OriginPortDetails struct {
OriginPort string `xml:"OriginPort"`
EstimatedDeparture struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"EstimatedDeparture"`
} `xml:"OriginPortDetails"`
DestinationPortDetails struct {
DestinationPort string `xml:"DestinationPort"`
EstimatedArrival struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"EstimatedArrival"`
} `xml:"DestinationPortDetails"`
CargoReady struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"CargoReady"`
Manifest struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"Manifest"`
CarrierActivityInformation struct {
CarrierId string `xml:"CarrierId"`
Description string `xml:"Description"`
Status string `xml:"Status"`
OriginPort string `xml:"OriginPort"`
DestinationPort string `xml:"DestinationPort"`
Arrival struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"Arrival"`
Departure struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"Departure"`
} `xml:"CarrierActivityInformation"`
Document struct {
Type struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"Type"`
Format struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"Format"`
} `xml:"Document"`
DeliveryDateUnavailable struct {
Type string `xml:"Type"`
Description string `xml:"Description"`
} `xml:"DeliveryDateUnavailable"`
Appointment struct {
BeginTime string `xml:"BeginTime"`
EndTime string `xml:"EndTime"`
Made struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"Made"`
Requested struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"Requested"`
} `xml:"Appointment"`
Package Package `xml:"Package"`
}
type ShipTo struct {
Address Address `xml:"Address"`
}
type Shipper struct {
ShipperNumber string `xml:"ShipperNumber"`
Address Address `xml:"Address"`
}
type Package struct {
TrackingNumber string `xml:"TrackingNumber"`
DeliveryIndicator string `xml:"DeliveryIndicator"`
DeliveryDate string `xml:"DeliveryDate"`
RescheduledDeliveryDate string `xml:"RescheduledDeliveryDate"`
RescheduledDeliveryTime string `xml:"RescheduledDeliveryTime"`
SRSizeCode string `xml:"SRSizeCode"`
Redirect struct {
CompanyName string `xml:"CompanyName"`
LocationID string `xml:"LocationID"`
PickupDate string `xml:"PickupDate"`
UPSAPAddress Address `xml:"UPSAPAddress"`
} `xml:"Redirect"`
Reroute struct {
Address Address `xml:"Address"`
} `xml:"Reroute"`
ReturnTo struct {
Address Address `xml:"Address"`
} `xml:"ReturnTo"`
PackageServiceOptions struct {
ImportControl string `xml:"ImportControl"`
CommercialInvoiceRemoval string `xml:"CommercialInvoiceRemoval"`
UPScarbonneutral string `xml:"UPScarbonneutral"`
USPSPICNumber string `xml:"USPSPICNumber"`
ExchangeBased string `xml:"ExchangeBased"`
PackAndCollect string `xml:"PackAndCollect"`
COD struct {
ControlNumber string `xml:"ControlNumber"`
CODStatus string `xml:"CODStatus"`
CODAmount struct {
CurrencyCode string `xml:"CurrencyCode"`
MonetaryValue string `xml:"MonetaryValue"`
} `xml:"CODAmount"`
} `xml:"COD"`
SignatureRequired struct {
Code string `xml:"Code"`
} `xml:"SignatureRequired"`
} `xml:"PackageServiceOptions"`
Activity []Activity `xml:"Activity"`
Message struct {
Code string `xml:"Code"`
Description struct{} `xml:"Description"`
} `xml:"Message"`
ReferenceNumber struct {
Code string `xml:"Code"`
Value struct{} `xml:"Value"`
} `xml:"ReferenceNumber"`
ProductType struct {
Code string `xml:"Code"`
Description struct{} `xml:"Description"`
} `xml:"ProductType"`
Accessorial struct {
Code string `xml:"Code"`
Description struct{} `xml:"Description"`
} `xml:"Accessorial"`
AlternateTrackingInfo struct {
Type string `xml:"Type"`
Value struct{} `xml:"Value"`
} `xml:"AlternateTrackingInfo"`
PackageWeight struct {
Weight string `xml:"Weight"`
UnitOfMeasurement struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"UnitOfMeasurement"`
} `xml:"PackageWeight"`
LocationAssured string `xml:"LocationAssured"`
AlternateTrackingNumber string `xml:"AlternateTrackingNumber"`
DimensionalWeightScanIndicator string `xml:"DimensionalWeightScanIndicator"`
PreauthorizedReturnInformation struct {
ReturnEligibilityIndicator string `xml:"ReturnEligibilityIndicator"`
ReturnExpirationDate string `xml:"ReturnExpirationDate"`
ReturnRequestURL string `xml:"ReturnRequestURL"`
OriginalTrackingNumber string `xml:"OriginalTrackingNumber"`
ReturnTrackingNumber string `xml:"ReturnTrackingNumber"`
} `xml:"PreauthorizedReturnInformation"`
UPSPremierAccessorial struct {
UPSPremierCode string `xml:"UPSPremierCode"`
UPSPremierDescription string `xml:"UPSPremierDescription"`
} `xml:"UPSPremierAccessorial"`
}
type Address struct {
AddressLine1 string `xml:"AddressLine1"`
AddressLine2 string `xml:"AddressLine2"`
AddressLine3 string `xml:"AddressLine3"`
City string `xml:"City"`
StateProvinceCode string `xml:"StateProvinceCode"`
PostalCode string `xml:"PostalCode"`
CountryCode string `xml:"CountryCode"`
}
type Activity struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
GMTDate string `xml:"GMTDate"`
GMTTime string `xml:"GMTTime"`
GMTOffset string `xml:"GMTOffset"`
DeliveryDateFromManifestIndicator string `xml:"DeliveryDateFromManifestIndicator"`
SensorEventIndicator string `xml:"SensorEventIndicator"`
NextScheduleActivity struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
} `xml:"NextScheduleActivity"`
AlternateTrackingInfo struct {
Type string `xml:"Type"`
Value string `xml:"Value"`
} `xml:"AlternateTrackingInfo"`
ActivityLocation struct {
Address Address `xml:"Address"`
AddressArtifactFormat struct {
StreetNumberLow string `xml:"StreetNumberLow"`
StreetPrefix string `xml:"StreetPrefix"`
StreetName string `xml:"StreetName"`
StreetSuffix string `xml:"StreetSuffix"`
StreetType string `xml:"StreetType"`
PoliticalDivision2 string `xml:"PoliticalDivision2"`
PoliticalDivision1 string `xml:"PoliticalDivision1"`
PostcodePrimaryLow string `xml:"PostcodePrimaryLow"`
CountryCode string `xml:"CountryCode"`
} `xml:"AddressArtifactFormat"`
TransportFacility struct {
Type string `xml:"Type"`
Value string `xml:"Value"`
} `xml:"TransportFacility"`
Code string `xml:"Code"`
Description string `xml:"Description"`
SignedForByName string `xml:"SignedForByName"`
SignatureImage struct {
GraphicImage string `xml:"GraphicImage"`
ImageFormat struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"ImageFormat"`
} `xml:"SignatureImage"`
PODLetter struct {
HTMLImage string `xml:"HTMLImage"`
} `xml:"PODLetter"`
ElectronicDeliveryNotification struct {
Name string `xml:"Name"`
} `xml:"ElectronicDeliveryNotification"`
} `xml:"ActivityLocation"`
Status struct {
Date string `xml:"Date"`
Time string `xml:"Time"`
StatusType struct {
Code string `xml:"Code"`
Description string `xml:"Description"`
} `xml:"StatusType"`
StatusCode struct {
Code string `xml:"Code"`
} `xml:"StatusCode"`
} `xml:"Status"`
}