# ApiKey

Represents an API key of an API consumer.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**apiKey** | **string** | A six character cleartext prefix of the API key. The prefix is not guaranteed to be unique. You must base any identification process on the API key ID, not the prefix. | [optional] [default to undefined]
**expirationTime** | **number** | The time to live (TTL) for the API key in seconds. | [optional] [default to undefined]
**id** | **string** | The API key ID. You must base any identification process on the the API key ID as it is guaranteed to be unique. | [optional] [default to undefined]

## Example

```typescript
import { ApiKey } from './api';

const instance: ApiKey = {
    apiKey,
    expirationTime,
    id,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
