import { IEligibility } from "../device_replacement/eligibility"; import { IReplacement } from "../device_replacement/replacement"; import { IDevicePlanDetails } from "../device_replacement/device_plan_details"; /** Device Recall/Replacement Information to be sent to UI. */ export interface IResultDeviceReplacementInfo { /** Gets or sets details of device plan. */ devicePlanDetails?: IDevicePlanDetails; /** Gets or sets Serial Number of the device. */ deviceSerialNumber: string; /** Gets or sets the eligibility details of the device */ eligibilityInfo?: IEligibility; /** Gets or sets details about the replacement of the device. */ replacementInfo?: IReplacement; } //# sourceMappingURL=result_device_replacement_info.d.ts.map