/** * 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. */ /** * Array of VirtualMachine id * @export * @interface StartInspectionRequest */ export interface StartInspectionRequest { /** * * @type {Array} * @memberof StartInspectionRequest */ vmIds: Array; } /** * Check if a given object implements the StartInspectionRequest interface. */ export declare function instanceOfStartInspectionRequest(value: object): value is StartInspectionRequest; export declare function StartInspectionRequestFromJSON(json: any): StartInspectionRequest; export declare function StartInspectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StartInspectionRequest; export declare function StartInspectionRequestToJSON(json: any): StartInspectionRequest; export declare function StartInspectionRequestToJSONTyped(value?: StartInspectionRequest | null, ignoreDiscriminator?: boolean): any;