/**
 * Copyright (c) 2023 ListBird. All Rights Reserved.
 *
 * This software product includes software or other works developed by RESO,
 * subject to the RESO End User License published at www.reso.org.
 *
 * Any modifications, derivative works, or redistributions of this source must
 * maintain this copyright notice. See the RESO EULA for more information.
 */

export enum GreenEnergyGeneration {
  /**
   * {@link https://ddwiki.reso.org/display/DDW17/Solar}
   *
   * Renewable form of onsite power generation. Most common are solar photovoltaic (PV) devices which generate
   * electricity directly from sunlight via an electronic process that occurs naturally in certain types of
   * material, called semiconductors. Powers electrical devices or sends electricity to the grid. See: <ahref="http://www.seia.org/policy/solar-technology
   * /photovoltaic-solar-electric">http://www.seia.org/policy/solar-technology/photovoltaic-solar-electric</a>
   */
  Solar = 'Solar',

  /**
   * {@link https://ddwiki.reso.org/display/DDW17/Wind}
   *
   * Renewable form of onsite power generation. Wind turbines use wind to make electricity. Powers electrical
   * devices or sends electricity to the grid. See: <ahref="http://
   * energy.gov/eere/wind/how-do-wind-turbines-work">http://energy.gov/eere/wind/how-do-wind-turbines-work</a>
   */
  Wind = 'Wind',
}
