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