Subversion Repository Public Repository

insightly-api

Diff Revisions 5 vs 9 for /trunk/Insightly/Contract/Contact.cs

Diff revisions: vs.
  @@ -21,64 +21,190 @@
21 21 /// </value>
22 22 public int CONTACT_ID { get; set; }
23 23
24 + /// <summary>
25 + /// Gets or sets the salutation.
26 + /// </summary>
27 + /// <value>
28 + /// The salutation.
29 + /// </value>
24 30 [DataMember]
25 31 public string SALUTATION { get; set; }
26 32
33 + /// <summary>
34 + /// Gets or sets the first name.
35 + /// </summary>
36 + /// <value>
37 + /// The first name.
38 + /// </value>
27 39 [DataMember]
28 40 public string FIRST_NAME { get; set; }
29 41
42 + /// <summary>
43 + /// Gets or sets the last name.
44 + /// </summary>
45 + /// <value>
46 + /// The last name.
47 + /// </value>
30 48 [DataMember]
31 49 public string LAST_NAME { get; set; }
32 50
51 + /// <summary>
52 + /// Gets or sets the background.
53 + /// </summary>
54 + /// <value>
55 + /// The background.
56 + /// </value>
33 57 [DataMember]
34 58 public string BACKGROUND { get; set; }
35 59
60 + /// <summary>
61 + /// Gets or sets the image URL.
62 + /// </summary>
63 + /// <value>
64 + /// The image URL.
65 + /// </value>
36 66 [DataMember]
37 67 public string IMAGE_URL { get; set; }
38 68
69 + /// <summary>
70 + /// Gets or sets the id of the default linked organisation.
71 + /// </summary>
72 + /// <value>
73 + /// The default linked organisation.
74 + /// </value>
39 75 [DataMember]
40 76 public int DEFAULT_LINKED_ORGANISATION { get; set; }
41 77
78 + /// <summary>
79 + /// Gets or sets the date created (UTC).
80 + /// </summary>
81 + /// <value>
82 + /// The date created (UTC).
83 + /// </value>
42 84 public DateTime DATE_CREATED_UTC { get; set; }
43 85
86 + /// <summary>
87 + /// Gets or sets the date updated (UTC).
88 + /// </summary>
89 + /// <value>
90 + /// The date updated (UTC).
91 + /// </value>
44 92 public DateTime DATE_UPDATED_UTC { get; set; }
45 93
94 + /// <summary>
95 + /// Gets or sets visible to.
96 + /// </summary>
97 + /// <value>
98 + /// The visible to.
99 + /// </value>
46 100 [DataMember]
47 101 public string VISIBLE_TO { get; set; }
48 102
103 + /// <summary>
104 + /// Gets or sets the team id the contact is visible to.
105 + /// </summary>
106 + /// <value>
107 + /// The visible team id.
108 + /// </value>
49 109 [DataMember]
50 110 public int VISIBLE_TEAM_ID { get; set; }
51 111
112 + /// <summary>
113 + /// Gets or sets the user ids the contact is visible to.
114 + /// </summary>
115 + /// <value>
116 + /// The visible user ids.
117 + /// </value>
52 118 [DataMember]
53 119 public string VISIBLE_USER_IDS { get; set; }
54 120
121 + /// <summary>
122 + /// Gets or sets the contact field 1.
123 + /// </summary>
124 + /// <value>
125 + /// The contact field 1.
126 + /// </value>
55 127 [DataMember]
56 128 public string CONTACT_FIELD_1 { get; set; }
57 129
130 + /// <summary>
131 + /// Gets or sets the contact field 2.
132 + /// </summary>
133 + /// <value>
134 + /// The contact field 1.
135 + /// </value>
58 136 [DataMember]
59 137 public string CONTACT_FIELD_2 { get; set; }
60 138
139 + /// <summary>
140 + /// Gets or sets the contact field 3.
141 + /// </summary>
142 + /// <value>
143 + /// The contact field 3.
144 + /// </value>
61 145 [DataMember]
62 146 public string CONTACT_FIELD_3 { get; set; }
63 147
148 + /// <summary>
149 + /// Gets or sets the contact field 4.
150 + /// </summary>
151 + /// <value>
152 + /// The contact field 4.
153 + /// </value>
64 154 [DataMember]
65 155 public string CONTACT_FIELD_4 { get; set; }
66 156
157 + /// <summary>
158 + /// Gets or sets the contact field 5.
159 + /// </summary>
160 + /// <value>
161 + /// The contact field 5.
162 + /// </value>
67 163 [DataMember]
68 164 public string CONTACT_FIELD_5 { get; set; }
69 165
166 + /// <summary>
167 + /// Gets or sets the contact field 6.
168 + /// </summary>
169 + /// <value>
170 + /// The contact field 6.
171 + /// </value>
70 172 [DataMember]
71 173 public string CONTACT_FIELD_6 { get; set; }
72 174
175 + /// <summary>
176 + /// Gets or sets the contact field 7.
177 + /// </summary>
178 + /// <value>
179 + /// The contact field 7.
180 + /// </value>
73 181 [DataMember]
74 182 public string CONTACT_FIELD_7 { get; set; }
75 183
184 + /// <summary>
185 + /// Gets or sets the contact field 8.
186 + /// </summary>
187 + /// <value>
188 + /// The contact field 8.
189 + /// </value>
76 190 [DataMember]
77 191 public string CONTACT_FIELD_8 { get; set; }
78 192
193 + /// <summary>
194 + /// Gets or sets the contact field 9.
195 + /// </summary>
196 + /// <value>
197 + /// The contact field 9.
198 + /// </value>
79 199 [DataMember]
80 200 public string CONTACT_FIELD_9 { get; set; }
81 201
202 + /// <summary>
203 + /// Gets or sets the contact field 10.
204 + /// </summary>
205 + /// <value>
206 + /// The contact field 10.
207 + /// </value>
82 208 [DataMember]
83 209 public string CONTACT_FIELD_10 { get; set; }
84 210