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

SetTooltip(String)

Sets the tooltip description for the NSPaymentTerm list item.

Declaration

Void SetTooltip(String tooltip)

Examples

NSPaymentTerm thing;
String descr = "something new";
thing.SetTooltip(descr);

Parameters

Type Name Description
String tooltip

Returns

Type Description
Void

SetValue(String)

Sets the name of the NSPaymentTerm item.

Declaration

Void SetValue(String value)

Examples

NSPaymentTerm thing;
thing.SetValue("frotz");

Parameters

Type Name Description
String value

Returns

Type Description
Void