/** * Assisted Migration Agent API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { VirtualMachine } from './VirtualMachine.js'; /** * * @export * @interface VirtualMachineListResponse */ export interface VirtualMachineListResponse { /** * * @type {Array} * @memberof VirtualMachineListResponse */ vms: Array; /** * Total number of VMs matching the filter * @type {number} * @memberof VirtualMachineListResponse */ total: number; /** * Current page number * @type {number} * @memberof VirtualMachineListResponse */ page: number; /** * Total number of pages * @type {number} * @memberof VirtualMachineListResponse */ pageCount: number; } /** * Check if a given object implements the VirtualMachineListResponse interface. */ export declare function instanceOfVirtualMachineListResponse(value: object): value is VirtualMachineListResponse; export declare function VirtualMachineListResponseFromJSON(json: any): VirtualMachineListResponse; export declare function VirtualMachineListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VirtualMachineListResponse; export declare function VirtualMachineListResponseToJSON(json: any): VirtualMachineListResponse; export declare function VirtualMachineListResponseToJSONTyped(value?: VirtualMachineListResponse | null, ignoreDiscriminator?: boolean): any;