/** * 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 { OrganizationRead } from './OrganizationRead.js'; /** * * @export * @interface ListVmOrganizationRead */ export interface ListVmOrganizationRead { /** * * @type {Array} * @memberof ListVmOrganizationRead */ data?: Array; /** * * @type {number} * @memberof ListVmOrganizationRead */ totalCount?: number; /** * * @type {number} * @memberof ListVmOrganizationRead */ pageCount?: number; } /** * Check if a given object implements the ListVmOrganizationRead interface. */ export declare function instanceOfListVmOrganizationRead(value: object): value is ListVmOrganizationRead; export declare function ListVmOrganizationReadFromJSON(json: any): ListVmOrganizationRead; export declare function ListVmOrganizationReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVmOrganizationRead; export declare function ListVmOrganizationReadToJSON(json: any): ListVmOrganizationRead; export declare function ListVmOrganizationReadToJSONTyped(value?: ListVmOrganizationRead | null, ignoreDiscriminator?: boolean): any;