Class NSFavourite

Favourite carrier.

Constructors

NSFavourite()

Initializes a new instance of the NSFavourite class.

Declaration

NSFavourite

Methods

GetAssociateId()

Declaration

Integer GetAssociateId()

Examples

NSFavourite thing;
Integer associateId = thing.GetAssociateId();

Returns

Type Description
Integer ID of the associate this favorite belongs to.

GetExtraInfo()

Declaration

String GetExtraInfo()

Examples

NSFavourite thing;
String extraInfo = thing.GetExtraInfo();

Returns

Type Description
String Extra information for this favorite.

GetRank()

Declaration

Integer GetRank()

Examples

NSFavourite thing;
Integer rank = thing.GetRank();

Returns

Type Description
Integer Rank order.

GetRecordId()

Declaration

Integer GetRecordId()

Examples

NSFavourite thing;
Integer recordId = thing.GetRecordId();

Returns

Type Description
Integer ID of the record this favorite belongs to.

GetTableName()

Declaration

String GetTableName()

Examples

NSFavourite thing;
String tableName = thing.GetTableName();

Returns

Type Description
String Name of the table this favorite belongs to.

SetAssociateId(Integer)

Declaration

Void SetAssociateId(Integer associateId)

Examples

NSFavourite thing;
Integer associateId;
thing.SetAssociateId(associateId);

Parameters

Type Name Description
Integer associateId ID of the associate this favorite belongs to.

Returns

Type Description
Void

SetExtraInfo(String)

Declaration

Void SetExtraInfo(String extraInfo)

Examples

NSFavourite thing;
String extraInfo;
thing.SetExtraInfo(extraInfo);

Parameters

Type Name Description
String extraInfo Extra information for this favorite.

Returns

Type Description
Void

SetRank(Integer)

Declaration

Void SetRank(Integer rank)

Examples

NSFavourite thing;
Integer rank;
thing.SetRank(rank);

Parameters

Type Name Description
Integer rank Rank order.

Returns

Type Description
Void

SetRecordId(Integer)

Declaration

Void SetRecordId(Integer recordId)

Examples

NSFavourite thing;
Integer recordId;
thing.SetRecordId(recordId);

Parameters

Type Name Description
Integer recordId ID of the record this favorite belongs to.

Returns

Type Description
Void

SetTableName(String)

Declaration

Void SetTableName(String tableName)

Examples

NSFavourite thing;
String tableName;
thing.SetTableName(tableName);

Parameters

Type Name Description
String tableName Name of the table this favorite belongs to.

Returns

Type Description
Void