-
Notifications
You must be signed in to change notification settings - Fork 0
/
eTowerObject.cs
86 lines (81 loc) · 3.74 KB
/
eTowerObject.cs
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
public class eTowerLabelRequest
{
public string id { get; set; }
}
public class orderItemShipping
{
public string itemNo { get; set; }
public string sku { get; set; }
public string description { get; set; }
public string nativeDescription { get; set; }
public string hsCode { get; set; }
public string originCountry { get; set; }
public int? unitValue { get; set; }
public int? itemCount { get; set; }
public int weight { get; set; }
public string productURL { get; set; }
}
public class eTowerOrder
{
public string trackingNo { get; set; }
public string referenceNo { get; set; }
public string addressLine1 { get; set; }
public string addressLine2 { get; set; }
public string addressLine3 { get; set; }
public string city { get; set; }
public string country { get; set; }
public string description { get; set; }
public string email { get; set; }
public string facility { get; set; }
public string instruction { get; set; }
public string invoiceCurrency { get; set; }
public int? invoiceValue { get; set; }
public string phone { get; set; }
public string platform { get; set; }
public string postcode { get; set; }
public string recipientCompany { get; set; }
public string recipientName { get; set; }
public string serviceOption { get; set; }
public string sku { get; set; }
public string state { get; set; }
public string weightUnit { get; set; }
public double? weight { get; set; }
public string dimensionUnit { get; set; }
public int length { get; set; }
public int width { get; set; }
public int height { get; set; }
public int volume { get; set; }
public string shipperName { get; set; }
public string shipperAddressLine1 { get; set; }
public string shipperAddressLine2 { get; set; }
public string shipperAddressLine3 { get; set; }
public string shipperCity { get; set; }
public string shipperState { get; set; }
public string shipperPostcode { get; set; }
public string shipperCountry { get; set; }
public string shipperPhone { get; set; }
public string recipientTaxId { get; set; }
public string authorityToLeave { get; set; }
public string incoterm { get; set; }
public string lockerService { get; set; }
public List<orderItemShipping> orderItems { get; set; } = new List<orderItemShipping>();
public string firstPieceReferenceNo { get; set; }
public string returnName { get; set; }
public string returnAddressLine1 { get; set; }
public string returnAddressLine2 { get; set; }
public string returnAddressLine3 { get; set; }
public string returnCity { get; set; }
public string returnState { get; set; }
public string returnPostcode { get; set; }
public string returnCountry { get; set; }
public string returnOption { get; set; }
}
public class eTowerOrderRespone
{
public string status { get; set; }
public int code { get; set; }
public string message { get; set; }
public string orderId { get; set; }
public string referenceNo { get; set; }
public string trackingNo { get; set; }
}