/** * 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 { TenantRead } from './TenantRead.js'; /** * * @export * @interface ListVmTenantRead */ export interface ListVmTenantRead { /** * * @type {Array} * @memberof ListVmTenantRead */ data?: Array; /** * * @type {number} * @memberof ListVmTenantRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmTenantRead */ pageCount?: number; } /** * Check if a given object implements the ListVmTenantRead interface. */ export declare function instanceOfListVmTenantRead(value: object): value is ListVmTenantRead; export declare function ListVmTenantReadFromJSON(json: any): ListVmTenantRead; export declare function ListVmTenantReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmTenantRead; export declare function ListVmTenantReadToJSON(json: any): ListVmTenantRead; export declare function ListVmTenantReadToJSONTyped(value?: ListVmTenantRead | null, ignoreDiscriminator?: boolean): any;