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

# NSNavigatorCompany

> Carrier object for NavigatorCompany.

Carrier object for NavigatorCompany.

## Constructors

### NSNavigatorCompany()

```crmscript theme={null}
NSNavigatorCompany
```

Initializes a new instance of the NSNavigatorCompany class.

## Methods

## GetId()

Gets the primary key (ID) for the NSNavigatorCompany

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - NavigatorCompany ID.

**Example:**

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

## GetTooltip()

Gets the tooltip description for the NSNavigatorCompany list item.

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - NSNavigatorCompany tooltip description.

**Example:**

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

## GetValue()

Gets the name of the NSNavigatorCompany.

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - NavigatorCompany name.

**Example:**

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

## SetId(Integer)

Sets the primary key (ID) for the NSNavigatorCompany

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

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

**Example:**

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

## SetTooltip(String)

Sets the tooltip description for the NSNavigatorCompany list item.

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

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

**Example:**

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

## SetValue(String)

Sets the name of the NSNavigatorCompany item.

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

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

**Example:**

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


## Related topics

- [NSNavigatorAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSNavigatorAgent.md)
- [Get Navigator Companies](/en/api/reference/restful/agent/navigator_agent/get-navigator-companies.md)
- [Get Navigator Company List](/en/api/reference/restful/agent/navigator_agent/get-navigator-company-list.md)
- [Get All Navigator Company](/en/api/reference/restful/agent/navigator_agent/get-all-navigator-company.md)
- [SuperOffice.WebApi.Data.Navigator GetNavigatorCompaniesRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Navigator_GetNavigatorCompaniesRequest.md)
- [SuperOffice.WebApi.Data.NavigatorCompany](/en/api/reference/webapi/SuperOffice.WebApi.Data.NavigatorCompany.md)
