> ## 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.

# NSQuoteListItem

> One line in a list.

One line in a list.

## Constructors

### NSQuoteListItem()

```crmscript theme={null}
NSQuoteListItem
```

Initializes a new instance of the NSQuoteListItem class.

## Methods

## GetDisplayDescription()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - Typically used in a tooltip.

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String displayDescription = thing.GetDisplayDescription();
```

## GetDisplayValue()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - List item text to display.

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String displayValue = thing.GetDisplayValue();
```

## GetERPQuoteListItemKey()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - Primary key for the item.

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String eRPQuoteListItemKey = thing.GetERPQuoteListItemKey();
```

## SetDisplayDescription(String)

```crmscript theme={null}
Void SetDisplayDescription(String displayDescription)
```

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

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String displayDescription;
thing.SetDisplayDescription(displayDescription);
```

## SetDisplayValue(String)

```crmscript theme={null}
Void SetDisplayValue(String displayValue)
```

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

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String displayValue;
thing.SetDisplayValue(displayValue);
```

## SetERPQuoteListItemKey(String)

```crmscript theme={null}
Void SetERPQuoteListItemKey(String eRPQuoteListItemKey)
```

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

**Example:**

```crmscript theme={null}
NSQuoteListItem thing;
String eRPQuoteListItemKey;
thing.SetERPQuoteListItemKey(eRPQuoteListItemKey);
```


## Related topics

- [NSQuoteAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSQuoteAgent.md)
- [QuoteListItemInfo](/en/api/plugins/quote-connectors/api/data-carriers/quotelistiteminfo.md)
- [Put Quote Approve Reason Headings For List Item](/en/api/reference/restful/rest/list_quoteapprovereason/put-quote-approve-reason-headings-for-list-item.md)
- [Put Quote Deny Reason Headings For List Item](/en/api/reference/restful/rest/list_quotedenyreason/put-quote-deny-reason-headings-for-list-item.md)
- [Get Quote Deny Reason Headings For List Item](/en/api/reference/restful/rest/list_quotedenyreason/get-quote-deny-reason-headings-for-list-item.md)
- [Get Quote Approve Reason Headings For List Item](/en/api/reference/restful/rest/list_quoteapprovereason/get-quote-approve-reason-headings-for-list-item.md)
