Class FileCounts
- Assembly
- AntRunnerLib.dll
public class FileCounts : IEquatable<FileCounts>
- Inheritance
-
System.ObjectFileCounts
- Implements
-
System.IEquatable<FileCounts>
- Inherited Members
-
System.Object.Equals(System.Object)System.Object.Equals(System.Object, System.Object)System.Object.GetHashCode()System.Object.GetType()System.Object.MemberwiseClone()System.Object.ReferenceEquals(System.Object, System.Object)System.Object.ToString()
Properties
Cancelled
The number of files that where cancelled.
[JsonPropertyName("cancelled")]
public int Cancelled { get; set; }
Property Value
- System.Int32
Completed
The number of files that have been processed.
[JsonPropertyName("completed")]
public int Completed { get; set; }
Property Value
- System.Int32
Failed
The number of files that have failed to process.
[JsonPropertyName("failed")]
public int Failed { get; set; }
Property Value
- System.Int32
InProgress
The number of files that are currently being processed.
[JsonPropertyName("in_progress")]
public int InProgress { get; set; }
Property Value
- System.Int32
Total
The total number of files.
[JsonPropertyName("total")]
public int Total { get; set; }
Property Value
- System.Int32