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

# <a id="SuperOffice_WebApi_Data_PictureFolderEntity" /> Class PictureFolderEntity

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

Carrier object for PictureFolderEntity.
Picture/mailing folder (s\_picture\_folder)

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

#### Inheritance

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

## Constructors

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity__ctor" /> PictureFolderEntity()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_Children" /> Children

Sub-folders, if any.

```csharp theme={null}
public virtual PictureFolderEntity[] Children { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_Description" /> Description

A description of the folder

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_FolderType" /> FolderType

Indicates which type of folder this is

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

#### Property Value

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

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

Name of folder

```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_PictureFolderEntity_ParentId" /> ParentId

The parent id for this folder. -1 for root folders

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_Registered" /> Registered

Registered when

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_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_PictureFolderEntity_SPictureFolderId" /> SPictureFolderId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_Updated" /> Updated

Last updated when

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_PictureFolderEntity_UpdatedAssociateId" /> UpdatedAssociateId

Last updated by whom

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

#### Property Value

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

## See Also

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


## Related topics

- [Agent API changes in 12.3](/release-notes/12/api/12.3.2570-update.md)
- [SuperOffice.WebApi.Data.FormEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.FormEntity.md)
- [SuperOffice.WebApi.Data.EMailEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMailEntity.md)
- [SuperOffice.WebApi.Data.MailingEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.MailingEntity.md)
- [SuperOffice.WebApi.Data.ShipmentMessageEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.ShipmentMessageEntity.md)
- [SuperOffice.WebApi.Data.HierarchyEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.HierarchyEntity.md)
