Class NSLegalBase
Carrier object for LegalBase.
Syntax
Constructors
NSLegalBase()
Initializes a new instance of the NSLegalBase class.
Declaration
NSLegalBase
Methods
GetDeleted()
Carrier object for LegalBase.
Declaration
Bool GetDeleted()
Returns
Type | Description |
---|---|
Bool | true if the LegalBase is deleted. |
Examples
NSLegalBase thing;
Bool deleted = thing.GetDeleted();
GetKey()
Carrier object for LegalBase.
Declaration
String GetKey()
Returns
Type | Description |
---|---|
String | The key used to uniquely identify this legal base. |
Examples
NSLegalBase thing;
String key = thing.GetKey();
GetLegalBaseId()
Carrier object for LegalBase.
Declaration
Integer GetLegalBaseId()
Returns
Type | Description |
---|---|
Integer | Primary key. |
Examples
NSLegalBase thing;
Integer legalBaseId = thing.GetLegalBaseId();
GetName()
Carrier object for LegalBase.
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | Name of legal base. |
Examples
NSLegalBase thing;
String name = thing.GetName();
GetRank()
Carrier object for LegalBase.
Declaration
Integer GetRank()
Returns
Type | Description |
---|---|
Integer | Rank of this consent source. |
Examples
NSLegalBase thing;
Integer rank = thing.GetRank();
GetTooltip()
Carrier object for LegalBase.
Declaration
String GetTooltip()
Returns
Type | Description |
---|---|
String | Tooltip for this consent source. |
Examples
NSLegalBase thing;
String tooltip = thing.GetTooltip();
SetDeleted(Bool)
Carrier object for LegalBase.
Declaration
Void SetDeleted(Bool deleted)
Parameters
Type | Name | Description |
---|---|---|
Bool | deleted | true if the LegalBase is deleted. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
Bool deleted;
thing.SetDeleted(deleted);
SetKey(String)
Carrier object for LegalBase.
Declaration
Void SetKey(String key)
Parameters
Type | Name | Description |
---|---|---|
String | key | The key used to uniquely identify this legal base. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
String key;
thing.SetKey(key);
SetLegalBaseId(Integer)
Carrier object for LegalBase.
Declaration
Void SetLegalBaseId(Integer legalBaseId)
Parameters
Type | Name | Description |
---|---|---|
Integer | legalBaseId | Primary key. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
Integer legalBaseId;
thing.SetLegalBaseId(legalBaseId);
SetName(String)
Carrier object for LegalBase.
Declaration
Void SetName(String name)
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of legal base. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
String name;
thing.SetName(name);
SetRank(Integer)
Carrier object for LegalBase.
Declaration
Void SetRank(Integer rank)
Parameters
Type | Name | Description |
---|---|---|
Integer | rank | Rank of this consent source. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
Integer rank;
thing.SetRank(rank);
SetTooltip(String)
Carrier object for LegalBase.
Declaration
Void SetTooltip(String tooltip)
Parameters
Type | Name | Description |
---|---|---|
String | tooltip | Tooltip for this consent source. |
Returns
Type | Description |
---|---|
Void |
Examples
NSLegalBase thing;
String tooltip;
thing.SetTooltip(tooltip);