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

# <a id="SuperOffice_WebApi_Data_CustomObjectMetadata" /> Class CustomObjectMetadata

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

Carrier object for CustomObjectMetadata.
Bootstrap metadata for a Custom Object table.

```csharp theme={null}
public class CustomObjectMetadata
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[CustomObjectMetadata](SuperOffice.WebApi.Data.CustomObjectMetadata.md)

#### Inherited Members

[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_CustomObjectMetadata__ctor" /> CustomObjectMetadata()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_FlagHidden" /> FlagHidden

True if the Custom Object is hidden from the navigator.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_FlagHideId" /> FlagHideId

True if the primary key field should be hidden in the UI.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_FlagShowInFind" /> FlagShowInFind

True if the Custom Object should appear in the Find dialog.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_FlagShowInNavigator" /> FlagShowInNavigator

True if the Custom Object should appear in the navigator.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_HasWebPanels" /> HasWebPanels

True if the Custom Object has web panel archives configured.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_IconHint" /> IconHint

Icon hint string for the UI.

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

#### Property Value

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

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

User-visible name of the Custom Object.

```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_CustomObjectMetadata_Relations" /> Relations

Relations to other entities.

```csharp theme={null}
public virtual CustomObjectRelation[] Relations { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomObjectMetadata_TableName" /> TableName

Database table name, e.g. 'y\_equipment'.

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Agents.CustomObjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.CustomObjectAgent.md)
- [SuperOffice.WebApi.Agents.ICustomObjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ICustomObjectAgent.md)
- [SuperOffice.WebApi.Data.CustomObject GetCustomObjectsMetadataRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.CustomObject_GetCustomObjectsMetadataRequest.md)
- [SuperOffice.WebApi.Data.FieldMetadataDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.FieldMetadataDictionary.md)
- [SuperOffice.WebApi.Data.FieldMetadata](/en/api/reference/webapi/SuperOffice.WebApi.Data.FieldMetadata.md)
- [SuperOffice.WebApi.Data.CustomObject](/en/api/reference/webapi/SuperOffice.WebApi.Data.CustomObject.md)
