<?xml version="1.0" encoding="utf-8"?>
<?xml-model href="https://weather.connectedlyric.com/Areas/HelpPage/HelpData.xsd"?>
<apidoc xmlns="http://mytotalconnectcomfort.com/schemas/webapi/help">
  <actions>
    <action resource="Weather">
      <method>GET</method>
      <api>api/Weather/current?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Detailed documentation of response type <see cref="T:Weather.Model.CurrentWeatherWithLocationResult" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get weather details for a location.
             We can choose fields as per our necessity.
             AppKey and language are mandatory.
             includeLocInfo and deviceId are optional.
             The other parameters are in combinations of either (postal, country) or (city, country) or (latitude, longitude).
             ex 1: /api/Weather/current?appKey,postal,country,language,deviceId,includeLocInfo
             ex 2: /api/Weather/current?appkey,country,city,language,deviceId,includeLocInfo
             ex 3: /api/Weather/current?appkey,latitude,longitude,language,deviceId,includeLocInfo</documentation>
      <arguments>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>Appkey, language and combinations of either (postal, country) or (city, country) or (latitude, longitude).</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The Device Id. This is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Weather">
      <method>GET</method>
      <api>api/Weather/current?locationKey={locationKey}&amp;appKey={appKey}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Detailed documentation of response type <see cref="T:Weather.Model.CurrentWeatherWithLocationResult" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get weather details by location key.
             locationKey, appKey and language are mandatory.
             includeLocInfo and deviceId are optional.
             ex 1: /api/Weather/current?locationKey,appkey,language,deviceId,includeLocInfo</documentation>
      <arguments>
        <argument>
          <name>locationKey</name>
          <type>System.String</type>
          <documentation>The locationKey is mandatory</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>appKey</name>
          <type>System.String</type>
          <documentation>The appKey is mandatory</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>language</name>
          <type>System.String</type>
          <documentation>The response language (mandatory).</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The deviceId is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Forecast">
      <method>GET</method>
      <api>api/weather/forecasts/{intervelspec}/{units}?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Response depends if it's hourly <see cref="T:Weather.Model.ForecastHourlyWeatherWithLocationResult" /> or daily request.<see cref="T:Weather.Model.ForecastWeatherWithLocationResult" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get forecast weather details for a location.
             We can choose fields as per our necessity.   
             intervelspec,units,appKey and language are mandatory.
             includeLocInfo and deviceId are optional.
             The other parameters are in combinations of either (postal, country) or (city, country) or (latitude, longitude).
             ex 1: /api/weather/forecasts/intervelspec/units?appkey,postal,country,language,deviceId,includeLocInfo
             ex 2: /api/weather/forecasts/hourly/1?appkey,postal,country,language,deviceId,includeLocInfo
             ex 3: /api/weather/forecasts/hourly/1?appkey,city,country,language,deviceId,includeLocInfo
             ex 4: /api/weather/forecasts/daily/2?appkey,latitude,longitude,language,deviceId,includeLocInfo</documentation>
      <arguments>
        <argument>
          <name>intervelspec</name>
          <type>System.String</type>
          <documentation>intervelspec is mandatory, it's value can be either hourly or daily</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>units</name>
          <type>System.String</type>
          <documentation>No of hours or days(mandatory)</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>Appkey, language and combinations of either (postal, country) or (city, country) or (latitude, longitude).</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The Device Id. This is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Forecast">
      <method>GET</method>
      <api>api/weather/forecasts/{intervelspec}/{units}?locationKey={locationKey}&amp;appKey={appKey}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Response depends if it's hourly <see cref="T:Weather.Model.ForecastHourlyWeatherWithLocationResult" /> or daily request.<see cref="T:Weather.Model.ForecastWeatherWithLocationResult" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get weather details by location key.      
             locationKey,intervelspec,units,appKey and language are mandatory.
             includeLocInfo and deviceId are optional.
             ex 1: /api/weather/forecasts/intervelspec/units?locationKey,appkey,language,deviceId,includeLocInfo
             ex 2: /api/weather/forecasts/hourly/2?locationKey,appkey,language,deviceId,includeLocInfo
             ex 3: /api/weather/forecasts/daily/2?locationKey,appkey,language,deviceId,includeLocInfo</documentation>
      <arguments>
        <argument>
          <name>intervelspec</name>
          <type>System.String</type>
          <documentation>intervelspec is mandatory, it's value can be either hourly or daily</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>units</name>
          <type>System.String</type>
          <documentation>No of hours or days(mandatory)</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>locationKey</name>
          <type>System.String</type>
          <documentation>The locationKey is mandatory</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>appKey</name>
          <type>System.String</type>
          <documentation>The appKey is mandatory</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>language</name>
          <type>System.String</type>
          <documentation>The response language (mandatory).</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The deviceId is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Location">
      <method>GET</method>
      <api>api/weather/location?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}</api>
      <response>Detailed documentation of response type <see cref="T:Weather.Model.LocationResponse" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get Location Key
             We can choose fields as per our necessity.
             appKey is mandatory.
             deviceId is optional.
             The other parameters are in combinations of either (postal, country) or (city, country) or (latitude, longitude).
             ex 1: /api/Weather/Location?appkey,postal,country,deviceId
             ex 2: /api/Weather/Location?appkey,country,city,deviceId
             ex 3: /api/Weather/Location?appkey,latitude,longitude,deviceId</documentation>
      <arguments>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>Appkey and combinations of either (postal, country) or (city, country) or (latitude, longitude).</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The Device Id. This is an optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Location">
      <method>GET</method>
      <api>api/weather/TimeZone?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}</api>
      <documentation>No documentation available.</documentation>
      <arguments>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>No documentation available.</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>No documentation available.</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="CurrentWithLocationInfo">
      <method>GET</method>
      <api>api/weather/CurrentWithLocationInfo?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Detailed documentation of response type <see cref="!:AccuCurrentConditions" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get weather details for a location.
             We can choose fields as per our necessity.
             AppKey and language are mandatory.
             includeLocInfo and deviceId are optional.        
             ex 1: /api/Weather/CurrentWithLocationInfo?appKey,postal,country,language,deviceId,includeLocInfo,state,city</documentation>
      <arguments>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>Appkey, language, postal, country,city,state .</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The Device Id. This is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="ForecastWithLocationInfo">
      <method>GET</method>
      <api>api/weather/ForecastWithLocationInfo/{intervelspec}/{units}?appKey={appKey}&amp;postal={postal}&amp;city={city}&amp;state={state}&amp;country={country}&amp;locationKey={locationKey}&amp;latitude={latitude}&amp;longitude={longitude}&amp;language={language}&amp;deviceId={deviceId}&amp;includeLocInfo={includeLocInfo}</api>
      <response>Response depends if it's hourly <see cref="T:Weather.Model.ForecastHourlyFullWeatherWithLocationResult" /> or daily request.<see cref="T:Weather.Model.ForecastFullWeatherWithLocationResult" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Successful.</td></tr><tr><td>500 - InternalServerError</td><td>
                         When Unexpected Error Occurs:
                         <ul><li><b>UnknownError</b></li></ul></td></tr><tr><td>400 - BadRequest</td><td>When input parameters are invalid</td></tr></table></response>
      <documentation>Get forecast weather details for a location.
             We can choose fields as per our necessity.   
             AppKey,intervelspec,units are mandatory.
             includeLocInfo, deviceId and language are optional.
             ex: /api/Weather/ForecastWithLocationInfo/daily/1day?appKey,postal,country,language,deviceId,includeLocInfo,state,city</documentation>
      <arguments>
        <argument>
          <name>intervelspec</name>
          <type>System.String</type>
          <documentation>intervelspec is mandatory, it's value is daily/hourly</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>units</name>
          <type>System.String</type>
          <documentation>No of hours or days(mandatory)</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>weatherRequest</name>
          <type>Weather.Model.WeatherRequest</type>
          <documentation>Appkey, language, postal, country,city,state .</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>deviceId</name>
          <type>System.String</type>
          <documentation>The Device Id. This is an optional parameter</documentation>
          <source>URI</source>
        </argument>
        <argument>
          <name>includeLocInfo</name>
          <type>System.Boolean</type>
          <documentation>The response should include Location Info.Optional parameter</documentation>
          <source>URI</source>
        </argument>
      </arguments>
    </action>
    <action resource="Version">
      <method>GET</method>
      <api>api/weather/Version</api>
      <response>
            Detailed documentation of response type <see cref="T:Weather.Model.WeatherVersion" /><table><tr><th>Status Code</th><th>Description</th></tr><tr><td>200 - OK</td><td>Version. See Response body formats section for more info.</td></tr><tr><td>404 - Not Found</td><td>When Version was not found.</td></tr></table></response>
      <documentation>Gets Version Info about Weather API</documentation>
    </action>
  </actions>
  <model>
    <type>
      <name>WAPI.Weather.Model.ErrorDescription</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>WAPI.Weather.Model.Resources.ErrorMessages</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AccuForcasts</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastWind</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastWindGust</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.CountryCity_xref_Location</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.GPS_xref_Location</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ZipCode_xref_Location</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AccuWeatherLocation</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Region</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Country</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AdministrativeArea</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.TimeZone</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Metric</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Imperial</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Elevation</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.GeoPosition</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.SupplementalAdminArea</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AccuLocationResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Location</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.LocationResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Values</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Headline</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Sun</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Moon</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AirAndPollen</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Speed</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.WindS</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Day</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Night</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.MaxMin</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AccuDailyForecast</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.AccuForcastDailyWithHeader</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Constants</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.CurrentWeatherResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.CurrentFullWeatherResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.CurrentWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.CurrentFullWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastHourlyWeatherResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastHourlyWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastHourlyFullWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastHourlyFullWeather</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastWeatherResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastFullWeatherResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.ForecastFullWeatherWithLocationResult</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.LocationInfo</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.StateLocationInfo</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <enumeration>
      <name>Weather.Model.ResultEnums</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <enumeration>
      <name>Weather.Model.SearchTypeEnum</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <type>
      <name>Weather.Model.VersionInfo</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.WeatherVersion</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.WeatherForcastResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.WeatherRequest</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.WeatherResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.ErrorResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.ForecastResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <enumeration>
      <name>Weather.Model.Responses.DisplayedUnits</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <type>
      <name>Weather.Model.Responses.WeatherForcastResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.ValueUnitUnitType</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.AccWeatherResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.MetricImperial</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Responses.WeatherResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <enumeration>
      <name>Weather.Model.Responses.WeatherCondition</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <type>
      <name>Weather.Model.Responses.WetherCommonResponse</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Errors.Error</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <enumeration>
      <name>Weather.Model.Errors.ErrorCodes</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <type>
      <name>Weather.Model.Errors.ModelError</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Errors.WAPIException</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.AccuCurrentConditions</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.PressureTendency</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.WindGust</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Wind</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Direction</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.ValueUnitUnitType</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.MetricImperial</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.TemperatureSummary</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Past24HourRange</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Headline</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Sun</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Moon</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Minimum</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Maximum</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Temperature</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.RealFeelTemperature</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.RealFeelTemperatureShade</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.AirAndPollen</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Speed</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Wind1</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.TotalLiquid</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Rain</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Snow</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Ice</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Day</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.Night</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.DailyForecast</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <type>
      <name>Weather.Model.Accu.AccuDailyForcastDay</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
    <enumeration>
      <name>Weather.Model.Responses.ErrorResponse+ErrorCodes</name>
      <documentation>No documentation available.</documentation>
      <values />
    </enumeration>
    <type>
      <name>Weather.Model.Errors.ModelError+FieldClass</name>
      <documentation>No documentation available.</documentation>
      <members />
    </type>
  </model>
</apidoc>