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

# NSCredentialsGroupUsers

> The users within a user group.

The users within a user group.

## Constructors

### NSCredentialsGroupUsers()

```crmscript theme={null}
NSCredentialsGroupUsers
```

Initializes a new instance of the NSCredentialsGroupUsers class.

## Methods

## GetHeadings()

```crmscript theme={null}
String[] GetHeadings()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String)\[] - Headings in which to list the different users.

**Example:**

```crmscript theme={null}
NSCredentialsGroupUsers thing;
String[] headings = thing.GetHeadings();
```

## GetUsers()

```crmscript theme={null}
NSCredentialUser[] GetUsers()
```

**Returns:** [CRMScript.NetServer.NSCredentialUser](CRMScript.NetServer.NSCredentialUser)\[] - The list of actual users that can be selected.

**Example:**

```crmscript theme={null}
NSCredentialsGroupUsers thing;
NSCredentialUser[] users = thing.GetUsers();
```

## SetHeadings(String\[])

```crmscript theme={null}
Void SetHeadings(String[] headings)
```

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

**Example:**

```crmscript theme={null}
NSCredentialsGroupUsers thing;
String[] headings;
thing.SetHeadings(headings);
```

## SetUsers(NSCredentialUser\[])

```crmscript theme={null}
Void SetUsers(NSCredentialUser[] users)
```

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

**Example:**

```crmscript theme={null}
NSCredentialsGroupUsers thing;
NSCredentialUser[] users;
thing.SetUsers(users);
```
