Skip to content

Commit

Permalink
feat(deletetimezone): Added CET default Timezone for delete
Browse files Browse the repository at this point in the history
ref: #17577
  • Loading branch information
jacopocinaark committed Jun 19, 2024
1 parent 0481f26 commit 6503db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Artesian/Artesian.SDK/Dto/DeleteCurveData/DeleteCurveData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ public DeleteCurveData(MarketDataIdentifier id, LocalDateTime version)
public LocalDateTime? Version { get; set; }

/// <summary>
/// The timezone. Must be the OriginalTimezone or, when Hourly, must be "UTC".
/// The timezone of the Range to delete. It is applied only if the curve Granularity is less than Day. Default is CET
/// </summary>
[Required]
[MessagePack.Key(2)]
public string Timezone { get; set; }
public string Timezone { get; set; } = "CET";

/// <summary>
/// Start date of range to be deleted
Expand Down

0 comments on commit 6503db2

Please sign in to comment.