/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type PanelLoadInput = { /** * Habitable area (excl. garage, attic) */ living_area_sqft: number; /** * NEC requires min 2 */ small_appliance_circuits?: number; laundry_circuits?: number; /** * 0 if gas range */ electric_range_va?: number; /** * 0 if gas dryer */ electric_dryer_va?: number; /** * 0 if gas water heater */ water_heater_va?: number; /** * Largest of heat or cool */ hvac_va?: number; /** * Pool pump, EV charger, etc. */ other_fixed_va?: number; /** * NEC code edition. 2020/2023 use 3 VA/sqft general lighting (220.12); 2026 reduced to 2 VA/sqft to reflect LED adoption. Most US AHJs still on 2020/2023. */ nec_edition?: '2020' | '2023' | '2026'; };