15
15
/// An array of <see cref="Contact"/> items for the user.
17
[XmlElement("list", Form=XmlSchemaForm.Unqualified)]
17
[XmlElement ("list", Form = XmlSchemaForm.Unqualified)]
18
18
public List[] listCollection = new List[0];
31
31
/// The user id of the contact.
33
[XmlAttribute("id", Form=XmlSchemaForm.Unqualified)]
33
[XmlAttribute ("id", Form = XmlSchemaForm.Unqualified)]
37
37
/// The username (or screen name) of the contact.
39
[XmlAttribute("name", Form=XmlSchemaForm.Unqualified)]
39
[XmlAttribute ("name", Form = XmlSchemaForm.Unqualified)]
40
40
public string Name;
43
43
/// Is this contact marked as a friend contact?
45
[XmlAttribute("deleted", Form=XmlSchemaForm.Unqualified)]
45
[XmlAttribute ("deleted", Form = XmlSchemaForm.Unqualified)]
46
46
public int Deleted;
49
49
/// Is this user marked a family contact?
51
[XmlAttribute("locked", Form=XmlSchemaForm.Unqualified)]
51
[XmlAttribute ("locked", Form = XmlSchemaForm.Unqualified)]
55
55
/// Unsure how to even set this!
57
[XmlAttribute("archived", Form=XmlSchemaForm.Unqualified)]
57
[XmlAttribute ("archived", Form = XmlSchemaForm.Unqualified)]
58
58
public int Archived;
61
61
/// Is the user online at the moment RtmLive)
63
[XmlAttribute("position", Form=XmlSchemaForm.Unqualified)]
63
[XmlAttribute("position", Form = XmlSchemaForm.Unqualified)]
64
64
public int Position;
67
67
/// Is the user online at the moment RtmLive)
69
[XmlAttribute("smart", Form=XmlSchemaForm.Unqualified)]
69
[XmlAttribute ("smart", Form = XmlSchemaForm.Unqualified)]
73
73
/// equals to last_sync value
75
[XmlAttribute("current", Form=XmlSchemaForm.Unqualified)]
76
public string RawCurrent
78
get { return rawCurrent; }
75
[XmlAttribute ("current", Form = XmlSchemaForm.Unqualified)]
76
public string RawCurrent {
80
if(value.Length > 0) {
82
if (value.Length > 0) {
81
83
rawCurrent = value;
82
current = Utils.DateStringToDateTime(rawCurrent);
84
current = Utils.DateStringToDateTime (rawCurrent);
98
99
/// An wrapper of deleted TaskSeries objects
100
[XmlElement("deleted", Form=XmlSchemaForm.Unqualified)]
101
[XmlElement ("deleted", Form = XmlSchemaForm.Unqualified)]
101
102
public DeletedTaskSeries DeletedTaskSeries;
104
105
/// An array of TaskSeries objects
106
[XmlElement("taskseries", Form=XmlSchemaForm.Unqualified)]
107
public TaskSeries[] TaskSeriesCollection = new TaskSeries[0];
107
[XmlElement ("taskseries", Form = XmlSchemaForm.Unqualified)]
108
public TaskSeries[] TaskSeriesCollection = new TaskSeries [0];
118
119
/// An array of TaskSeries objects
120
[XmlElement("taskseries", Form=XmlSchemaForm.Unqualified)]
121
[XmlElement ("taskseries", Form = XmlSchemaForm.Unqualified)]
121
122
public TaskSeries[] TaskSeriesCollection = new TaskSeries[0];
b'\\ No newline at end of file'