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

# NSFieldInfoInt

> Integer custom database field.

Integer custom database field.

## Constructors

### NSFieldInfoInt()

```crmscript theme={null}
NSFieldInfoInt
```

Initializes a new instance of the NSFieldInfoInt class.

## Methods

## GetDefaultValue()

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

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

**Example:**

```crmscript theme={null}
NSFieldInfoInt thing;
Integer defaultValue = thing.GetDefaultValue();
```

## SetDefaultValue(Integer)

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

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

**Example:**

```crmscript theme={null}
NSFieldInfoInt thing;
Integer defaultValue;
thing.SetDefaultValue(defaultValue);
```
