insightly-api
Diff Revisions
5
vs
9
for /trunk/Insightly/Contract/Address.cs
|
@@ -19,15 +19,27 @@ |
19 |
19 |
|
/// <see cref="Address.ADDRESS_TYPE"/> |
20 |
20 |
|
public enum AddressType |
21 |
21 |
|
{ |
|
22 |
+ |
/// <summary> |
|
23 |
+ |
/// Work address type. |
|
24 |
+ |
/// </summary> |
22 |
25 |
|
[Description("Work")] |
23 |
26 |
|
Work, |
24 |
27 |
|
|
|
28 |
+ |
/// <summary> |
|
29 |
+ |
/// Home address type. |
|
30 |
+ |
/// </summary> |
25 |
31 |
|
[Description("Home")] |
26 |
32 |
|
Home, |
27 |
33 |
|
|
|
34 |
+ |
/// <summary> |
|
35 |
+ |
/// Postal address type. |
|
36 |
+ |
/// </summary> |
28 |
37 |
|
[Description("Postal")] |
29 |
38 |
|
Postal, |
30 |
39 |
|
|
|
40 |
+ |
/// <summary> |
|
41 |
+ |
/// Other address type. |
|
42 |
+ |
/// </summary> |
31 |
43 |
|
[Description("Other")] |
32 |
44 |
|
Other |
33 |
45 |
|
} |