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

# <a id="SuperOffice_WebApi_Data_AppointmentSyncData" /> Class AppointmentSyncData

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

Carrier object for AppointmentSyncData.

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

#### Inheritance

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

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_AlarmTime" /> AlarmTime

Date and time at which to show alarm

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

#### Property Value

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

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

Primary key

```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_AppointmentSyncData_AppointmentText" /> AppointmentText

The appointment's textbox; holds a descriptive text about the appointment. Filled out by the user.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_ContactDepartment" /> ContactDepartment

The department of the contact connected to the appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_ContactFullName" /> ContactFullName

The entire name of the contact, including department name

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_ContactId" /> ContactId

The contacts identifier

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

#### Property Value

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

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

The contact associated with the appointment.

```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_AppointmentSyncData_EndDate" /> EndDate

Date + end time planned

```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_AppointmentSyncData_HasAlarm" /> HasAlarm

Does this appointment have an 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_AppointmentSyncData_IsAllDay" /> IsAllDay

```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_AppointmentSyncData_IsAssignment" /> IsAssignment

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

#### Property Value

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

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

```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_AppointmentSyncData_IsCompleted" /> IsCompleted

```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_AppointmentSyncData_IsInvitation" /> IsInvitation

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

#### Property Value

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

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

```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_AppointmentSyncData_Location" /> Location

Location for appointment, defaulted from invited resource of type place and other rules, but you can write anything you want here

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_Participants" /> Participants

```csharp theme={null}
public virtual ParticipantSyncData[] Participants { get; set; }
```

#### Property Value

[ParticipantSyncData](SuperOffice.WebApi.Data.ParticipantSyncData.md)\[]

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_PersonFormalName" /> PersonFormalName

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_PersonFullName" /> PersonFullName

The full name of the person this appointment belongs to.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_PersonId" /> PersonId

Person ID of person the appointment is with, may be 0

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_ProjectId" /> ProjectId

ID of project referred to, may be 0

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

#### Property Value

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

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

Project name

```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_AppointmentSyncData_SaleId" /> SaleId

Owning sale, if any (may be 0)

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_AppointmentSyncData_SaleName" /> SaleName

Sale heading (short description?)

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

#### Property Value

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

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

date + start time planned

```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_AppointmentSyncData_TaskName" /> TaskName

```csharp theme={null}
public virtual string TaskName { 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 GetMySyncAppointmentsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Appointment_GetMySyncAppointmentsRequest.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)
- [SuperOffice.WebApi.Data.ParticipantSyncData](/en/api/reference/webapi/SuperOffice.WebApi.Data.ParticipantSyncData.md)
