Show / Hide Table of Contents

Class NSCustomerCenterConfig

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

Syntax

Constructors

NSCustomerCenterConfig()

Initializes a new instance of the NSCustomerCenterConfig class.

Introduced or updated in version: 8.5R08

Declaration
NSCustomerCenterConfig

Methods

GetConfig()

Introduced or updated in version: 8.5R08

Declaration
String GetConfig()
Returns
Type Description
String

A JSON-formatted config.

Examples
NSCustomerCenterConfig thing;
String config = thing.GetConfig();

GetCustConfigId()

Introduced or updated in version: 8.5R08

Declaration
Integer GetCustConfigId()
Returns
Type Description
Integer

Primary key.

Examples
NSCustomerCenterConfig thing;
Integer custConfigId = thing.GetCustConfigId();

GetCustLangId()

Introduced or updated in version: 8.5R08

Declaration
Integer GetCustLangId()
Returns
Type Description
Integer

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

Examples
NSCustomerCenterConfig thing;
Integer custLangId = thing.GetCustLangId();

GetRegistered()

Introduced or updated in version: 8.5R08

Declaration
DateTime GetRegistered()
Returns
Type Description
DateTime

Registered when.

Examples
NSCustomerCenterConfig thing;
DateTime registered = thing.GetRegistered();

GetRegisteredAssociateId()

Introduced or updated in version: 8.5R08

Declaration
Integer GetRegisteredAssociateId()
Returns
Type Description
Integer

Registered by whom.

Examples
NSCustomerCenterConfig thing;
Integer registeredAssociateId = thing.GetRegisteredAssociateId();

GetType()

Introduced or updated in version: 8.5R08

Declaration
Integer GetType()
Returns
Type Description
Integer

What kind of data is in this row. What kind of data is in this row. See ConfigType

Examples
NSCustomerCenterConfig thing;
Integer type = thing.GetType();

GetUpdated()

Introduced or updated in version: 8.5R08

Declaration
DateTime GetUpdated()
Returns
Type Description
DateTime

Last updated when.

Examples
NSCustomerCenterConfig thing;
DateTime updated = thing.GetUpdated();

GetUpdatedAssociateId()

Introduced or updated in version: 8.5R08

Declaration
Integer GetUpdatedAssociateId()
Returns
Type Description
Integer

Last updated by whom.

Examples
NSCustomerCenterConfig thing;
Integer updatedAssociateId = thing.GetUpdatedAssociateId();

SetConfig(String)

Introduced or updated in version: 8.5R08

Declaration
Void SetConfig(String config)
Parameters
Type Name Description
String config

A JSON-formatted config.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
String config;
thing.SetConfig(config);

SetCustConfigId(Integer)

Introduced or updated in version: 8.5R08

Declaration
Void SetCustConfigId(Integer custConfigId)
Parameters
Type Name Description
Integer custConfigId

Primary key.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
Integer custConfigId;
thing.SetCustConfigId(custConfigId);

SetCustLangId(Integer)

Introduced or updated in version: 8.5R08

Declaration
Void SetCustLangId(Integer custLangId)
Parameters
Type Name Description
Integer custLangId

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

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
Integer custLangId;
thing.SetCustLangId(custLangId);

SetRegistered(DateTime)

Introduced or updated in version: 8.5R08

Declaration
Void SetRegistered(DateTime registered)
Parameters
Type Name Description
DateTime registered

Registered when.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
DateTime registered;
thing.SetRegistered(registered);

SetRegisteredAssociateId(Integer)

Introduced or updated in version: 8.5R08

Declaration
Void SetRegisteredAssociateId(Integer registeredAssociateId)
Parameters
Type Name Description
Integer registeredAssociateId

Registered by whom.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
Integer registeredAssociateId;
thing.SetRegisteredAssociateId(registeredAssociateId);

SetType(Integer)

Introduced or updated in version: 8.5R08

Declaration
Void SetType(Integer type)
Parameters
Type Name Description
Integer type

What kind of data is in this row. See ConfigType.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
Integer type;
thing.SetType(type);

SetRegiSetUpdated(DateTime)

Introduced or updated in version: 8.5R08

Declaration
Void SetUpdated(DateTime updated)
Parameters
Type Name Description
DateTime updated

Last updated when.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
DateTime updated;
thing.SetUpdated(updated);

SetUpdatedAssociateId(Integer)

Introduced or updated in version: 8.5R08

Declaration
Void SetUpdatedAssociateId(Integer updatedAssociateId)
Parameters
Type Name Description
Integer updatedAssociateId

Last updated by whom.

Returns
Type Description
Void
Examples
NSCustomerCenterConfig thing;
Integer updatedAssociateId;
thing.SetUpdatedAssociateId(updatedAssociateId);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top