This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetEmailAddresses.cs
158 lines (134 loc) · 4.64 KB
/
getEmailAddresses.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
namespace Jenzabar.CRM.Deserializer {
/// <remarks/>
// XML from the CRM.AdmissionsOfficer plug-in is used to populate this class.
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public class EmailAddressList {
/// <remarks/>
private string _id;
/// <remarks/>
private string _firstname;
/// <remarks/>
private string _middlename;
/// <remarks/>
private string _lastname;
/// <remarks/>
private EmailAddressListEmailAddressInfo[] _emailaddressinfo;
/// This is the comment for _id
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ID {
get {
return this._id;
}
set {
this._id = value;
}
}
/// This is the comment for _firstname
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string FirstName {
get {
return this._firstname;
}
set {
this._firstname = value;
}
}
/// This is the comment for _middlename
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string MiddleName {
get {
return this._middlename;
}
set {
this._middlename = value;
}
}
/// This is the comment for _lastname
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string LastName {
get {
return this._lastname;
}
set {
this._lastname = value;
}
}
/// This is the comment for _emailaddressinfo
[System.Xml.Serialization.XmlElementAttribute("EmailAddressInfo", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public EmailAddressListEmailAddressInfo[] EmailAddressInfo {
get {
return this._emailaddressinfo;
}
set {
this._emailaddressinfo = value;
}
}
}
/// <remarks/>
public class EmailAddressListEmailAddressInfo {
/// <remarks/>
private string _emailaddresskey;
/// <remarks/>
private string _addrcode;
/// <remarks/>
private string _addrdesc;
/// <remarks/>
private string _emailaddress;
/// This is the comment for _emailaddresskey
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string EmailAddressKey {
get {
return this._emailaddresskey;
}
set {
this._emailaddresskey = value;
}
}
/// This is the comment for _addrcode
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string AddrCode {
get {
return this._addrcode;
}
set {
this._addrcode = value;
}
}
/// This is the comment for _addrdesc
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string AddrDesc {
get {
return this._addrdesc;
}
set {
this._addrdesc = value;
}
}
/// This is the comment for _emailaddress
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string EmailAddress {
get {
return this._emailaddress;
}
set {
this._emailaddress = value;
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public class NewDataSet {
/// <remarks/>
private EmailAddressList[] _items;
/// This is the comment for _items
[System.Xml.Serialization.XmlElementAttribute("EmailAddressList")]
public EmailAddressList[] Items {
get {
return this._items;
}
set {
this._items = value;
}
}
}
}