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

# NSAccessGatewayInfo

> Access gateway related data and operations. Carrier object for AccessGatewayInfo.

Access gateway related data and operations. Carrier object for AccessGatewayInfo.

## Constructors

### NSAccessGatewayInfo()

```crmscript theme={null}
NSAccessGatewayInfo
```

Initializes a new instance of the NSAccessGatewayInfo class.

## Methods

## GetClientId()

Returns the registered client ID for AccessGateway OIDC.

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The registered client ID for AccessGateway OIDC.

**Example:**

```crmscript theme={null}
NSAccessGatewayInfo thing;
String clientId = thing.GetClientId();
```

## GetRedirectUri()

Returns the registered redirect\_uri for AccessGateway OIDC.

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

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The registered redirect\_uri for AccessGateway OIDC.

**Example:**

```crmscript theme={null}
NSAccessGatewayInfo thing;
String redirectUri = thing.GetRedirectUri();
```

## SetClientId(String)

Sets the client ID for AccessGateway OIDC.

```crmscript theme={null}
Void SetClientId(String clientId)
```

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

**Example:**

```crmscript theme={null}
NSAccessGatewayInfo thing;
String clientId;
thing.SetClientId(clientId);
```

## SetRedirectUri(String)

Sets the redirect\_uri for AccessGateway OIDC.

```crmscript theme={null}
Void SetRedirectUri(String redirectUri)
```

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

**Example:**

```crmscript theme={null}
NSAccessGatewayInfo thing;
String redirectUri;
thing.SetRedirectUri(redirectUri);
```
