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

# <a id="SuperOffice_WebApi_Data_ForeignAppEntity" /> Class ForeignAppEntity

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

Carrier object for ForeignAppEntity.

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

#### Inheritance

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

## Remarks

Use <xref href="SuperOffice.CRM.Services.ArchiveAgent?text=Archive+agent" data-throw-if-not-resolved="false" />:
All ForeignAppEntity: <pre><code class="lang-csharp">"ForeignKeys"</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity__ctor" /> ForeignAppEntity()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity_CreatedBy" /> CreatedBy

The person that created the foreign application.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity_CreatedDate" /> CreatedDate

Registered when

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity_Devices" /> Devices

The devices that belong to this foreign app.

```csharp theme={null}
public virtual ForeignDevice[] Devices { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity_ForeignAppId" /> ForeignAppId

Primary key

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

#### Property Value

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

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

Name of foreign application

```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_ForeignAppEntity_UpdatedBy" /> UpdatedBy

The person that last updated this foreign application.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ForeignAppEntity_UpdatedDate" /> UpdatedDate

Last updated when

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

#### Property Value

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

## See Also

[ForeignSystemAgent](SuperOffice.WebApi.Agents.ForeignSystemAgent.md),
[ArchiveAgent](SuperOffice.WebApi.Agents.ArchiveAgent.md),


## Related topics

- [SuperOffice.WebApi.Agents.ForeignSystemAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ForeignSystemAgent.md)
- [SuperOffice.WebApi.Agents.IForeignSystemAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IForeignSystemAgent.md)
- [SuperOffice.WebApi.Data.AppointmentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentEntity.md)
- [SuperOffice.WebApi.Data.ForeignSystem GetAppByNameRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.ForeignSystem_GetAppByNameRequest.md)
- [SuperOffice.WebApi.Data.ForeignSystem GetAllForeignKeysOnEntityRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.ForeignSystem_GetAllForeignKeysOnEntityRequest.md)
- [SuperOffice.WebApi.Data.ForeignSystem GetApplicationDevicesRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.ForeignSystem_GetApplicationDevicesRequest.md)
