/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ApiKeyRead } from './ApiKeyRead.js'; /** * * @export * @interface ListVmApiKeyRead */ export interface ListVmApiKeyRead { /** * * @type {Array} * @memberof ListVmApiKeyRead */ data?: Array; /** * * @type {number} * @memberof ListVmApiKeyRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmApiKeyRead */ pageCount?: number; } /** * Check if a given object implements the ListVmApiKeyRead interface. */ export declare function instanceOfListVmApiKeyRead(value: object): value is ListVmApiKeyRead; export declare function ListVmApiKeyReadFromJSON(json: any): ListVmApiKeyRead; export declare function ListVmApiKeyReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmApiKeyRead; export declare function ListVmApiKeyReadToJSON(json: any): ListVmApiKeyRead; export declare function ListVmApiKeyReadToJSONTyped(value?: ListVmApiKeyRead | null, ignoreDiscriminator?: boolean): any;