Class NSPaymentTerm
The built-in payment terms list. Used by the SuperOffice Quote Connector to categorize quote versions.
Constructors
NSPaymentTerm()
Initializes a new instance of the NSPaymentTerm class.
Declaration
NSPaymentTerm Methods
GetId()
Gets the primary key (ID) for the NSPaymentTerm
Declaration
Integer GetId() Examples
NSPaymentTerm thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | NSPaymentTerm Id. |
GetTooltip()
Gets the tooltip description for the NSPaymentTerm list item.
Declaration
String GetTooltip() Examples
NSPaymentTerm thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String | NSPaymentTerm tooltip description. |
GetValue()
Gets the name of the NSPaymentTerm.
Declaration
String GetValue() Examples
NSPaymentTerm thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String | NSPaymentTerm name. |
SetId(Integer)
Sets the primary key (ID) for the NSPaymentTerm
Declaration
Void SetId(Integer id) Examples
NSPaymentTerm thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |