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