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

# <a id="SuperOffice_WebApi_Data_RecurrenceInfo" /> Class RecurrenceInfo

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

Carrier object for RecurrenceInfo.
Class representing a recurrence date.

```csharp theme={null}
public class RecurrenceInfo
```

#### Inheritance

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

#### Inherited Members

[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_RecurrenceInfo__ctor" /> RecurrenceInfo()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_Dates" /> Dates

List of all dates where this recurrence occurs

```csharp theme={null}
public virtual RecurrenceDate[] Dates { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_DayPattern" /> DayPattern

Pattern describing a daily recurrence. Only set when the recurrence pattern i daily.

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

#### Property Value

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

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

End date for repetition pattern

```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_RecurrenceInfo_IsRecurrence" /> IsRecurrence

Get a or set IsRecurrence, indicating if this is a repeating appointment or not.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_MonthPattern" /> MonthPattern

Pattern describing a daily recurrence. Only set when the recurrence pattern i monthly.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_Pattern" /> Pattern

Recurrence pattern (daily, weekly etc)
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[RecurrenceInfo](SuperOffice.WebApi.Data.RecurrenceInfo.md).[Pattern\_String](SuperOffice.WebApi.Data.RecurrenceInfo.md#SuperOffice_WebApi_Data_RecurrenceInfo_Pattern_String)

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_Pattern_String" /> Pattern\_String

Recurrence pattern (daily, weekly etc)
Raw string enum value.

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

#### Property Value

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

#### See Also

[RecurrenceInfo](SuperOffice.WebApi.Data.RecurrenceInfo.md).[Pattern](SuperOffice.WebApi.Data.RecurrenceInfo.md#SuperOffice_WebApi_Data_RecurrenceInfo_Pattern)

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceCounter" /> RecurrenceCounter

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceEndType" /> RecurrenceEndType

Type defining how the end of the recurrence sequence should be calculated
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[RecurrenceInfo](SuperOffice.WebApi.Data.RecurrenceInfo.md).[RecurrenceEndType\_String](SuperOffice.WebApi.Data.RecurrenceInfo.md#SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceEndType_String)

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceEndType_String" /> RecurrenceEndType\_String

Type defining how the end of the recurrence sequence should be calculated
Raw string enum value.

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

#### Property Value

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

#### See Also

[RecurrenceInfo](SuperOffice.WebApi.Data.RecurrenceInfo.md).[RecurrenceEndType](SuperOffice.WebApi.Data.RecurrenceInfo.md#SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceEndType)

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_RecurrenceId" /> RecurrenceId

Primary key

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

#### Property Value

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

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

Start date for repetition pattern

```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_RecurrenceInfo_WeekPattern" /> WeekPattern

Pattern describing a daily recurrence. Only set when the recurrence pattern i weekly.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_RecurrenceInfo_YearPattern" /> YearPattern

Pattern describing a daily recurrence. Only set when the recurrence pattern i yearly.

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

#### Property Value

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


## Related topics

- [SuperOffice.WebApi.Data.AppointmentInfo](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentInfo.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.Data.AppointmentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentEntity.md)
- [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)
