/** * 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. */ /** * * @export * @interface VCenter */ export interface VCenter { /** * * @type {string} * @memberof VCenter */ id: string; } /** * Check if a given object implements the VCenter interface. */ export declare function instanceOfVCenter(value: object): value is VCenter; export declare function VCenterFromJSON(json: any): VCenter; export declare function VCenterFromJSONTyped(json: any, ignoreDiscriminator: boolean): VCenter; export declare function VCenterToJSON(json: any): VCenter; export declare function VCenterToJSONTyped(value?: VCenter | null, ignoreDiscriminator?: boolean): any;