-
Notifications
You must be signed in to change notification settings - Fork 0
/
1CraftSalesOrder.cs
79 lines (45 loc) · 1.89 KB
/
1CraftSalesOrder.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
// Decompiled with JetBrains decompiler
// Type: CraftCMS.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 CraftCMS
{
public class Order
{
public int id { get; set; }
public string type { get; set; }
public int orderSiteId { get; set; }
public string number { get; set; }
public string reference { get; set; }
public string visualId { get; set; }
public string visualQuoteId { get; set; }
public string quoteId { get; set; }
public Dateordered dateOrdered { get; set; }
public Datecreated dateCreated { get; set; }
public string status { get; set; }
public string couponCode { get; set; }
public string email { get; set; }
public Customer customer { get; set; }
public string customerId { get; set; }
public Shippingaddress shippingAddress { get; set; }
public string shippingAccountNumber { get; set; }
public string shippingAccountService { get; set; }
public string shippingAccountMethod { get; set; }
public string shippingMethodName { get; set; }
public string deliveryInstructions { get; set; }
public Billingaddress billingAddress { get; set; }
public Decimal paymentAmount { get; set; }
public string paymentMethod { get; set; }
public string poNumber { get; set; }
public Decimal totalSaleAmount { get; set; }
public Decimal totalTax { get; set; }
public Decimal totalShippingCost { get; set; }
public Adjustment[] adjustments { get; set; }
public Lineitem[] lineItems { get; set; }
public Decimal total { get; set; }
public Lasttransaction lastTransaction { get; set; }
public string[] documents { get; set; }
}
}