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

# NSMrMrs

## Constructors

### NSMrMrs()

```crmscript theme={null}
NSMrMrs
```

Initializes a new instance of the NSMrMrs class.

## Methods

## GetId()

Gets the primary key (ID) for the NSMrMrs

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - NSMrMrs Id.

**Example:**

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

## GetTooltip()

Gets the tooltip description for the NSMrMrs list item.

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

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

**Example:**

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

## GetValue()

Gets the name of the NSMrMrs.

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

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

**Example:**

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

## SetId(Integer)

Sets the primary key (ID) for the NSMrMrs

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

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

**Example:**

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

## SetTooltip(String)

Sets the tooltip description for the NSMrMrs list item.

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

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

**Example:**

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

## SetValue(String)

Sets the name of the NSMrMrs item.

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

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

**Example:**

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


## Related topics

- [NSListAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSListAgent.md)
- [Delete Mr Mrs](/en/api/reference/restful/rest/list_mrmrs/delete-mr-mrs.md)
- [Get Mr Mrs](/en/api/reference/restful/rest/list_mrmrs/get-mr-mrs.md)
- [Post Mr Mrs](/en/api/reference/restful/rest/list_mrmrs/post-mr-mrs.md)
- [Put Mr Mrs](/en/api/reference/restful/rest/list_mrmrs/put-mr-mrs.md)
