> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ApiKey

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class ApiKey(val key: String, val type: ApiKey.Type, val environment: Environment)
```

## Constructors

```kotlin theme={null}
constructor(key: String, type: ApiKey.Type, environment: Environment)
```

## Properties

### apiEnvironmentPathComponent

```kotlin theme={null}
val apiEnvironmentPathComponent: String
```

### environment

```kotlin theme={null}
val environment: Environment
```

### isProduction

```kotlin theme={null}
val isProduction: Boolean
```

### key

```kotlin theme={null}
val key: String
```

### type

```kotlin theme={null}
val type: ApiKey.Type
```
