namespace AVEVA.Historian.Client.Models; /// /// A single historical (backfill) value to insert via /// . The historian stores the value against /// the tag at as original (non-streamed) data. /// /// The value timestamp (UTC). Treated as UTC if unspecified-kind. /// The numeric value. Captured/supported for Float tags today. /// OPC quality; defaults to 192 (good). public sealed record HistorianHistoricalValue(DateTime TimestampUtc, double Value, ushort OpcQuality = 192);