import * as Enums from '../enums/index'; /** * Memory optimization recommendation * @export * @class MemoryRecommendation */ export declare class MemoryRecommendation { /** * @type {string} * @memberof MemoryRecommendation */ id?: string | undefined; /** * @type {string} * @memberof MemoryRecommendation */ title?: string | undefined; /** * @type {string} * @memberof MemoryRecommendation */ description?: string | undefined; /** * @type {string} * @memberof MemoryRecommendation */ impact?: string | undefined; /** * @type {string} * @memberof MemoryRecommendation */ implementation?: string | undefined; /** * @type {Enums.MemoryRecommendationPriority} * @memberof MemoryRecommendation */ priority?: Enums.MemoryRecommendationPriority | undefined; /** * @type {number} * @memberof MemoryRecommendation */ estimatedMemorySavingsMB?: number | undefined; }