Skip to content

Commit 7eea3be

Browse files
CI: Update generated SDK for prod on 2025-07-21 (#134)
Co-authored-by: publish-bot-solcast <nikolay@solcast.com.au>
1 parent ce1a058 commit 7eea3be

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

src/Solcast/Clients/HistoricClient.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ public HistoricClient()
1717
}
1818

1919
/// <summary>
20-
/// Get historical advanced PV power estimated actuals for the requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data).
20+
/// Get historical advanced PV power estimated actuals for the requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data). Data is available from 2007-01-01T00:00Z to 7 days ago.
21+
///
22+
/// [The period from 7 days ago to Now is available in the Get Advanced PV Power Live Estimated Actuals endpoint.](https://docs.solcast.com.au/#9f3aed26-1078-4ff6-86e6-23a710c6fae7)
2123
/// </summary>
2224
/// <param name="start">ISO_8601 compliant starting datetime for the historical data. If the supplied value does not specify a timezone, the timezone will be inferred from the time_zone parameter, if supplied. Otherwise UTC is assumed.</param>
2325
/// <param name="end">Must include one of end_date and duration. ISO_8601 compliant ending datetime for the historical data. Must be within 31 days of the start_date. If the supplied value does not specify a timezone, the timezone will be inferred from the time_zone parameter, if supplied. Otherwise UTC is assumed.</param>
@@ -118,7 +120,9 @@ public async Task<ApiResponse<LiveResponse>> GetHistoricAdvancedPvPower(
118120
}
119121
}
120122
/// <summary>
121-
/// Get historical irradiance and weather estimated actuals for up to 31 days of data at a time for a requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data). Data is available from 2007-01-01T00:00Z up to real-time estimated actuals.
123+
/// Get historical irradiance and weather estimated actuals for up to 31 days of data at a time for a requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data). Data is available from 2007-01-01T00:00Z to 7 days ago.
124+
///
125+
/// [The period from 7 days ago to Now is available in the Get Irradiance and Weather Live Estimated Actuals endpoint.](https://docs.solcast.com.au/#b9863910-c788-4e98-a3af-eb8da8f49647)
122126
/// </summary>
123127
/// <param name="start">ISO_8601 compliant starting datetime for the historical data. If the supplied value does not specify a timezone, the timezone will be inferred from the time_zone parameter, if supplied. Otherwise UTC is assumed.</param>
124128
/// <param name="end">Must include one of end_date and duration. ISO_8601 compliant ending datetime for the historical data. Must be within 31 days of the start_date. If the supplied value does not specify a timezone, the timezone will be inferred from the time_zone parameter, if supplied. Otherwise UTC is assumed.</param>
@@ -216,7 +220,9 @@ public async Task<ApiResponse<HistoricRadiationAndWeatherResponse>> GetHistoricR
216220
}
217221
}
218222
/// <summary>
219-
/// Get historical basic rooftop PV power estimated actuals for the requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data).
223+
/// Get historical basic rooftop PV power estimated actuals for the requested location, derived from satellite (clouds and irradiance over non-polar continental areas) and numerical weather models (other data). Data is available from 2007-01-01T00:00Z to 7 days ago.
224+
///
225+
/// [The period from 7 days ago to Now is available in the Get Rooftop PV Power Live Estimated Actuals endpoint.](https://docs.solcast.com.au/#4c9fa796-82e5-4e8a-b811-85a8c9fb85db)
220226
///
221227
/// **Attention hobbyist users**
222228
///
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using Newtonsoft.Json;
2+
3+
namespace Solcast.Models
4+
{
5+
public class SendUserToSalesforce
6+
{
7+
[JsonProperty("user_id")]
8+
public int? UserId { get; set; }
9+
}
10+
}

0 commit comments

Comments
 (0)