Class NSCustomerCenterConfig

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

Constructors

NSCustomerCenterConfig()

Initializes a new instance of the NSCustomerCenterConfig class.

Declaration

NSCustomerCenterConfig

Methods

GetConfig()

Declaration

String GetConfig()

Examples

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

Returns

Type Description
String A JSON-formatted config.

GetCustConfigId()

Declaration

Integer GetCustConfigId()

Examples

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

Returns

Type Description
Integer Primary key.

GetCustLangId()

Declaration

Integer GetCustLangId()

Examples

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

Returns

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

GetRegistered()

Declaration

DateTime GetRegistered()

Examples

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

Returns

Type Description
DateTime Registered when.

GetRegisteredAssociateId()

Declaration

Integer GetRegisteredAssociateId()

Examples

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

Returns

Type Description
Integer Registered by whom.

GetType()

Declaration

Integer GetType()

Examples

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

Returns

Type Description
Integer What kind of data is in this row. What kind of data is in this row. See <xref href="CRMScript.NetServer.ConfigType" data-throw-if-not-resolved="false"></xref>

GetUpdated()

Declaration

DateTime GetUpdated()

Examples

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

Returns

Type Description
DateTime Last updated when.

GetUpdatedAssociateId()

Declaration

Integer GetUpdatedAssociateId()

Examples

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

Returns

Type Description
Integer Last updated by whom.

SetConfig(String)

Declaration

Void SetConfig(String config)

Examples

NSCustomerCenterConfig thing;
String config;
thing.SetConfig(config);

Parameters

Type Name Description
String config A JSON-formatted config.

Returns

Type Description
Void

SetCustConfigId(Integer)

Declaration

Void SetCustConfigId(Integer custConfigId)

Examples

NSCustomerCenterConfig thing;
Integer custConfigId;
thing.SetCustConfigId(custConfigId);

Parameters

Type Name Description
Integer custConfigId Primary key.

Returns

Type Description
Void

SetCustLangId(Integer)

Declaration

Void SetCustLangId(Integer custLangId)

Examples

NSCustomerCenterConfig thing;
Integer custLangId;
thing.SetCustLangId(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

SetRegistered(DateTime)

Declaration

Void SetRegistered(DateTime registered)

Examples

NSCustomerCenterConfig thing;
DateTime registered;
thing.SetRegistered(registered);

Parameters

Type Name Description
DateTime registered Registered when.

Returns

Type Description
Void

SetRegisteredAssociateId(Integer)

Declaration

Void SetRegisteredAssociateId(Integer registeredAssociateId)

Examples

NSCustomerCenterConfig thing;
Integer registeredAssociateId;
thing.SetRegisteredAssociateId(registeredAssociateId);

Parameters

Type Name Description
Integer registeredAssociateId Registered by whom.

Returns

Type Description
Void

SetType(Integer)

Declaration

Void SetType(Integer type)

Examples

NSCustomerCenterConfig thing;
Integer type;
thing.SetType(type);

Parameters

Type Name Description
Integer type What kind of data is in this row. See <xref href="CRMScript.NetServer.ConfigType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetRegiSetUpdated(DateTime)

Declaration

Void SetUpdated(DateTime updated)

Examples

NSCustomerCenterConfig thing;
DateTime updated;
thing.SetUpdated(updated);

Parameters

Type Name Description
DateTime updated Last updated when.

Returns

Type Description
Void

SetUpdatedAssociateId(Integer)

Declaration

Void SetUpdatedAssociateId(Integer updatedAssociateId)

Examples

NSCustomerCenterConfig thing;
Integer updatedAssociateId;
thing.SetUpdatedAssociateId(updatedAssociateId);

Parameters

Type Name Description
Integer updatedAssociateId Last updated by whom.

Returns

Type Description
Void