/** * 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 OsInfo */ export interface OsInfo { /** * * @type {number} * @memberof OsInfo */ count: number; /** * * @type {boolean} * @memberof OsInfo */ supported: boolean; /** * Recommended OS upgrade for MTV unsupported OS that can be upgraded to a supported OS * @type {string} * @memberof OsInfo */ upgradeRecommendation?: string; } /** * Check if a given object implements the OsInfo interface. */ export declare function instanceOfOsInfo(value: object): value is OsInfo; export declare function OsInfoFromJSON(json: any): OsInfo; export declare function OsInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsInfo; export declare function OsInfoToJSON(json: any): OsInfo; export declare function OsInfoToJSONTyped(value?: OsInfo | null, ignoreDiscriminator?: boolean): any;