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

# <a id="SuperOffice_WebApi_Data_CustomerCenterConfig" /> Class CustomerCenterConfig

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

Carrier object for CustomerCenterConfig.
Contains configuration when displaying the Customer Center

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

#### Inheritance

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

## Constructors

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig__ctor" /> CustomerCenterConfig()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_Config" /> Config

A JSON-formatted config

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_CustConfigId" /> CustConfigId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_CustLangId" /> CustLangId

The customer language which this config belongs to. 0 indicates that the config is global

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_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_CustomerCenterConfig_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_CustomerCenterConfig_Type" /> Type

What kind of data is in this row
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ConfigType? Type { get; set; }
```

#### Property Value

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

#### See Also

[CustomerCenterConfig](SuperOffice.WebApi.Data.CustomerCenterConfig.md).[Type\_String](SuperOffice.WebApi.Data.CustomerCenterConfig.md#SuperOffice_WebApi_Data_CustomerCenterConfig_Type_String)

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_Type_String" /> Type\_String

What kind of data is in this row
Raw string enum value.

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

#### Property Value

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

#### See Also

[CustomerCenterConfig](SuperOffice.WebApi.Data.CustomerCenterConfig.md).[Type](SuperOffice.WebApi.Data.CustomerCenterConfig.md#SuperOffice_WebApi_Data_CustomerCenterConfig_Type)

### <a id="SuperOffice_WebApi_Data_CustomerCenterConfig_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_CustomerCenterConfig_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

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


## Related topics

- [SuperOffice.WebApi.Agents.CustomerServiceAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.CustomerServiceAgent.md)
- [SuperOffice.WebApi.Agents.ICustomerServiceAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ICustomerServiceAgent.md)
- [SuperOffice.WebApi.Data.CustomerService SaveAllCustomerCenterConfigsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.CustomerService_SaveAllCustomerCenterConfigsRequest.md)
- [SuperOffice.WebApi.Data.CustomerService GetAllCustomerCenterConfigsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.CustomerService_GetAllCustomerCenterConfigsRequest.md)
- [SuperOffice.WebApi.Data.ConfigType](/en/api/reference/webapi/SuperOffice.WebApi.Data.ConfigType.md)
- [SuperOffice.WebApi.Agents.ConfigurationAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ConfigurationAgent.md)
