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

# <a id="SuperOffice_WebApi_Data_EMailSOInfo" /> Class EMailSOInfo

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

Carrier object for EMailSOInfo.
Glue between SuperOffice data and an e-mail.

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

#### Inheritance

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

## Constructors

### <a id="SuperOffice_WebApi_Data_EMailSOInfo__ctor" /> EMailSOInfo()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_AppointmentId" /> AppointmentId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_Archived" /> Archived

Is this e-mail archived in SuperOffice

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_ArchivedAt" /> ArchivedAt

The datetime when this email was archived

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_ArchivedBy" /> ArchivedBy

The associate who archived this email

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_ArchivedDisplayName" /> ArchivedDisplayName

The full name of the associate who archived this email

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_DocumentId" /> DocumentId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_ProjectId" /> ProjectId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_EMailSOInfo_SaleId" /> SaleId

Primary key

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

#### Property Value

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

## 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.EMailEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMailEntity.md)
- [SuperOffice.WebApi.Data.EMailEnvelope](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMailEnvelope.md)
- [Get New Mail](/en/api/reference/restful/agent/email_agent/get-new-mail.md)
- [Get E Mail](/en/api/reference/restful/agent/email_agent/get-e-mail.md)
