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

# <a id="SuperOffice_WebApi_Data_SuggestedAppointment" /> Class SuggestedAppointment

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

Carrier object for SuggestedAppointment.

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

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[SuggestedAppointment](SuperOffice.WebApi.Data.SuggestedAppointment.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 SuggestedAppointment 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new AppointmentAgent(configuration);
var suggestedAppointment = agent.GetSuggestedAppointment( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment__ctor" /> SuggestedAppointment()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_Associate" /> Associate

The owner of the suggested activity. Always the same as the sales owner.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_AutoSuggest" /> AutoSuggest

Should this appointment be auto-suggested

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_DaysFuture" /> DaysFuture

How many days into the future the appointment should be scheduled

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

#### Property Value

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

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

0 -> record is active 1 -> record is 'deleted' and should not be shown in lists

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_Duration" /> Duration

Duration in minutes of suggested appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_Name" /> Name

Item name, visible in Guide

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_ProjectTypeStatusLinkId" /> ProjectTypeStatusLinkId

Link to projectTypeStatusLink, the anchor for project guide items. Either this OR saleAnchorId should be set, not both at the same time.

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

#### Property Value

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

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

Rank, controls rank of non-instantiated items in Guide

```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_SuggestedAppointment_RegisteredAssociateId" /> RegisteredAssociateId

Registered by whom

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_SaleTypeStageLinkId" /> SaleTypeStageLinkId

Link to saleTypeStageLink, the anchor for sale guide items. Either this OR projectAnchorId should be set, not both at the same time.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_SuggestedAppointmentId" /> SuggestedAppointmentId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_TaskId" /> TaskId

Type of the suggested appointment

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_SuggestedAppointment_Text" /> Text

The suggested text of the new appointment

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

#### Property Value

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

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

Tooltip / description

```csharp theme={null}
public virtual string Tooltip { 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.SuggestedAppointmentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.SuggestedAppointmentEntity.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.Data.Appointment GetNextSuggestedAppointmentBySaleRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Appointment_GetNextSuggestedAppointmentBySaleRequest.md)
- [SuperOffice.WebApi.Data.DocumentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.DocumentEntity.md)
