Class NSLegalBase

Carrier object for LegalBase.

Constructors

NSLegalBase()

Initializes a new instance of the NSLegalBase class.

Declaration

NSLegalBase

Methods

GetDeleted()

Declaration

Bool GetDeleted()

Examples

NSLegalBase thing;
Bool deleted = thing.GetDeleted();

Returns

Type Description
Bool true if the LegalBase is deleted.

GetKey()

Declaration

String GetKey()

Examples

NSLegalBase thing;
String key = thing.GetKey();

Returns

Type Description
String The key used to uniquely identify this legal base.

GetLegalBaseId()

Declaration

Integer GetLegalBaseId()

Examples

NSLegalBase thing;
Integer legalBaseId = thing.GetLegalBaseId();

Returns

Type Description
Integer Primary key.

GetName()

Declaration

String GetName()

Examples

NSLegalBase thing;
String name = thing.GetName();

Returns

Type Description
String Name of legal base.

GetRank()

Declaration

Integer GetRank()

Examples

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

Returns

Type Description
Integer Rank of this consent source.

GetTooltip()

Declaration

String GetTooltip()

Examples

NSLegalBase thing;
String tooltip = thing.GetTooltip();

Returns

Type Description
String Tooltip for this consent source.

SetDeleted(Bool)

Declaration

Void SetDeleted(Bool deleted)

Examples

NSLegalBase thing;
Bool deleted;
thing.SetDeleted(deleted);

Parameters

Type Name Description
Bool deleted true if the LegalBase is deleted.

Returns

Type Description
Void

SetKey(String)

Declaration

Void SetKey(String key)

Examples

NSLegalBase thing;
String key;
thing.SetKey(key);

Parameters

Type Name Description
String key The key used to uniquely identify this legal base.

Returns

Type Description
Void

SetLegalBaseId(Integer)

Declaration

Void SetLegalBaseId(Integer legalBaseId)

Examples

NSLegalBase thing;
Integer legalBaseId;
thing.SetLegalBaseId(legalBaseId);

Parameters

Type Name Description
Integer legalBaseId Primary key.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSLegalBase thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name Name of legal base.

Returns

Type Description
Void

SetRank(Integer)

Declaration

Void SetRank(Integer rank)

Examples

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

Parameters

Type Name Description
Integer rank Rank of this consent source.

Returns

Type Description
Void

SetTooltip(String)

Declaration

Void SetTooltip(String tooltip)

Examples

NSLegalBase thing;
String tooltip;
thing.SetTooltip(tooltip);

Parameters

Type Name Description
String tooltip Tooltip for this consent source.

Returns

Type Description
Void