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

# <a id="SuperOffice_WebApi_Data_EMailAppointment" /> Class EMailAppointment

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

Carrier object for EMailAppointment.
Information about an email appointment received as iCal data

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

#### Inheritance

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

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_EMailAppointment_Appointment" /> Appointment

Appointment information

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailAppointment_CalMethod" /> CalMethod

Method field stored in ICS file.
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[EMailAppointment](SuperOffice.WebApi.Data.EMailAppointment.md).[CalMethod\_String](SuperOffice.WebApi.Data.EMailAppointment.md#SuperOffice_WebApi_Data_EMailAppointment_CalMethod_String)

### <a id="SuperOffice_WebApi_Data_EMailAppointment_CalMethod_String" /> CalMethod\_String

Method field stored in ICS file.
Raw string enum value.

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

#### Property Value

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

#### See Also

[EMailAppointment](SuperOffice.WebApi.Data.EMailAppointment.md).[CalMethod](SuperOffice.WebApi.Data.EMailAppointment.md#SuperOffice_WebApi_Data_EMailAppointment_CalMethod)

### <a id="SuperOffice_WebApi_Data_EMailAppointment_Comment" /> Comment

Comment attached to the calendar event (accept / reject reason etc.)

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailAppointment_DtEnd" /> DtEnd

End date/time in ICS file.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailAppointment_DtStart" /> DtStart

Start date/time in ICS file.

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

#### Property Value

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

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

List of participants in the iCal file - first one being the organizer

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailAppointment_Sequence" /> Sequence

Sequence number in ICS file.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailAppointment_Superseded" /> Superseded

A newer invitation exists

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Agents.EMailAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.EMailAgent.md)
- [SuperOffice.WebApi.Agents.IEMailAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IEMailAgent.md)
- [SuperOffice.WebApi.Data.EMail GetEmailAppointmentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMail_GetEmailAppointmentRequest.md)
- [SuperOffice.WebApi.Data.EMail GetEmailAppointmentRecurrenceRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMail_GetEmailAppointmentRecurrenceRequest.md)
- [SuperOffice.WebApi.Data.UserPreferenceStrings.Mail](/en/api/reference/webapi/SuperOffice.WebApi.Data.UserPreferenceStrings.Mail.md)
- [SuperOffice.WebApi.Data.Carrier](/en/api/reference/webapi/SuperOffice.WebApi.Data.Carrier.md)
