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

# NSQuickReply

## Constructors

### NSQuickReply()

```crmscript theme={null}
NSQuickReply
```

Initializes a new instance of the NSQuickReply class.

## Methods

## GetHtmlBody()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The HTML body of the quick reply.

**Example:**

```crmscript theme={null}
NSQuickReply thing;
String htmlBody = thing.GetHtmlBody();
```

## GetName()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The short name of the quick reply.

**Example:**

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

## GetQuickReplyId()

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - Primary key.

**Example:**

```crmscript theme={null}
NSQuickReply thing;
Integer quickReplyId = thing.GetQuickReplyId();
```

## SetHtmlBody(String)

```crmscript theme={null}
Void SetHtmlBody(String htmlBody)
```

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

**Example:**

```crmscript theme={null}
NSQuickReply thing;
String htmlBody;
thing.SetHtmlBody(htmlBody);
```

## SetName(String)

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

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

**Example:**

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

## SetQuickReplyId(Integer)

```crmscript theme={null}
Void SetQuickReplyId(Integer quickReplyId)
```

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

**Example:**

```crmscript theme={null}
NSQuickReply thing;
Integer quickReplyId;
thing.SetQuickReplyId(quickReplyId);
```
