Skip to content

Commit

Permalink
Xml comments
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilPJL committed Oct 21, 2023
1 parent 046ef2d commit 62f2969
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ImpSoft.OctopusEnergy.Api/IOctopusEnergyClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ Task<IEnumerable<Charge>> GetGasStandingChargesAsync(string productCode, string
/// <remarks>
/// Requires authentication
/// </remarks>
/// <param name="mpan"></param>
/// <param name="serialNumber"></param>
/// <param name="fromDateTime"></param>
/// <param name="toDateTime"></param>
/// <param name="group"></param>
/// <param name="mpan">Meter point administration number/Electricity supply number</param>
/// <param name="serialNumber">Meter serial number</param>
/// <param name="fromDateTime">Start date and time. </param>
/// <param name="toDateTime">End date and time. Defaults to no specified end date.</param>
/// <param name="group">Group results by the specified interval.</param>
/// <returns></returns>
Task<IEnumerable<Consumption>> GetElectricityConsumptionAsync(string mpan, string serialNumber,
DateTimeOffset? fromDateTime, DateTimeOffset? toDateTime = null,
Expand All @@ -104,11 +104,11 @@ Task<IEnumerable<Consumption>> GetElectricityConsumptionAsync(string mpan, strin
/// <remarks>
/// Requires authentication
/// </remarks>
/// <param name="mprn"></param>
/// <param name="serialNumber"></param>
/// <param name="fromDateTime"></param>
/// <param name="toDateTime"></param>
/// <param name="group"></param>
/// <param name="mprn">Meter point reference number/Gas supply number</param>
/// <param name="serialNumber">Meter serial number</param>
/// <param name="fromDateTime">Start date and time. </param>
/// <param name="toDateTime">End date and time. Defaults to no specified end date.</param>
/// <param name="group">Group results by the specified interval.</param>
/// <returns></returns>
Task<IEnumerable<Consumption>> GetGasConsumptionAsync(string mprn, string serialNumber,
DateTimeOffset? fromDateTime, DateTimeOffset? toDateTime = null,
Expand All @@ -117,7 +117,7 @@ Task<IEnumerable<Consumption>> GetGasConsumptionAsync(string mprn, string serial
/// <summary>
/// Get account information
/// </summary>
/// <param name="accountId"></param>
/// <param name="accountId">Your Octopus account number</param>
/// <returns></returns>
Task<Account> GetAccountAsync(string accountId);
}

0 comments on commit 62f2969

Please sign in to comment.