export type AppointmentAvailability = 'High' | 'Low' | 'None'; export type BoltonName = 'Green' | 'Chargemaster'; export type BundleName = 'EV'; export type Campaign = 'HOTKEY' | 'CALLOUT' | 'RETAIL' | 'ZAP' | 'PECT' | 'CPM'; export type CriticalCode = 'Aged60+' | 'Blind' | 'BrailleUser' | 'PoorSight' | 'Deaf' | 'PoorHearing' | 'PoorSpeech' | 'PoorSenseOfSmell' | 'ArthriticHands' | 'ArthriticAll' | 'PoorWalking' | 'Wheelchair' | 'Bedridden' | 'MentalHandicap' | 'Dementia' | 'SeriousIllness' | 'HeartCondition' | 'BreathingDifficulty' | 'Other'; export type EligibilityStatus = 'Eligible' | 'AreaNotEligible' | 'MeterNotEligible' | 'PropertyNotEligible'; export type EnergyUsage = 'EveningsAndWeekends' | 'AllDay'; export type Fuel = 'Dual' | 'Electricity'; export type Insulation = 'Poor' | 'Average' | 'Good'; export type Mode = 'Switch' | 'MoveIn'; export type PaymentMethod = 'Paym' | 'Payg'; export type PropertyQuestionId = 'MetersDiffFloor' | 'GasBrownBox' | 'InFlat' | 'StorageHeaters'; export type QuoteType = 'Quick' | 'Estimated' | 'UsageBased' | 'MoveIn'; export type ReferredFrom = 'AddressedLetter' | 'Billboard' | 'PriceComparisonSite' | 'Friend' | 'LetterboxLeaflet' | 'Magazine' | 'Newspaper' | 'Radio' | 'Television' | 'SocialMedia' | 'WebsiteAdvert' | 'Other'; export type Region = 'EastEngland' | 'EastMidlands' | 'London' | 'MerseysideAndNorthWales' | 'NorthEastEngland' | 'NorthWestEngland' | 'NorthScotland' | 'SouthEastEngland' | 'SouthernEngland' | 'SouthScotland' | 'SouthWales' | 'SouthWestEngland' | 'WestMidlands' | 'Yorkshire'; export type Retailer = 'OVO' | 'Fairerpower' | 'PeterboroughEnergy' | 'SouthendEnergy' | 'EnergySW'; export type ServiceOptIn = 'Post' | 'Email' | 'EmailAndSMS'; export type ServiceType = 'FullService' | 'Online'; export type TariffId = 'Fixed' | 'Green' | 'Variable' | '2YearFixed' export type Title = 'Mr' | 'Mrs' | 'Miss' | 'Ms' | 'Dr' | 'Prof' | 'Rev' | 'Sir' | 'Lady'; export type Trinary = 'Yes' | 'No' | 'Unknown'; export type Usage = 'Low' | 'Medium' | 'High'; export type UsagePeriod = 'Monthly' | 'Yearly'; export type UsageUnit = 'KWh' | 'Spend'; export type Utility = 'Electricity' | 'Gas';