> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NSDeliveryTerm

> The built-in delivery terms list. Used by the SuperOffice Quote Connector in quote versions.

The built-in delivery terms list. Used by the SuperOffice Quote Connector in quote versions.

## Constructors

### NSDeliveryTerm()

```crmscript theme={null}
NSDeliveryTerm
```

Initializes a new instance of the NSDeliveryTerm class.

## Methods

## GetId()

Gets the primary key (ID) for the NSDeliveryTerm

```crmscript theme={null}
Integer GetId()
```

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
Integer id = thing.GetId();
```

## GetTooltip()

Gets the tooltip description for the NSDeliveryTerm list item.

```crmscript theme={null}
String GetTooltip()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
String descr = thing.GetTooltip();
```

## GetValue()

Gets the name of the NSDeliveryTerm.

```crmscript theme={null}
String GetValue()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
String name = thing.GetValue();
```

## SetId(Integer)

Sets the primary key (ID) for the NSDeliveryTerm

```crmscript theme={null}
Void SetId(Integer id)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
thing.SetId(123);
```

## SetTooltip(String)

Sets the tooltip description for the NSDeliveryTerm list item.

```crmscript theme={null}
Void SetTooltip(String tooltip)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
String descr = "something new";
thing.SetTooltip(descr);
```

## SetValue(String)

Sets the name of the NSDeliveryTerm item.

```crmscript theme={null}
Void SetValue(String value)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSDeliveryTerm thing;
thing.SetValue("frotz");
```


## Related topics

- [NSListAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSListAgent.md)
- [Namespace CRMScript.NetServer](/en/automation/crmscript/reference/CRMScript.NetServer.md)
- [Delete Delivery Term](/en/api/reference/restful/rest/list_deliveryterms/delete-delivery-term.md)
- [Post Delivery Term](/en/api/reference/restful/rest/list_deliveryterms/post-delivery-term.md)
- [Get Delivery Term](/en/api/reference/restful/rest/list_deliveryterms/get-delivery-term.md)
- [Put Delivery Term](/en/api/reference/restful/rest/list_deliveryterms/put-delivery-term.md)
