-
Notifications
You must be signed in to change notification settings - Fork 0
/
7CraftSalesOrder.cs
77 lines (44 loc) · 1.76 KB
/
7CraftSalesOrder.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
// Decompiled with JetBrains decompiler
// Type: CraftCMS.Shippingaddress
// 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
namespace CraftCMS
{
public class Shippingaddress
{
public string id { get; set; }
public bool isStoreLocation { get; set; }
public string attention { get; set; }
public string title { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string fullName { get; set; }
public string address1 { get; set; }
public string address2 { get; set; }
public string address3 { get; set; }
public string city { get; set; }
public string zipCode { get; set; }
public string phone { get; set; }
public string alternativePhone { get; set; }
public string label { get; set; }
public string businessName { get; set; }
public string businessTaxId { get; set; }
public string businessId { get; set; }
public string stateName { get; set; }
public string countryId { get; set; }
public string stateId { get; set; }
public string notes { get; set; }
public string custom1 { get; set; }
public string custom2 { get; set; }
public string custom3 { get; set; }
public string custom4 { get; set; }
public bool isEstimated { get; set; }
public string stateValue { get; set; }
public string countryIso { get; set; }
public string countryText { get; set; }
public string stateText { get; set; }
public string abbreviationText { get; set; }
public Addresslines addressLines { get; set; }
}
}