/** * 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 { RelationRead } from './RelationRead.js'; /** * * @export * @interface ListVmRelationRead */ export interface ListVmRelationRead { /** * * @type {Array} * @memberof ListVmRelationRead */ data?: Array; /** * * @type {number} * @memberof ListVmRelationRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmRelationRead */ pageCount?: number; } /** * Check if a given object implements the ListVmRelationRead interface. */ export declare function instanceOfListVmRelationRead(value: object): value is ListVmRelationRead; export declare function ListVmRelationReadFromJSON(json: any): ListVmRelationRead; export declare function ListVmRelationReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmRelationRead; export declare function ListVmRelationReadToJSON(json: any): ListVmRelationRead; export declare function ListVmRelationReadToJSONTyped(value?: ListVmRelationRead | null, ignoreDiscriminator?: boolean): any;