/* tslint:disable */ /* eslint-disable */ /** * apikey/rotation * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the result of an API key rotation. */ export interface ApiKeyRotationResult { /** * The new API key created after rotating an existing API key. */ apiKey: string; /** * The API key ID. You must base any identification process on the the API key ID as it is guaranteed to be unique. */ id: string; /** * The new secret key created after rotating an existing API key. */ secretKey: string; }