# ApiKeyRotationResult

Represents the result of an API key rotation.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**apiKey** | **string** | The new API key created after rotating an existing API key. | [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. | [default to undefined]
**secretKey** | **string** | The new secret key created after rotating an existing API key. | [default to undefined]

## Example

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

const instance: ApiKeyRotationResult = {
    apiKey,
    id,
    secretKey,
};
```

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