Class NSReason
Reason for a lost sale.
Constructors
NSReason()
Initializes a new instance of the NSReason class.
Declaration
NSReason Methods
GetId()
Gets the primary key (ID) for the NSReason
Declaration
Integer GetId() Examples
NSReason thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer |
GetTooltip()
Gets the tooltip description for the NSReason list item.
Declaration
String GetTooltip() Examples
NSReason thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String |
GetValue()
Gets the name of the NSReason.
Declaration
String GetValue() Examples
NSReason thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String |
SetId(Integer)
Sets the primary key (ID) for the NSReason
Declaration
Void SetId(Integer id) Examples
NSReason thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |