/** * 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 { ResourceAttributeRead } from './ResourceAttributeRead.js'; /** * * @export * @interface ListVmResourceAttributeRead */ export interface ListVmResourceAttributeRead { /** * * @type {Array} * @memberof ListVmResourceAttributeRead */ data?: Array; /** * * @type {number} * @memberof ListVmResourceAttributeRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmResourceAttributeRead */ pageCount?: number; } /** * Check if a given object implements the ListVmResourceAttributeRead interface. */ export declare function instanceOfListVmResourceAttributeRead(value: object): value is ListVmResourceAttributeRead; export declare function ListVmResourceAttributeReadFromJSON(json: any): ListVmResourceAttributeRead; export declare function ListVmResourceAttributeReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmResourceAttributeRead; export declare function ListVmResourceAttributeReadToJSON(json: any): ListVmResourceAttributeRead; export declare function ListVmResourceAttributeReadToJSONTyped(value?: ListVmResourceAttributeRead | null, ignoreDiscriminator?: boolean): any;