Class CallDto
Serialization-friendly representation of a database call.
public record CallDto : IEquatable<CallDto>
- Inheritance
-
CallDto
- Implements
- Inherited Members
Properties
CollectionName
public required string CollectionName { get; init; }
Property Value
ConfigurationName
public required string ConfigurationName { get; init; }
Property Value
Count
public int? Count { get; init; }
Property Value
- int?
DatabaseName
public required string DatabaseName { get; init; }
Property Value
ElapsedMs
public double? ElapsedMs { get; init; }
Property Value
Exception
public string Exception { get; init; }
Property Value
FilterJson
public string FilterJson { get; init; }
Property Value
Final
public bool Final { get; init; }
Property Value
FunctionName
public required string FunctionName { get; init; }
Property Value
Key
public required Guid Key { get; init; }
Property Value
Operation
public required string Operation { get; init; }
Property Value
SourceName
public required string SourceName { get; init; }
Property Value
StartTime
public required DateTime StartTime { get; init; }
Property Value
Steps
public IReadOnlyList<CallStepDto> Steps { get; init; }