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

# <a id="SuperOffice_WebApi_Data_LandingPageTab" /> Class LandingPageTab

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

Carrier object for LandingPageTab.
A single tab on a landing page. Depending on TabType it represents a saved selection, an entity record, or a hardcoded provider.

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

#### Inheritance

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

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_LandingPageTab_EntityType" /> EntityType

Table name of the record the tab points at (selection, contact, person, sale, ...) for a selection or entity tab; empty for a provider tab.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_LandingPageTab_Id" /> Id

Record id the tab points at: the selection id for a selection tab, the entity record id for an entity tab, 0 for a provider tab.

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

#### Property Value

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

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

Display name for the tab. Populated for selection and entity tabs; empty for provider tabs (the client owns provider captions).

```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_LandingPageTab_Pinned" /> Pinned

True if the tab is pinned; false if it is only open in the working set.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_LandingPageTab_ProviderKey" /> ProviderKey

Provider key for a provider tab (e.g. LastTickets, FavouriteTickets); empty for selection and entity tabs.

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

#### Property Value

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

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

Zero-based position of the tab in the landing page's tab order.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_LandingPageTab_TabType" /> TabType

What kind of content the tab shows: a saved selection, a single entity record, or a hardcoded provider.
NULL if unknown enum value.

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

#### Property Value

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

#### See Also

[LandingPageTab](SuperOffice.WebApi.Data.LandingPageTab.md).[TabType\_String](SuperOffice.WebApi.Data.LandingPageTab.md#SuperOffice_WebApi_Data_LandingPageTab_TabType_String)

### <a id="SuperOffice_WebApi_Data_LandingPageTab_TabType_String" /> TabType\_String

What kind of content the tab shows: a saved selection, a single entity record, or a hardcoded provider.
Raw string enum value.

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

#### Property Value

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

#### See Also

[LandingPageTab](SuperOffice.WebApi.Data.LandingPageTab.md).[TabType](SuperOffice.WebApi.Data.LandingPageTab.md#SuperOffice_WebApi_Data_LandingPageTab_TabType)

## See Also

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


## Related topics

- [SuperOffice.WebApi.Data.LandingPageTabType](/en/api/reference/webapi/SuperOffice.WebApi.Data.LandingPageTabType.md)
- [SuperOffice.WebApi.Data.LandingPageEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.LandingPageEntity.md)
- [SuperOffice.WebApi.Data.Configuration SaveLandingPageTabsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Configuration_SaveLandingPageTabsRequest.md)
- [Agent API changes in 12.3](/release-notes/12/api/12.3.2570-update.md)
- [SuperOffice.WebApi.Data.Configuration GetLandingPageRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Configuration_GetLandingPageRequest.md)
- [SuperOffice.WebApi.Data.Configuration SetLandingPagePinForAssociateRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Configuration_SetLandingPagePinForAssociateRequest.md)
