-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1CraftSalesOrder2.cs
261 lines (136 loc) · 6.33 KB
/
1CraftSalesOrder2.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
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
// Decompiled with JetBrains decompiler
// Type: CraftCMS2.Order
// Assembly: WebOrderImportCraft, Version=1000.510.8894.24695, Culture=neutral, PublicKeyToken=bf11c4f15ab4e1ef
// MVID: F965BC17-D6AC-43D0-B104-3E53F0C380F8
// Assembly location: P:\Synergy\VMAWS Custom Apps\WebOrderImportCraft\WebOrderImportCraft.exe
using System;
namespace CraftCMS2
{
public class Order
{
public string number { get; set; }
public string reference { get; set; }
public object couponCode { get; set; }
public string isCompleted { get; set; }
public Dateordered dateOrdered { get; set; }
public Datepaid datePaid { get; set; }
public Dateauthorized dateAuthorized { get; set; }
public string currency { get; set; }
public string gatewayId { get; set; }
public string lastIp { get; set; }
public object message { get; set; }
public object returnUrl { get; set; }
public object cancelUrl { get; set; }
public string orderStatusId { get; set; }
public string orderLanguage { get; set; }
public string orderSiteId { get; set; }
public string origin { get; set; }
public string billingAddressId { get; set; }
public string shippingAddressId { get; set; }
public object makePrimaryShippingAddress { get; set; }
public object makePrimaryBillingAddress { get; set; }
public object shippingSameAsBilling { get; set; }
public object billingSameAsShipping { get; set; }
public object estimatedBillingAddressId { get; set; }
public object estimatedShippingAddressId { get; set; }
public object estimatedBillingSameAsShipping { get; set; }
public string shippingMethodHandle { get; set; }
public string shippingMethodName { get; set; }
public string customerId { get; set; }
public object registerUserOnOrderComplete { get; set; }
public object paymentSourceId { get; set; }
public string storedTotalPrice { get; set; }
public string storedTotalPaid { get; set; }
public string storedItemTotal { get; set; }
public string storedItemSubtotal { get; set; }
public string storedTotalShippingCost { get; set; }
public string storedTotalDiscount { get; set; }
public string storedTotalTax { get; set; }
public string storedTotalTaxIncluded { get; set; }
public int id { get; set; }
public object tempId { get; set; }
public object draftId { get; set; }
public object revisionId { get; set; }
public string uid { get; set; }
public int siteSettingsId { get; set; }
public int? fieldLayoutId { get; set; }
public int contentId { get; set; }
public bool enabled { get; set; }
public bool archived { get; set; }
public int siteId { get; set; }
public object title { get; set; }
public object slug { get; set; }
public object uri { get; set; }
public Datecreated dateCreated { get; set; }
public Dateupdated dateUpdated { get; set; }
public object dateDeleted { get; set; }
public bool trashed { get; set; }
public object _ref { get; set; }
public string status { get; set; }
public object structureId { get; set; }
public object url { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string company { get; set; }
public string phone { get; set; }
public string additionalEmails { get; set; }
public string shippingAccountNumber { get; set; }
public string specialInstructions { get; set; }
public Decimal adjustmentSubtotal { get; set; }
public Decimal adjustmentsTotal { get; set; }
public string paymentCurrency { get; set; }
public Decimal paymentAmount { get; set; }
public string email { get; set; }
public bool isPaid { get; set; }
public Decimal itemSubtotal { get; set; }
public Decimal itemTotal { get; set; }
public Lineitem[] lineItems { get; set; }
public object[] orderAdjustments { get; set; }
public Decimal outstandingBalance { get; set; }
public string paidStatus { get; set; }
public string recalculationMode { get; set; }
public string shortNumber { get; set; }
public Decimal totalPaid { get; set; }
public Decimal total { get; set; }
public Decimal totalPrice { get; set; }
public Decimal totalQty { get; set; }
public Decimal totalSaleAmount { get; set; }
public Decimal totalTaxablePrice { get; set; }
public Decimal totalWeight { get; set; }
public string adjustmentSubtotalAsCurrency { get; set; }
public string adjustmentsTotalAsCurrency { get; set; }
public string itemSubtotalAsCurrency { get; set; }
public string itemTotalAsCurrency { get; set; }
public string outstandingBalanceAsCurrency { get; set; }
public string paymentAmountAsCurrency { get; set; }
public string totalPaidAsCurrency { get; set; }
public string totalAsCurrency { get; set; }
public string totalPriceAsCurrency { get; set; }
public string totalSaleAmountAsCurrency { get; set; }
public string totalTaxablePriceAsCurrency { get; set; }
public string totalTaxAsCurrency { get; set; }
public string totalTaxIncludedAsCurrency { get; set; }
public string totalShippingCostAsCurrency { get; set; }
public string totalDiscountAsCurrency { get; set; }
public string storedTotalPriceAsCurrency { get; set; }
public string storedTotalPaidAsCurrency { get; set; }
public string storedItemTotalAsCurrency { get; set; }
public string storedItemSubtotalAsCurrency { get; set; }
public string storedTotalShippingCostAsCurrency { get; set; }
public string storedTotalDiscountAsCurrency { get; set; }
public string storedTotalTaxAsCurrency { get; set; }
public string storedTotalTaxIncludedAsCurrency { get; set; }
public string paidStatusHtml { get; set; }
public string customerLinkHtml { get; set; }
public string orderStatusHtml { get; set; }
public Decimal totalTax { get; set; }
public Decimal totalTaxIncluded { get; set; }
public Decimal totalShippingCost { get; set; }
public Decimal totalDiscount { get; set; }
public object[] adjustments { get; set; }
public Billingaddress billingAddress { get; set; }
public Customer customer { get; set; }
public Shippingaddress shippingAddress { get; set; }
public Shippingmethod shippingMethod { get; set; }
}
}