/** * 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 { RelationshipTupleRead } from './RelationshipTupleRead.js'; /** * * @export * @interface ListVmRelationshipTupleRead */ export interface ListVmRelationshipTupleRead { /** * * @type {Array} * @memberof ListVmRelationshipTupleRead */ data?: Array; /** * * @type {number} * @memberof ListVmRelationshipTupleRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmRelationshipTupleRead */ pageCount?: number; } /** * Check if a given object implements the ListVmRelationshipTupleRead interface. */ export declare function instanceOfListVmRelationshipTupleRead(value: object): value is ListVmRelationshipTupleRead; export declare function ListVmRelationshipTupleReadFromJSON(json: any): ListVmRelationshipTupleRead; export declare function ListVmRelationshipTupleReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmRelationshipTupleRead; export declare function ListVmRelationshipTupleReadToJSON(json: any): ListVmRelationshipTupleRead; export declare function ListVmRelationshipTupleReadToJSONTyped(value?: ListVmRelationshipTupleRead | null, ignoreDiscriminator?: boolean): any;