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.

Declaration
NSCustomerCenterConfig

Methods

GetConfig()

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

Declaration
String GetConfig()
Returns
Type Description
String

A JSON-formatted config.

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

GetCustConfigId()

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

Declaration
Integer GetCustConfigId()
Returns
Type Description
Integer

Primary key.

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

GetCustLangId()

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

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()

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

Declaration
DateTime GetRegistered()
Returns
Type Description
DateTime

Registered when.

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

GetRegisteredAssociateId()

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

Declaration
Integer GetRegisteredAssociateId()
Returns
Type Description
Integer

Registered by whom.

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

GetType()

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

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()

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

Declaration
DateTime GetUpdated()
Returns
Type Description
DateTime

Last updated when.

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

GetUpdatedAssociateId()

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

Declaration
Integer GetUpdatedAssociateId()
Returns
Type Description
Integer

Last updated by whom.

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

SetConfig(String)

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

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)

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

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)

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

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)

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

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)

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

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)

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

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)

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

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)

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

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);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top