> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.TaskListItem

# <a id="SuperOffice_WebApi_Data_TaskListItem" /> Class TaskListItem

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for TaskListItem.

```csharp theme={null}
public class TaskListItem : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get TaskListItem 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new AppointmentAgent(configuration);
var taskListItem = agent.GetTaskListItem( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_TaskListItem__ctor" /> TaskListItem()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public TaskListItem()
```

## Properties

### <a id="SuperOffice_WebApi_Data_TaskListItem_ColorIndex" /> ColorIndex

JAP
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ColorIndex? ColorIndex { get; set; }
```

#### Property Value

[ColorIndex](SuperOffice.WebApi.Data.ColorIndex.md)?

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[ColorIndex\_String](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_ColorIndex_String)

### <a id="SuperOffice_WebApi_Data_TaskListItem_ColorIndex_String" /> ColorIndex\_String

JAP
Raw string enum value.

```csharp theme={null}
[JsonProperty("ColorIndex")]
public string ColorIndex_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[ColorIndex](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_ColorIndex)

### <a id="SuperOffice_WebApi_Data_TaskListItem_DefaultVideomeetingStatus" /> DefaultVideomeetingStatus

Default video-meeting status for meetings created in SuperOffice CRM.
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public VideoMeetingStatus? DefaultVideomeetingStatus { get; set; }
```

#### Property Value

[VideoMeetingStatus](SuperOffice.WebApi.Data.VideoMeetingStatus.md)?

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[DefaultVideomeetingStatus\_String](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_DefaultVideomeetingStatus_String)

### <a id="SuperOffice_WebApi_Data_TaskListItem_DefaultVideomeetingStatus_String" /> DefaultVideomeetingStatus\_String

Default video-meeting status for meetings created in SuperOffice CRM.
Raw string enum value.

```csharp theme={null}
[JsonProperty("DefaultVideomeetingStatus")]
public string DefaultVideomeetingStatus_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[DefaultVideomeetingStatus](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_DefaultVideomeetingStatus)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Deleted" /> Deleted

If true, the Task list item is deleted

```csharp theme={null}
public virtual bool Deleted { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Direction" /> Direction

1 = incoming, 2 = outgoing, see EAppntDirection
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public TaskDirection? Direction { get; set; }
```

#### Property Value

[TaskDirection](SuperOffice.WebApi.Data.TaskDirection.md)?

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[Direction\_String](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_Direction_String)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Direction_String" /> Direction\_String

1 = incoming, 2 = outgoing, see EAppntDirection
Raw string enum value.

```csharp theme={null}
[JsonProperty("Direction")]
public string Direction_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[Direction](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_Direction)

### <a id="SuperOffice_WebApi_Data_TaskListItem_IntentId" /> IntentId

Link to the intention of this kind of task (used by SAINT)

```csharp theme={null}
public virtual int IntentId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_TaskListItem_IsDefaultAlldayEvent" /> IsDefaultAlldayEvent

True if all day event

```csharp theme={null}
public virtual bool IsDefaultAlldayEvent { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_TaskListItem_IsDefaultFree" /> IsDefaultFree

True if free, false if busy

```csharp theme={null}
public virtual bool IsDefaultFree { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_TaskListItem_IsDefaultPublished" /> IsDefaultPublished

Published to external persons

```csharp theme={null}
public virtual bool IsDefaultPublished { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Rank" /> Rank

Rank order

```csharp theme={null}
public virtual short Rank { get; set; }
```

#### Property Value

[short](https://learn.microsoft.com/dotnet/api/system.int16)

### <a id="SuperOffice_WebApi_Data_TaskListItem_TaskListItemId" /> TaskListItemId

Primary key

```csharp theme={null}
public virtual int TaskListItemId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Tooltip" /> Tooltip

Tooltip or other description

```csharp theme={null}
public virtual string Tooltip { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Type" /> Type

1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo - see EAppntRecordTypes
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public TaskType? Type { get; set; }
```

#### Property Value

[TaskType](SuperOffice.WebApi.Data.TaskType.md)?

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[Type\_String](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_Type_String)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Type_String" /> Type\_String

1 = app, 2 = doc, 3 = email, 4 = fax, 5 = phone, 6 = todo - see EAppntRecordTypes
Raw string enum value.

```csharp theme={null}
[JsonProperty("Type")]
public string Type_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[TaskListItem](SuperOffice.WebApi.Data.TaskListItem.md).[Type](SuperOffice.WebApi.Data.TaskListItem.md#SuperOffice_WebApi_Data_TaskListItem_Type)

### <a id="SuperOffice_WebApi_Data_TaskListItem_Value" /> Value

The list item

```csharp theme={null}
public virtual string Value { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

## See Also

[AppointmentAgent](SuperOffice.WebApi.Agents.AppointmentAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.TaskListItemType](/en/api/reference/webapi/SuperOffice.WebApi.Data.TaskListItemType.md)
- [SuperOffice.WebApi.Agents.AppointmentAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.AppointmentAgent.md)
- [SuperOffice.WebApi.Agents.IAppointmentAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IAppointmentAgent.md)
- [SuperOffice.WebApi.Agents.ListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ListAgent.md)
- [SuperOffice.WebApi.Agents.IListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IListAgent.md)
- [SuperOffice.WebApi.Data.AppointmentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentEntity.md)
