UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

60 lines 2.7 kB
import { BandwidthTestUnitEnum } from './BandwidthTestUnitEnum'; import { ProblemTypeEnum } from './ProblemTypeEnum'; /** Customer answers for line diagnostic */ export interface Answers { /** bandwidth unit for proof.ovh.net test values */ bandwidthTestUnit?: BandwidthTestUnitEnum; /** comment will contains all information needed for intervention and about your access problem */ comment?: string; /** customer knows that he can be charged (150 euros HT) if he is responsible for the problem or if tests have not been done correctly ? */ conditionsAccepted?: boolean; /** customer's phone number */ contactPhone?: string; /** approximative datetime of problem happening */ datetimeOfAppearance?: string; /** bandwidth download value on proof.ovh.net test */ downloadBandwidthTest?: number; /** afternoon closing information or time for the site */ endAfternoonHours?: string; /** morning closing information or time for the site */ endMorningHours?: string; /** indicate if customer wants to be informed by sms */ followBySms?: boolean; /** Has modem kept his synchronization during line port reset ? */ hasModemKeptSynchronization?: boolean; /** id of appointment chosen ("possibleValues" contains choices list with id) */ idAppointment?: number; /** is non-professional site ? */ individualSite?: boolean; /** Is modem synchronized ? (whatever internet connection) */ modemIsSynchronized?: boolean; /** modem mac address */ modemMac?: string; /** Modem still synchronized ? Please check once again. */ modemStillSynchronized?: boolean; /** modem brand and reference */ modemType?: string; /** Ovh ticket name or ticket ID, only if a ticket is already opened for this problem */ ovhTicket?: string; /** Problem Type on DSL connection */ problemType?: ProblemTypeEnum; /** is access problem solved ? */ resolvedAfterTests?: boolean; /** is secure site ? */ secureSite?: boolean; /** Has customer several internal connections ? (on the same place) */ severalInternetConnections?: boolean; /** days or period where site access is not possible */ siteClosedDays?: string; /** digicode for site entrance */ siteDigicode?: string; /** site opening hours or information */ siteOpening?: string; /** afternoon opening information or time for the site */ startAfternoonHours?: string; /** morning opening information or time for the site */ startMorningHours?: string; /** bandwidth upload value on proof.ovh.net test */ uploadBandwidthTest?: number; } //# sourceMappingURL=Answers.d.ts.map