> ## Documentation Index
> Fetch the complete documentation index at: https://superofficeas-bugfix-ty-screen-designer-paradox.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# NSReplyTemplate

## Constructors

### NSReplyTemplate()

```crmscript theme={null}
NSReplyTemplate
```

Initializes a new instance of the NSReplyTemplate class.

## Methods

## GetDescription()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The description for this reply template.

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
String description = thing.GetDescription();
```

## GetFolderId()

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - The ID of the folder in which this reply template is located. NULL or -1 if this is a top-level reply template.

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
Integer folderId = thing.GetFolderId();
```

## GetName()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The name for this reply template.

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
String name = thing.GetName();
```

## GetReplyTemplateId()

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - The primary key (auto-incremented).

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
Integer replyTemplateId = thing.GetReplyTemplateId();
```

## SetDescription(String)

```crmscript theme={null}
Void SetDescription(String description)
```

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

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
String description;
thing.SetDescription(description);
```

## SetFolderId(Integer)

```crmscript theme={null}
Void SetFolderId(Integer folderId)
```

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

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
Integer folderId;
thing.SetFolderId(folderId);
```

## SetName(String)

```crmscript theme={null}
Void SetName(String name)
```

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

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
String name;
thing.SetName(name);
```

## SetReplyTemplateId(Integer)

```crmscript theme={null}
Void SetReplyTemplateId(Integer replyTemplateId)
```

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

**Example:**

```crmscript theme={null}
NSReplyTemplate thing;
Integer replyTemplateId;
thing.SetReplyTemplateId(replyTemplateId);
```
