> ## 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.AppointmentInfo

# <a id="SuperOffice_WebApi_Data_AppointmentInfo" /> Class AppointmentInfo

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

Carrier object for AppointmentInfo.
Info about an appointment

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

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[AppointmentInfo](SuperOffice.WebApi.Data.AppointmentInfo.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)

## Constructors

### <a id="SuperOffice_WebApi_Data_AppointmentInfo__ctor" /> AppointmentInfo()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_Agenda" /> Agenda

The appointment agenda (the rest of appointment description)

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_AnySendEmail" /> AnySendEmail

True if any of the appointment records has the email flag set

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_AppointmentId" /> AppointmentId

The id of the appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_AssociateId" /> AssociateId

The id of the associate this appointment belongs to

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

#### Property Value

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

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

The color index of the appointment (task)
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[AppointmentInfo](SuperOffice.WebApi.Data.AppointmentInfo.md).[ColorIndex\_String](SuperOffice.WebApi.Data.AppointmentInfo.md#SuperOffice_WebApi_Data_AppointmentInfo_ColorIndex_String)

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

The color index of the appointment (task)
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

[AppointmentInfo](SuperOffice.WebApi.Data.AppointmentInfo.md).[ColorIndex](SuperOffice.WebApi.Data.AppointmentInfo.md#SuperOffice_WebApi_Data_AppointmentInfo_ColorIndex)

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_ContactName" /> ContactName

The name of the appointment contact.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_EndDate" /> EndDate

The end of the appointment

```csharp theme={null}
public virtual DateTime EndDate { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_HasAlarm" /> HasAlarm

True if the appointment has alarm

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsAllDay" /> IsAllDay

True if the appointment is an all day appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsBooking" /> IsBooking

True if the appointment is part of a booking

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsBookingMain" /> IsBookingMain

True if the appointment is a main booking

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsBusy" /> IsBusy

True if the participant is marked as busy

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsCompleted" /> IsCompleted

True if the appointment is completed

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsPrivate" /> IsPrivate

True if only visible for the owner

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsRecurring" /> IsRecurring

True if the appointment is part of a recurring series

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsTentative" /> IsTentative

True if the appointment is tentative

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_IsVideoMeeting" /> IsVideoMeeting

True if the appointment has a video link

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_MotherAssociateId" /> MotherAssociateId

Associate/owner of the mother appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_MotherId" /> MotherId

The id of the mother appointment (participants point to this one)

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_OwnedExternally" /> OwnedExternally

Set if an external system owns this appointment.
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[AppointmentInfo](SuperOffice.WebApi.Data.AppointmentInfo.md).[OwnedExternally\_String](SuperOffice.WebApi.Data.AppointmentInfo.md#SuperOffice_WebApi_Data_AppointmentInfo_OwnedExternally_String)

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_OwnedExternally_String" /> OwnedExternally\_String

Set if an external system owns this appointment.
Raw string enum value.

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

#### Property Value

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

#### See Also

[AppointmentInfo](SuperOffice.WebApi.Data.AppointmentInfo.md).[OwnedExternally](SuperOffice.WebApi.Data.AppointmentInfo.md#SuperOffice_WebApi_Data_AppointmentInfo_OwnedExternally)

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_PersonName" /> PersonName

The name of the appointment person.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_ProjectName" /> ProjectName

The name of the appointment project

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_RecurrenceInfo" /> RecurrenceInfo

The recurrence info if the appointment is recurring

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

#### Property Value

[RecurrenceInfo](SuperOffice.WebApi.Data.RecurrenceInfo.md)

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_SendEmail" /> SendEmail

True if the appointment record has the email flag set

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_StartDate" /> StartDate

The start of the appointment

```csharp theme={null}
public virtual DateTime StartDate { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_TaskName" /> TaskName

The name of the appointment task type

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentInfo_Title" /> Title

The appointment title (first line of appointment description)

```csharp theme={null}
public virtual string Title { 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.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.Data.Appointment RequestForInfoRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Appointment_RequestForInfoRequest.md)
- [SuperOffice.WebApi.Data.Appointment GetAssociatesDiaryInfoRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Appointment_GetAssociatesDiaryInfoRequest.md)
- [SuperOffice.WebApi.Data.Carrier](/en/api/reference/webapi/SuperOffice.WebApi.Data.Carrier.md)
- [SuperOffice.WebApi.Data.AppointmentCautionWarning](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentCautionWarning.md)
