/**
 * @example
 *     {
 *         name: "production-key"
 *     }
 */
export interface CreateApiKeyRequest {
    /** A name to identify the API key. */
    name: string;
}
