/** * 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 VersionInfo */ export interface VersionInfo { /** * Agent version (e.g. v2.0.0) * @type {string} * @memberof VersionInfo */ version: string; /** * Git commit SHA used to build the agent * @type {string} * @memberof VersionInfo */ gitCommit: string; /** * Git commit SHA of the UI used to build the agent * @type {string} * @memberof VersionInfo */ uiGitCommit: string; } /** * Check if a given object implements the VersionInfo interface. */ export declare function instanceOfVersionInfo(value: object): value is VersionInfo; export declare function VersionInfoFromJSON(json: any): VersionInfo; export declare function VersionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionInfo; export declare function VersionInfoToJSON(json: any): VersionInfo; export declare function VersionInfoToJSONTyped(value?: VersionInfo | null, ignoreDiscriminator?: boolean): any;