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