Subversion Repository Public Repository

insightly-api

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
using System;
using System.ComponentModel;
using System.Runtime.Serialization;

namespace TS.Insightly.API.Contract
{
    /// <summary>
    /// Insightly contact info record.
    /// These records hold details like email addresses for a contact.
    /// </summary>
    [Serializable]
    [DataContract]
    public class ContactInfo
    {
        #region Enumerations.

        /// <summary>
        /// Values for the TYPE field, use the enum description.
        /// <see cref="ContactInfo.TYPE"/>
        /// </summary>
        public enum InfoType
        {
            /// <summary>
            /// Phone information type.
            /// </summary>
            [Description("PHONE")]
            Phone,

            /// <summary>
            /// Email information type.
            /// </summary>
            [Description("EMAIL")]
            Email,

            /// <summary>
            /// Social information type.
            /// </summary>
            [Description("SOCIAL")]
            Social,

            /// <summary>
            /// Website information type.
            /// </summary>
            [Description("WEBSITE")]
            Website,

            /// <summary>
            /// EmailDomain information type, this type is 
            /// only valid for Organisation contact info.
            /// <seealso cref="Organisation"/>
            /// </summary>
            [Description("EMAILDOMAIN")]
            EmailDomain
        }

        /// <summary>
        /// Values for the LABEL field when type is EMAIL, use the enum description.
        /// <see cref="ContactInfo.LABEL"/>
        /// </summary>
        public enum InfoLabelEmail
        {
            /// <summary>
            /// Work label for Email.
            /// </summary>
            [Description("Work")]
            Work,

            /// <summary>
            /// Personal label for Email.
            /// </summary>
            [Description("Personal")]
            Personal,

            /// <summary>
            /// Other label for Email.
            /// </summary>
            [Description("Other")]
            Other
        }

        /// <summary>
        /// Values for the LABEL field when type is PHONE, use the enum description.
        /// <see cref="ContactInfo.LABEL" />
        /// </summary>
        public enum InfoLabelPhone
        {
            /// <summary>
            /// Work label for phone.
            /// </summary>
            [Description("Work")]
            Work,

            /// <summary>
            /// Mobile label for phone.
            /// </summary>
            [Description("Mobile")]
            Mobile,

            /// <summary>
            /// Fax label for phone.
            /// </summary>
            [Description("Fax")]
            Fax,

            /// <summary>
            /// Pager label for phone.
            /// </summary>
            [Description("Pager")]
            Pager,

            /// <summary>
            /// Home label for phone.
            /// </summary>
            [Description("Home")]
            Home,

            /// <summary>
            /// Skype label for phone.
            /// </summary>
            [Description("Skype")]
            Skype,

            /// <summary>
            /// Y! Messenger label for phone.
            /// </summary>
            [Description("Y! Messenger")]
            YMessenger,

            /// <summary>
            /// SIP label for phone.
            /// </summary>
            [Description("SIP")]
            SIP,

            /// <summary>
            /// Other label for phone.
            /// </summary>
            [Description("Other")]
            Other
        }

        /// <summary>
        /// Values for the LABEL field when type is WEBSITE, use the enum description.
        /// <see cref="ContactInfo.LABEL" />
        /// </summary>
        public enum InfoLabelWebsite
        {
            /// <summary>
            /// Work label for website.
            /// </summary>
            [Description("Work")]
            Work,

            /// <summary>
            /// Personal label for website.
            /// </summary>
            [Description("Personal")]
            Personal,

            /// <summary>
            /// Blog label for website.
            /// </summary>
            [Description("Blog")]
            Blog,

            /// <summary>
            /// Other label for website.
            /// </summary>
            [Description("Other")]
            Other
        }

        /// <summary>
        /// Values for the LABEL field when type is SOCIAL, use the enum description.
        /// <see cref="ContactInfo.LABEL"/>
        /// </summary>
        public enum InfoLabelSocial
        {
            /// <summary>
            /// The linkedIn public profile URL
            /// </summary>
            [Description("LinkedInPublicProfileUrl")]
            LinkedInPublicProfileUrl,

            /// <summary>
            /// The twitter ID.
            /// </summary>
            [Description("TwitterID")]
            TwitterID
        }

        #endregion Enumerations.

        /// <summary>
        /// Gets or sets the contact information unique identifier.
        /// </summary>
        /// <value>
        /// The contact information unique identifier.
        /// </value>
        public int CONTACT_INFO_ID { get; set; }

        /// <summary>
        /// Gets or sets the type of contact info, for example "EMAIL".
        /// See InfoType enumeration.
        /// <b>Is Required.</b>
        /// </summary>
        /// <value>
        /// The information type.
        /// </value>
        /// <seealso cref="InfoType"/>
        [DataMember]
        public string TYPE { get; set; }

        /// <summary>
        /// Gets or sets the subtype.
        /// </summary>
        /// <value>
        /// The subtype.
        /// </value>
        [DataMember]
        public string SUBTYPE { get; set; }

        /// <summary>
        /// Gets or sets the label for the info, for example for an email this could be "Work".
        /// See the various InfoLabel enumerations.
        /// </summary>
        /// <value>
        /// The label.
        /// </value>
        /// <seealso cref="InfoLabelWebsite"/>
        /// <seealso cref="InfoLabelPhone"/>
        /// <seealso cref="InfoLabelEmail"/>
        /// <seealso cref="InfoLabelSocial"/>
        [DataMember]
        public string LABEL { get; set; }

        /// <summary>
        /// Gets or sets the detail.
        /// For an email type info record this will be the actual email address.
        /// <b>Is Required.</b>
        /// </summary>
        /// <value>
        /// The detail.
        /// </value>
        [DataMember]
        public string DETAIL { get; set; }
    }
}

Commits for insightly-api/trunk/Insightly/Contract/ContactInfo.cs

Diff revisions: vs.
Revision Author Commited Message
10 Diff Diff HadleyHope picture HadleyHope Tue 24 Sep, 2013 12:06:30 +0000

Added basic organisation functionality, at the moment cannot link organisation to contact.

9 Diff Diff HadleyHope picture HadleyHope Tue 24 Sep, 2013 10:12:34 +0000

Added AddNewContactIfNotExists that checks for existing email, first and last names before adding a contact.

5 Diff Diff HadleyHope picture HadleyHope Mon 23 Sep, 2013 09:01:00 +0000

Added contact address.

4 Diff Diff HadleyHope picture HadleyHope Fri 20 Sep, 2013 15:08:23 +0000

Added code and tests to add a basic contact with email address.

3 HadleyHope picture HadleyHope Thu 19 Sep, 2013 14:44:24 +0000

Initial working API retrieving a contact by it’s id and email address.