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

# NSFieldInfoDynamicLink

> Dynamic Link custom database field.

Dynamic Link custom database field.

## Constructors

### NSFieldInfoDynamicLink()

```crmscript theme={null}
NSFieldInfoDynamicLink
```

Initializes a new instance of the NSFieldInfoDynamicLink class.

## Methods

## GetDefaultValue()

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

**Returns:** [CRMScript.Global.Integer](CRMScript.Global.Integer) - Default attachment ID value.

## GetLinkName()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - Display text for link.

**Example:**

```crmscript theme={null}
NSFieldInfoDynamicLink thing;
String linkName = thing.GetLinkName();
```

## GetLinkValue()

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - URL link value. May contain CS tags to be replaced.

**Example:**

```crmscript theme={null}
NSFieldInfoDynamicLink thing;
String linkValue = thing.GetLinkValue();
```

## SetDefaultValue(Integer)

Default attachment ID value

```crmscript theme={null}
Void SetDefaultValue(Integer value)
```

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

## SetLinkName(String)

```crmscript theme={null}
Void SetLinkName(String linkName)
```

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

**Example:**

```crmscript theme={null}
NSFieldInfoDynamicLink thing;
String linkName;
thing.SetLinkName(linkName);
```

## SetLinkValue(String)

```crmscript theme={null}
Void SetLinkValue(String linkValue)
```

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

**Example:**

```crmscript theme={null}
NSFieldInfoDynamicLink thing;
String linkValue;
thing.SetLinkValue(linkValue);
```
