import { MessageCodeEnum } from './MessageCodeEnum';
/** Message */
export interface Message {
    /** Availability date of the offer (if code of non eligibility is COPPER_NOT_YET_AVAILABLE, FIBER_NOT_YET_AVAILABLE or PRODUCT_NOT_YET_AVAILABLE) */
    availabilityDate?: string;
    /** Message codes */
    code: MessageCodeEnum;
    /** Message */
    message: string;
}
//# sourceMappingURL=Message.d.ts.map